Get/Set the proof descriptor which can be used to modify some fields inside the RSTR, such as requested proof token. It also contains the
Namespace: Microsoft.IdentityModel.Tokens
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As SecurityTokenDescriptor
Dim value As ProofDescriptor

value = instance.Proof

instance.Proof = value

Syntax

Visual Basic
Public Property Proof As ProofDescriptor
C#
public ProofDescriptor Proof { get; set; }
C++
public:
property ProofDescriptor^ Proof {
		ProofDescriptor^ get ();
		void set (ProofDescriptor^ value);
}
J#
/** @property */
public ProofDescriptor get_Proof ()

/** @property */
public void set_Proof (ProofDescriptor value)
JScript
public function get Proof () : ProofDescriptor

public function set Proof (value : ProofDescriptor)

Property Value

Returns a ProofDescriptor.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also