SfcKeyChain.Inequality(SfcKeyChain, SfcKeyChain) Operator

Definition

The != operator compares two SfcKeyChains for inequality by using the == operator and negating the result. See the == operator on the SfcKeyChain class for details on equality checking.

public static bool operator != (Microsoft.SqlServer.Management.Sdk.Sfc.SfcKeyChain leftOperand, Microsoft.SqlServer.Management.Sdk.Sfc.SfcKeyChain rightOperand);
static member op_Inequality : Microsoft.SqlServer.Management.Sdk.Sfc.SfcKeyChain * Microsoft.SqlServer.Management.Sdk.Sfc.SfcKeyChain -> bool
Public Shared Operator != (leftOperand As SfcKeyChain, rightOperand As SfcKeyChain) As Boolean

Parameters

leftOperand
SfcKeyChain

The first keychain to compare.

rightOperand
SfcKeyChain

The second keychain to compare.

Returns

True if equivalent, otherwise false.

Applies to