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