CatalogZoneBase.IPostBackDataHandler.LoadPostData Method

Definition

 virtual bool System.Web.UI.IPostBackDataHandler.LoadPostData(System::String ^ postDataKey, System::Collections::Specialized::NameValueCollection ^ postCollection) = System::Web::UI::IPostBackDataHandler::LoadPostData;
bool IPostBackDataHandler.LoadPostData (string postDataKey, System.Collections.Specialized.NameValueCollection postCollection);
abstract member System.Web.UI.IPostBackDataHandler.LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
override this.System.Web.UI.IPostBackDataHandler.LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
Function LoadPostData (postDataKey As String, postCollection As NameValueCollection) As Boolean Implements IPostBackDataHandler.LoadPostData

Parameters

postDataKey
String

The key identifier for the control.

postCollection
NameValueCollection

The collection of name/value pairs posted to the server.

Returns

true if an event should be raised to indicate that data has changed; otherwise false.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the CatalogZoneBase instance is cast to an IPostBackDataHandler interface. The method simply calls the LoadPostData method on the CatalogZoneBase class, which in turn processes the state of the check boxes in a catalog that correspond to server controls in the catalog.

Applies to

See also