SfcKeyChain.Equality(SfcKeyChain, SfcKeyChain) 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.
The == operator compares two SfcKeyChains.
- If both are null valued, they are equal.
- If both are to the same object reference, they are equal.
- If one is null but not the other, they are not equal.
- If the number of key level in the two SfcKeyChains are not the same, they are not equal.
- 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.