UpdateInstallationInfoCollection.Item Property (Int32)

 

Applies To: Windows Server Update Services

Retrieves or sets the member of the collection at the specified index.

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

Syntax

public IUpdateInstallationInfo this[
    int index
] { get; set; }
public:
property IUpdateInstallationInfo^ default[
    int index
] {
    IUpdateInstallationInfo^ get(int index);
    void set(int index, IUpdateInstallationInfo^ value);
}
member Item : 
        index:int -> IUpdateInstallationInfo with get, set
Public Property Item (
    index As Integer
) As IUpdateInstallationInfo

Parameters

  • index
    Type: System.Int32

    Zero-based index of the member to retrieve or set.

Property Value

Type: Microsoft.UpdateServices.Administration.IUpdateInstallationInfo

The member of the collection at the specified index.

Exceptions

Exception

Condition

ArgumentException

The installation information already exists in this collection.

ArgumentNullException

Cannot set a member of the collection to null.

ArgumentOutOfRangeException

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

Remarks

This property is an indexer in C#.

See Also

UpdateInstallationInfoCollection Class
Microsoft.UpdateServices.Administration Namespace

Return to top