SettingIdentifier.Custom Method

Definition

Overloads

Custom(String)

Initializes a SettingIdentifier value.

Custom<T>(String)

Initializes a SettingIdentifier value.

Custom(String)

Initializes a SettingIdentifier value.

public static Microsoft.VisualStudio.Extensibility.Settings.SettingIdentifier Custom (string value);
static member Custom : string -> Microsoft.VisualStudio.Extensibility.Settings.SettingIdentifier
Public Shared Function Custom (value As String) As SettingIdentifier

Parameters

value
String

The string value of SettingIdentifier.

Returns

The SettingIdentifier value.

Applies to

Custom<T>(String)

Initializes a SettingIdentifier value.

public static Microsoft.VisualStudio.Extensibility.Settings.SettingIdentifier<T> Custom<T> (string value);
static member Custom : string -> Microsoft.VisualStudio.Extensibility.Settings.SettingIdentifier<'T>
Public Shared Function Custom(Of T) (value As String) As SettingIdentifier(Of T)

Type Parameters

T

The type of the setting value.

Parameters

value
String

The string value of SettingIdentifier.

Returns

The SettingIdentifier value.

Applies to