SfcKeyChain.Equality(SfcKeyChain, SfcKeyChain) Operator

Definition

The == operator compares two SfcKeyChains.

  1. If both are null valued, they are equal.
  2. If both are to the same object reference, they are equal.
  3. If one is null but not the other, they are not equal.
  4. If the number of key level in the two SfcKeyChains are not the same, they are not equal.
  5. If the contents of each key level in both SfcKeyChains does not compare as equal, they are not equal. If it passes all of these tests, they are considered equal.
public static bool operator == (Microsoft.SqlServer.Management.Sdk.Sfc.SfcKeyChain leftOperand, Microsoft.SqlServer.Management.Sdk.Sfc.SfcKeyChain rightOperand);
static member ( = ) : 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