OnExecuteOperationInSolutionFolder Method (OperationBase)

Top  Previous  Next

This method can be overridden to perform the operation in the solution folder received as parameter. Normally this method is used only by operations which use a results window and want to show folders as results besides files.

Signature

[VB.NET]

Sub OnExecuteOperationInSolutionFolder(ByVal adminOptions As AdminOptionsBase, ByVal userOptions As UserOptions, ByVal solutionFolder As EnvDTE.Project, ByRef cancel As Boolean)

[C#]

void OnExecuteOperationInSolutionFolder(AdminOptionsBase adminOptions, UserOptions userOptions, EnvDTE.Project solutionFolder, ref bool cancel)

Parameters

  • adminOptions: the admin options used by the operation, if any.
  • userOptions: the user options used by the operation.
  • solutionFolder: the solution folder that is being processed.
  • cancel: allows the method to cancel the operation if needed.