Claim.Properties Property

Definition

Gets a dictionary that contains additional properties associated with this claim.

public:
 property System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ Properties { System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ get(); };
public System.Collections.Generic.IDictionary<string,string> Properties { get; }
member this.Properties : System.Collections.Generic.IDictionary<string, string>
Public ReadOnly Property Properties As IDictionary(Of String, String)

Property Value

A dictionary that contains additional properties associated with the claim. The properties are represented as name-value pairs.

Remarks

The Properties property provides a dictionary of name-value pairs that allows metadata or other information about the claim to be associated with it. For claims generated from SAML tokens, this dictionary may contain keys given by the constants in the ClaimProperties class.

Applies to

See also