Gets a Guid value that represents the ObjectID property of the resource that is created by the CreateResourceActivity.
Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim instance As CreateResourceActivity
Dim value As Guid

value = instance.CreatedResourceId

instance.CreatedResourceId = value

Syntax

Visual Basic
<BrowsableAttribute(True)> _
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _
<CategoryAttribute("Parameters")> _
Public Property CreatedResourceId As Guid
C#
[BrowsableAttribute(true)] 
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] 
[CategoryAttribute("Parameters")] 
public Guid CreatedResourceId { get; set; }
C++
[BrowsableAttribute(true)] 
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Visible)] 
[CategoryAttribute(L"Parameters")] 
public:
property Guid CreatedResourceId {
		Guid get ();
		void set (Guid value);
}
J#
/** @property */
public Guid get_CreatedResourceId ()

/** @property */
public void set_CreatedResourceId (Guid value)
JScript
public function get CreatedResourceId () : Guid

public function set CreatedResourceId (value : Guid)

Property Value

A Guid value that represents the ObjectID property of a resource.

Remarks

You cannot use this property to set the ObjectID property of the Resource to create; you can use the property only to read the ObjectID property of the resource after it is created.


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