ParameterCollection.OnClearComplete Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Performs additional custom processes after clearing the contents of the collection.
protected:
override void OnClearComplete();
protected override void OnClearComplete ();
override this.OnClearComplete : unit -> unit
Protected Overrides Sub OnClearComplete ()
Remarks
The OnClearComplete method is called to perform additional processing after the Clear method completes. It calls the OnParametersChanged method.
Notes to Inheritors
This method allows implementers to define processes that must be performed after deleting all the elements from the underlying collection. By defining this method, implementers can add functionality to inherited methods without having to override all other methods.
OnClear() is invoked before the standard Clear
behavior, whereas OnClearComplete() is invoked after the standard Clear
behavior.