Claim.Value Property

Definition

Gets the value of the claim.

public:
 property System::String ^ Value { System::String ^ get(); };
public string Value { get; }
member this.Value : string
Public ReadOnly Property Value As String

Property Value

The claim value.

Remarks

The value of a claim is represented only as a string. For more complex value types, it is recommended that you use standard XML schema types to indicate how the value is meant to be serialized and deserialized to and from a string.

The ValueType property provides the underlying syntactic type information about the value. The Type property provides the semantic information about the value; that is, it provides the meaning of the value and tells a claim consumer how to interpret it.

Applies to

See also