Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)
Usage
Visual Basic |
---|
Dim instance As DeleteResourceActivity Dim value As Guid value = instance.ActorId instance.ActorId = value |
Syntax
Visual Basic |
---|
<CategoryAttribute("Parameters")> _ <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _ <BrowsableAttribute(True)> _ Public Property ActorId As Guid |
C# |
---|
[CategoryAttribute("Parameters")] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] [BrowsableAttribute(true)] public Guid ActorId { get; set; } |
C++ |
---|
[CategoryAttribute(L"Parameters")] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Visible)] [BrowsableAttribute(true)] public: property Guid ActorId { Guid get (); void set (Guid value); } |
J# |
---|
/** @property */ public Guid get_ActorId () /** @property */ public void set_ActorId (Guid value) |
JScript |
---|
public function get ActorId () : Guid public function set ActorId (value : Guid) |
Property Value
A Guid value that represents the ObjectID of a resource (see Resource).Remarks
The ActorId will default to the Creator property of the parent Request if no specific value is set.
ActorId can reference any resource in the FIM Service database and not just Person resources. For example, you can use the Forefront Identity Manager (FIM) Service Account resource as the ActorId.
If the FIM Service Account is used as the
ActorId, the activity will be permitted to perform any
operation in the FIM Service database and no management policy
rules are required to permit the activity to create, update, delete
or read resources. The ObjectID of the FIM Service Account
is e05d1f1b-3d5e-4014-baa6-94dee7d68c89
.
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.