WsusCollection.OnSetComplete Method (Int32, Object, Object)
Applies To: Windows Server Update Services
Performs additional custom processes after setting a value in the UpdateCollection instance.
Namespace: Microsoft.UpdateServices.Administration
Assembly: Microsoft.UpdateServices.Administration (in Microsoft.UpdateServices.Administration.dll)
Syntax
protected override void OnSetComplete(
int index,
object oldValue,
object newValue
)
protected:
virtual void OnSetComplete(
int index,
Object^ oldValue,
Object^ newValue
) override
override OnSetComplete :
index:int *
oldValue:Object *
newValue:Object -> unit
Protected Overrides Sub OnSetComplete (
index As Integer,
oldValue As Object,
newValue As Object
)
Parameters
index
Type: System.Int32The zero-based index at which oldValue can be found.
oldValue
Type: System.ObjectThe value to replace with newValue.
newValue
Type: System.ObjectThe new value of the element at index.
See Also
WsusCollection Class
Microsoft.UpdateServices.Administration Namespace
Return to top