StaticSiteMapProvider.Clear Method

Definition

Removes all elements in the collections of child and parent site map nodes that the StaticSiteMapProvider tracks as part of its state.

C#
protected virtual void Clear();

Examples

The following code example demonstrates how to override the Clear method to perform additional cleanup of state that is maintained by the class.

This code example is part of a larger example provided for the StaticSiteMapProvider class.

C#
// Clean up any collections or other state that an instance of this may hold.
protected override void Clear() {
    lock (this) {
        rootNode = null;
        base.Clear();
    }
}

Remarks

Classes that are derived from the StaticSiteMapProvider class can override the Clear method to perform additional cleanup, depending on what state the derived classes maintain.

The Clear method does not reset state that is initialized during the Initialize method - it resets only state that is initialized during the BuildSiteMap method.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also