An array of String objects that specify which attributes of the target Resource to return.
Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim instance As ReadResourceActivity
Dim value As String()

value = instance.SelectionAttributes

instance.SelectionAttributes = value

Syntax

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

/** @property */
public void set_SelectionAttributes (String[] value)
JScript
public function get SelectionAttributes () : String[]

public function set SelectionAttributes (value : String[])

Property Value

An array of String that specifies which attributes of the target Resource to return.

Example

The following example sets the SelectionAttributes property of the ReadResourceActivity class to an array that contains "Owner" and “Explicit Member” strings, which are attributes of the Group resource.

C#  Copy Code
this.readResourceActivity1.SelectionAttributes = new string[]{ "Owner", "ExplcitMember"};

Remarks

The attributes that are common to all resources (those that are attributes of the base Resource object type in the FIM schema) are always returned.


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

Change History

See Also