DirectoryAttribute.Item[Int32] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The Item[Int32] property gets or sets the DirectoryAttribute object at the specified index.
public:
property System::Object ^ default[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
public object this[int index] { get; set; }
member this.Item(int) : obj with get, set
Default Public Property Item(index As Integer) As Object
Parameters
- index
- Int32
The zero-based index value at which the DirectoryAttribute object is found.
Property Value
The DirectoryAttribute object at the specified index.
Exceptions
value
to set is an invalid type. The valid types are byte[], string, or URI.
value
contains a null reference (Nothing
in Visual Basic).
Remarks
The Get method of Item[] always attempts to convert and return the value object as a string; otherwise it returns a byte array. To get a better performance, use the GetValues method if you know the return type of the attribute value.