Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Claim.Equals(Object) Method

Definition

Namespace:
System.IdentityModel.Claims
Assembly:
System.ServiceModel.Primitives.dll
Assembly:
System.IdentityModel.dll
Package:
System.ServiceModel.Primitives v10.0.652802
Source:
Claim.cs
Source:
Claim.cs
Source:
Claim.cs

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.

Determines whether the specified object represents the same claim as the current Claim object.

public:
 override bool Equals(System::Object ^ obj);
public override bool Equals(object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean

Parameters

obj
Object

The object to compare with the current Claim.

Returns

true if obj represents the same claim as the current Claim; otherwise false.

Remarks

This method overrides the Equals method to provide equality comparisons for Claim objects. The comparison consists of three comparisons on the values of the Right, ClaimType, and Resource properties. The comparison algorithm that is used on the Resource property depends upon the value of the ClaimType property. The following table details the comparison algorithm that is used for the specified claim type.

Claim type Comparison
Dns Case insensitive string comparison on the resource.
Hash Byte-by-byte comparison.
Rsa Byte-by-byte comparison on the Modulus and Exponent parts of the algorithm.
Thumbprint Byte-by-byte comparison.
Upn SID comparison.
X500DistinguishedName Normalized X.500 raw data comparison.

Applies to


Feedback

Was this page helpful?