UpdateApprovalCollection.Insert Method (Int32, IUpdateApproval)

 

Applies To: Windows Server Update Services

Inserts an update approval into the collection.

Namespace:   Microsoft.UpdateServices.Administration
Assembly:  Microsoft.UpdateServices.Administration (in Microsoft.UpdateServices.Administration.dll)

Syntax

public void Insert(
    int index,
    IUpdateApproval value
)
public:
void Insert(
    int index,
    IUpdateApproval^ value
)
member Insert : 
        index:int *
        value:IUpdateApproval -> unit
Public Sub Insert (
    index As Integer,
    value As IUpdateApproval
)

Parameters

  • index
    Type: System.Int32

    Zero-based index at which to insert the update approval into the collection.

Exceptions

Exception

Condition

ArgumentException

The update approval already exists in this collection.

ArgumentNullException

value cannot be null.

ArgumentOutOfRangeException

index cannot be less than zero or greater than UpdateApprovalCollection.Count.

See Also

Insert Overload
UpdateApprovalCollection Class
Microsoft.UpdateServices.Administration Namespace

Return to top