This API supports the FIM 2010 infrastructure. Using this API directly from your code is not supported.
Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim instance As XmlInteractiveActivity
Dim value As Uri

value = instance.ResourceAddress

instance.ResourceAddress = value

Syntax

Visual Basic
<CategoryAttribute("Parameters")> _
<ValidationOptionAttribute(ValidationOption.Optional)> _
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _
<BrowsableAttribute(True)> _
<DescriptionAttribute("A URI representing the endpoint address of the WS-Transfer endpoint to allow subsequent Get, Put, and Delete calls on the newly created resource. This will be included in the WS-T Create Response sent back to the client.")> _
Public Property ResourceAddress As Uri
C#
[CategoryAttribute("Parameters")] 
[ValidationOptionAttribute(ValidationOption.Optional)] 
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] 
[BrowsableAttribute(true)] 
[DescriptionAttribute("A URI representing the endpoint address of the WS-Transfer endpoint to allow subsequent Get, Put, and Delete calls on the newly created resource. This will be included in the WS-T Create Response sent back to the client.")] 
public Uri ResourceAddress { get; set; }
C++
[CategoryAttribute(L"Parameters")] 
[ValidationOptionAttribute(ValidationOption::Optional)] 
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Visible)] 
[BrowsableAttribute(true)] 
[DescriptionAttribute(L"A URI representing the endpoint address of the WS-Transfer endpoint to allow subsequent Get, Put, and Delete calls on the newly created resource. This will be included in the WS-T Create Response sent back to the client.")] 
public:
property Uri^ ResourceAddress {
		Uri^ get ();
		void set (Uri^ value);
}
J#
/** @property */
public Uri get_ResourceAddress ()

/** @property */
public void set_ResourceAddress (Uri value)
JScript
public function get ResourceAddress () : Uri

public function set ResourceAddress (value : Uri)

Property Value

Returns Uri.

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