MenuAdapter.LoadAdapterControlState Method

Note: This method is new in the .NET Framework version 2.0.

Loads any control state information that was saved by the SaveAdapterControlState method during a previous request to the page.

Namespace: System.Web.UI.WebControls.Adapters
Assembly: System.Web (in system.web.dll)

protected public:
virtual void LoadAdapterControlState (
	Object^ state
) override
protected void LoadAdapterControlState (
	Object state
)
protected internal override function LoadAdapterControlState (
	state : Object
)

Parameters

state

An Object in the form of a dictionary that contains the adapter's state information.

When an adapter needs to maintain its own private state information, it can override the LoadAdapterControlState and SaveAdapterControlState methods. In the case of the MenuAdapter class, where the displayed menu hierarchy is dependent on the previously selected MenuItem object, state provides a dictionary of name/value pairs containing the path of the selected item in the menu's hierarchy. The state parameter is a Pair object saved by the SaveAdapterControlState during a previous request to the page.

If the control is not registered to participate in control state, the adapter must register for control state. Adapter control state is maintained in addition to the state for the control, unlike other life-cycle methods.

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: