SettingRule.Equal<T>(SimpleSetting<T>, T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a SettingRule that is satisfied when setting
's
value is equal to value
.
public static Microsoft.VisualStudio.Extensibility.Settings.SettingRule Equal<T> (Microsoft.VisualStudio.Extensibility.Settings.SimpleSetting<T> setting, T value);
static member Equal : Microsoft.VisualStudio.Extensibility.Settings.SimpleSetting<'T> * 'T -> Microsoft.VisualStudio.Extensibility.Settings.SettingRule
Public Shared Function Equal(Of T) (setting As SimpleSetting(Of T), value As T) As SettingRule
Type Parameters
- T
The value type of the setting.
Parameters
- setting
- SimpleSetting<T>
The setting to evaluate.
- value
- T
The value to compare setting
to.
Returns
A SettingRule instance.