ExportFileContextActionProviderAttribute Constructors

Definition

Overloads

ExportFileContextActionProviderAttribute(String, String[])

Initializes a new instance of the ExportFileContextActionProviderAttribute class.

ExportFileContextActionProviderAttribute(String, ProviderPriority, String[])

Initializes a new instance of the ExportFileContextActionProviderAttribute class.

ExportFileContextActionProviderAttribute(FileContextActionProviderOptions, String, ProviderPriority, String[])

Initializes a new instance of the ExportFileContextActionProviderAttribute class.

ExportFileContextActionProviderAttribute(String, String[])

Initializes a new instance of the ExportFileContextActionProviderAttribute class.

public:
 ExportFileContextActionProviderAttribute(System::String ^ type, ... cli::array <System::String ^> ^ supportedContextTypeGuids);
public ExportFileContextActionProviderAttribute (string type, params string[] supportedContextTypeGuids);
new Microsoft.VisualStudio.Workspace.ExportFileContextActionProviderAttribute : string * string[] -> Microsoft.VisualStudio.Workspace.ExportFileContextActionProviderAttribute
Public Sub New (type As String, ParamArray supportedContextTypeGuids As String())

Parameters

type
String

The unique type for this IFileContextActionProviderMetadata

supportedContextTypeGuids
String[]

A collection of GUIDs that identify the ContextType values that this language service can initialize from.

Applies to

ExportFileContextActionProviderAttribute(String, ProviderPriority, String[])

Initializes a new instance of the ExportFileContextActionProviderAttribute class.

public:
 ExportFileContextActionProviderAttribute(System::String ^ type, Microsoft::VisualStudio::Workspace::ProviderPriority priority, ... cli::array <System::String ^> ^ supportedContextTypeGuids);
public ExportFileContextActionProviderAttribute (string type, Microsoft.VisualStudio.Workspace.ProviderPriority priority, params string[] supportedContextTypeGuids);
new Microsoft.VisualStudio.Workspace.ExportFileContextActionProviderAttribute : string * Microsoft.VisualStudio.Workspace.ProviderPriority * string[] -> Microsoft.VisualStudio.Workspace.ExportFileContextActionProviderAttribute
Public Sub New (type As String, priority As ProviderPriority, ParamArray supportedContextTypeGuids As String())

Parameters

type
String

The unique type for this IFileContextActionProviderMetadata

priority
ProviderPriority

The provider priority

supportedContextTypeGuids
String[]

A collection of GUIDs that identify the ContextType values that this language service can initialize from.

Applies to

ExportFileContextActionProviderAttribute(FileContextActionProviderOptions, String, ProviderPriority, String[])

Initializes a new instance of the ExportFileContextActionProviderAttribute class.

public:
 ExportFileContextActionProviderAttribute(Microsoft::VisualStudio::Workspace::FileContextActionProviderOptions options, System::String ^ type, Microsoft::VisualStudio::Workspace::ProviderPriority priority, ... cli::array <System::String ^> ^ supportedContextTypeGuids);
public ExportFileContextActionProviderAttribute (Microsoft.VisualStudio.Workspace.FileContextActionProviderOptions options, string type, Microsoft.VisualStudio.Workspace.ProviderPriority priority, params string[] supportedContextTypeGuids);
new Microsoft.VisualStudio.Workspace.ExportFileContextActionProviderAttribute : Microsoft.VisualStudio.Workspace.FileContextActionProviderOptions * string * Microsoft.VisualStudio.Workspace.ProviderPriority * string[] -> Microsoft.VisualStudio.Workspace.ExportFileContextActionProviderAttribute
Public Sub New (options As FileContextActionProviderOptions, type As String, priority As ProviderPriority, ParamArray supportedContextTypeGuids As String())

Parameters

options
FileContextActionProviderOptions

FileContextActionProvider Options

type
String

The unique type for this IFileContextActionProviderMetadata

priority
ProviderPriority

The provider priority

supportedContextTypeGuids
String[]

A collection of GUIDs that identify the ContextType values that this language service can initialize from.

Applies to