ThreadSafeReadOnlyObservableCollection<T>.IList.Insert Method (Int32, Object)
Inserts the specified value into the collection at the specified index.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Syntax
void IList.Insert(
int index,
object value
)
private:
virtual void Insert(
int index,
Object^ value
) sealed = IList::Insert
Private Sub Insert (
index As Integer,
value As Object
)
Implements IList.Insert
Parameters
index
Type: System.Int32The index where the value is inserted.
value
Type: System.ObjectThe value 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