UpdateSummaryCollection.Item Property (Int32)
Applies To: Windows Server Update Services
Gets 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 IUpdateSummary this[
int index
] { get; set; }
public:
property IUpdateSummary^ default[
int index
] {
IUpdateSummary^ get(int index);
void set(int index, IUpdateSummary^ value);
}
member Item :
index:int -> IUpdateSummary with get, set
Public Property Item (
index As Integer
) As IUpdateSummary
Parameters
index
Type: System.Int32Zero-based index of the member to retrieve or set.
Property Value
Type: Microsoft.UpdateServices.Administration.IUpdateSummary
The member of the collection at the specified index.
Exceptions
Exception
Condition
The summary installation information for the update already exists in this collection.
Cannot set a member of the collection to null.
index cannot be less than zero or greater than UpdateSummaryCollection.Count.
Remarks
This property is an indexer in C#.
See Also
UpdateSummaryCollection Class
Microsoft.UpdateServices.Administration Namespace
Return to top