Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Performs custom processes after setting the value of an item in the collection.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.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 of the item.
oldValue
Type: System.ObjectThe old value of the item.
newValue
Type: System.ObjectThe new value of the item.
See Also
BaseCollection Class
Microsoft.ManagementConsole Namespace
Return to top