SettingRule.BitwiseOr(SettingRule, SettingRule) Operator
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 rule that is true
when at least one of a
or
b
is true
.
public static Microsoft.VisualStudio.Extensibility.Settings.SettingRule operator | (Microsoft.VisualStudio.Extensibility.Settings.SettingRule a, Microsoft.VisualStudio.Extensibility.Settings.SettingRule b);
static member ( ||| ) : Microsoft.VisualStudio.Extensibility.Settings.SettingRule * Microsoft.VisualStudio.Extensibility.Settings.SettingRule -> Microsoft.VisualStudio.Extensibility.Settings.SettingRule
Public Shared Operator Or (a As SettingRule, b As SettingRule) As SettingRule
Parameters
The first operand of the logical OR operation.
The second operand of the logical OR operation.
Returns
A SettingRule that is true
when at least one of a
or
b
is true
.