PropertyCollection.Item[String] Property

Definition

Gets the specified property.

public:
 property System::DirectoryServices::PropertyValueCollection ^ default[System::String ^] { System::DirectoryServices::PropertyValueCollection ^ get(System::String ^ propertyName); };
public System.DirectoryServices.PropertyValueCollection this[string propertyName] { get; }
member this.Item(string) : System.DirectoryServices.PropertyValueCollection
Default Public ReadOnly Property Item(propertyName As String) As PropertyValueCollection

Parameters

propertyName
String

The name of the property to retrieve.

Property Value

The value of the specified property.

Remarks

In C#, this property is the indexer for the PropertyCollection class.

In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property with a type of Object and an index type of String.

Applies to