SamlNameIdentifierClaimResource Class

Definition

Represents a claim for a SAML security token that asserts the subject's name.

public ref class SamlNameIdentifierClaimResource
[System.Runtime.Serialization.DataContract]
public class SamlNameIdentifierClaimResource
[<System.Runtime.Serialization.DataContract>]
type SamlNameIdentifierClaimResource = class
Public Class SamlNameIdentifierClaimResource
Inheritance
SamlNameIdentifierClaimResource
Attributes

Remarks

Use the SamlNameIdentifierClaimResource class to create a Claim instance for a SamlSecurityToken subject name claim. The Claim class has a constructor that takes a resource, which this class can be passed to.

SamlSecurityToken security tokens specify their claims using SAML assertions, which can specify the subject of the security token. The claims in a SAML assertion are represented by SAML statements. The SAML specification defines a set of SAML statement types and one of them is a SamlSubjectStatement. A SamlSubjectStatement asserts the principal that is the subject of the SamlSecurityToken security token. This principal is specified using a SamlSubject class. The SamlNameIdentifierClaimResource class represents the name identifier for a SamlSubject.

Constructors

SamlNameIdentifierClaimResource(String, String, String)

Initializes a new instance of the SamlNameIdentifierClaimResource class using the specified name, the domain in which the name resides, and the format the name is in.

Properties

Format

Gets a URI reference that represents the format that the subject name of a SAML security token is in.

Name

Gets the subject name of a SAML security token.

NameQualifier

Gets the domain in which the subject name of a SAML security token resides in.

Methods

Equals(Object)

Returns a value that indicates whether the instance is equal to the specified object.

GetHashCode()

Returns the hash code for the SamlNameIdentifierClaimResource.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also