ThreadSafeReadOnlyObservableCollection<T>.IList<T>.Insert Method (Int32, T)
Inserts the specified item into the collection at the specified index.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Syntax
void IList<T>.Insert(
int index,
T item
)
private:
virtual void Insert(
int index,
T item
) sealed = IList<T>::Insert
Private Sub Insert (
index As Integer,
item As T
)
Implements IList(Of T).Insert
Parameters
index
Type: System.Int32The index where the item is inserted.
item
Type: TThe item to insert.
Implements
Exceptions
Exception | Condition |
---|---|
NotSupportedException | This method always throws this exception. |
See Also
ThreadSafeReadOnlyObservableCollection<T> Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top