ProvideFileSystemProviderAttribute Constructors

Definition

Overloads

ProvideFileSystemProviderAttribute(String, String)

Initializes a ProvideFileSystemProviderAttribute instance

ProvideFileSystemProviderAttribute(String, String, String)

Initializes a ProvideFileSystemProviderAttribute instance

ProvideFileSystemProviderAttribute(String, String)

Initializes a ProvideFileSystemProviderAttribute instance

public:
 ProvideFileSystemProviderAttribute(System::String ^ scheme, System::String ^ name);
public ProvideFileSystemProviderAttribute (string scheme, string name);
new Microsoft.VisualStudio.Shell.ProvideFileSystemProviderAttribute : string * string -> Microsoft.VisualStudio.Shell.ProvideFileSystemProviderAttribute
Public Sub New (scheme As String, name As String)

Parameters

scheme
String

The scheme supported by the file system provider. The scheme should not contain any whitespace or include the schema delimiter "://".

name
String

The name of the service (same as Name.)

Applies to

ProvideFileSystemProviderAttribute(String, String, String)

Initializes a ProvideFileSystemProviderAttribute instance

public:
 ProvideFileSystemProviderAttribute(System::String ^ scheme, System::String ^ name, System::String ^ version);
public ProvideFileSystemProviderAttribute (string scheme, string name, string? version);
new Microsoft.VisualStudio.Shell.ProvideFileSystemProviderAttribute : string * string * string -> Microsoft.VisualStudio.Shell.ProvideFileSystemProviderAttribute
Public Sub New (scheme As String, name As String, version As String)

Parameters

scheme
String

The scheme supported by the file system provider. The scheme should not contain any whitespace or include the schema delimiter "://".

name
String

The name of the service (same as Name.)

version
String

The version of the proffered service (same as Version). May be null.

Applies to