IUpdate.IsSuperseded Property

 

Applies To: Windows Server Update Services

Gets whether this update is superseded by related updates.

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

Syntax

bool IsSuperseded { get; }
property bool IsSuperseded {
    bool get();
}
abstract IsSuperseded : bool with get
ReadOnly Property IsSuperseded As Boolean

Property Value

Type: System.Boolean

true if this update is superseded by a related update, otherwise false.

Remarks

For example, if UpdateD supersedes UpdateC which supersedes UpdateB which supersedes UpdateA, this property would return false for UpdateD and true for the others.

To find the updates that supersede this update, call GetRelatedUpdates (set relationship to UpdatesThatSupersedeThisUpdate)..

To determine if this update supersedes other updates, call HasSupersededUpdates.

See Also

IUpdate Interface
Microsoft.UpdateServices.Administration Namespace

Return to top