Represents the request associate with the current ApprovalActivity.
Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim instance As ApprovalActivity
Dim value As RequestType

value = instance.Request

instance.Request = value

Syntax

Visual Basic
<BrowsableAttribute(False)> _
Public Property Request As RequestType
C#
[BrowsableAttribute(false)] 
public RequestType Request { get; set; }
C++
[BrowsableAttribute(false)] 
public:
property RequestType^ Request {
		RequestType^ get ();
		void set (RequestType^ value);
}
J#
/** @property */
public RequestType get_Request ()

/** @property */
public void set_Request (RequestType value)
JScript
public function get Request () : RequestType

public function set Request (value : RequestType)

Property Value

A RequestType that represents the request associated with the activity.

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

Target Platforms

Windows 2008 x64 Edition

See Also