Gets and sets the AttributeIdProperty value. 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 SynchronizationRuleActivity
Dim value As Guid

value = instance.AttributeId

instance.AttributeId = value

Syntax

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

/** @property */
public void set_AttributeId (Guid value)
JScript
public function get AttributeId () : Guid

public function set AttributeId (value : Guid)

Property Value

A Guid value that represents an attribute.

Remarks

Only used if the ActionProperty property is set to BasedOnAttribute. This is a reference to an attribute on the Target that will determine the operation to perform. If that attribute has the value specified by AddValueProperty, an Add operation will be performed. If that attribute has the value specified by RemoveValue, then a Remove operation will be performed.


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