SecurityIdentifier::Equality Operator (SecurityIdentifier^, SecurityIdentifier^)

 

Compares two SecurityIdentifier objects to determine whether they are equal. They are considered equal if they have the same canonical representation as the one returned by the Value property or if they are both null.

Namespace:   System.Security.Principal
Assembly:  mscorlib (in mscorlib.dll)

public:
static bool operator ==(
	SecurityIdentifier^ left,
	SecurityIdentifier^ right
)

Parameters

left
Type: System.Security.Principal::SecurityIdentifier^

The left operand to use for the equality comparison. This parameter can be null.

right
Type: System.Security.Principal::SecurityIdentifier^

The right operand to use for the equality comparison. This parameter can be null.

Return Value

Type: System::Boolean

true if left and right are equal; otherwise, false.

.NET Framework
Available since 2.0
Return to top
Show: