Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the item at the specified index from the collection.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Syntax
object IList.this[
int index
] { get; set; }
private:
property Object^ default[
int index
] {
virtual Object^ get(int index) sealed = IList::default::get;
virtual void set(int index, Object^ value) sealed = IList::default::set;
}
Private Property Item (
index As Integer
) As Object Implements IList.Item
Parameters
index
Type: System.Int32The index of the item to be retrieved.
Property Value
Type: System.Object
The Object from the collection.
Implements
See Also
ThreadSafeReadOnlyObservableCollection<T> Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top