Indicates the time that the approvers have to respond to the approval before it escalates or times out.
Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim instance As ApprovalActivity
Dim value As TimeSpan

value = instance.ApprovalTimeout

Syntax

Visual Basic
<BrowsableAttribute(False)> _
Public ReadOnly Property ApprovalTimeout As TimeSpan
C#
[BrowsableAttribute(false)] 
public TimeSpan ApprovalTimeout { get; }
C++
[BrowsableAttribute(false)] 
public:
property TimeSpan ApprovalTimeout {
		TimeSpan get ();
}
J#
/** @property */
public TimeSpan get_ApprovalTimeout ()
JScript
public function get ApprovalTimeout () : TimeSpan

Property Value

A TimeSpan value.

Remarks

Indicates the time period after the Approval object is first created that the list of approvers has to respond to the approval. After the ApprovalTimeout interval is exceeded, if no additional approvers are specified by the Escalation property, the approval fails. If additional approvers are specified by the Escalation property, those approvers are added to the list of approvers. All approvers then have another ApprovalTimeout interval to respond to the approval.


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