Indicates whether the approval request has been approved.
Namespace:
Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in
microsoft.resourcemanagement.dll)
Usage
Visual Basic |
Dim instance As ApprovalActivity
Dim value As Nullable(Of Boolean)
value = instance.IsApproved
instance.IsApproved = value
|
Syntax
Visual Basic |
<BrowsableAttribute(False)> _
Public Property IsApproved As Nullable(Of Boolean)
|
C# |
[BrowsableAttribute(false)]
public Nullable<bool> IsApproved { get; set; }
|
C++ |
[BrowsableAttribute(false)]
public:
property Nullable<bool> IsApproved {
Nullable<bool> get ();
void set (Nullable<bool> value);
}
|
J# |
/** @property */
public Nullable<boolean> get_IsApproved ()
/** @property */
public void set_IsApproved (Nullable<boolean> value)
|
JScript |
public function get IsApproved () : Nullable<boolean>
public function set IsApproved (value : Nullable<boolean>)
|
Property Value
A
Nullable value that indicates whether the
Request
that is associated with the
ApprovalActivity has been approved.
Remarks
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