WsusCollection.OnSet Method (Int32, Object, Object)
Applies To: Windows Server Update Services
Provices overridden validation functionality which checks that we do not insert duplicates into our collection.
Namespace: Microsoft.UpdateServices.Administration
Assembly: Microsoft.UpdateServices.Administration (in Microsoft.UpdateServices.Administration.dll)
Syntax
protected override void OnSet(
int index,
object oldValue,
object newValue
)
protected:
virtual void OnSet(
int index,
Object^ oldValue,
Object^ newValue
) override
override OnSet :
index:int *
oldValue:Object *
newValue:Object -> unit
Protected Overrides Sub OnSet (
index As Integer,
oldValue As Object,
newValue As Object
)
Parameters
index
Type: System.Int32The index at which the object will be set.
oldValue
Type: System.ObjectThe old value at index
newValue
Type: System.ObjectThe new value to be placed at index.
See Also
WsusCollection Class
Microsoft.UpdateServices.Administration Namespace
Return to top