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
public T this[
int index
] { get; set; }
public:
property T default[
int index
] {
virtual T get(int index) sealed;
virtual void set(int index, T value) sealed;
}
Public Property Item (
index As Integer
) As T
Parameters
index
Type: System.Int32The index of the item to be retrieved.
Property Value
Type: T
true if the item can be retrieved; otherwise, false.
Implements
See Also
ThreadSafeReadOnlyObservableCollection<T> Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top