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.
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