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 an item to the IList<T> at the specified index.
Namespace: Microsoft.ConfigurationManagement.Messaging.Messages.Server
Assembly: Microsoft.ConfigurationManagement.Messaging (in Microsoft.ConfigurationManagement.Messaging.dll)
Syntax
public void Insert(
int index,
string item
)
public:
virtual void Insert(
int index,
String^ item
) sealed
Public Sub Insert (
index As Integer,
item As String
)
Parameters
index
Type: System.Int32The zero-based index at which item should be inserted.
item
Type: System.StringThe object to insert into the IList<T>.
Implements
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | index is not a valid index in the IList<T>. |
NotSupportedException | The IList<T> is read-only. |
See Also
DdmArrayProperty Class
Microsoft.ConfigurationManagement.Messaging.Messages.Server Namespace
Return to top