A URI reference identifying the resource to which access authorization is sought. [Saml2Core, 2.7.4]
Namespace: Microsoft.IdentityModel.Tokens.Saml2
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As Saml2AuthorizationDecisionStatement
Dim value As Uri

value = instance.Resource

instance.Resource = value

Syntax

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

/** @property */
public void set_Resource (Uri value)
JScript
public function get Resource () : Uri

public function set Resource (value : Uri)

Property Value

Returns a Uri.

Remarks

In addition to any absolute URI, the Resource may also be the empty URI reference, and the meaning is defined to be "the start of the current document". [Saml2Core, 2.7.4]


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