OnExecuteOperationInFolderProjectItem Method (OperationBase)

Top  Previous  Next

This method can be overridden to perform the operation in the folder project item 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 OnExecuteOperationInFolderProjectItem(ByVal adminOptions As AdminOptionsBase, ByVal userOptions As UserOptions, ByVal projectItem As EnvDTE.ProjectItem, ByRef cancel As Boolean)

[C#]

void OnExecuteOperationInFolderProjectItem(AdminOptionsBase adminOptions, UserOptions userOptions, EnvDTE.ProjectItem projectItem, ref bool cancel)

Parameters

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