CatalogZoneBase.IPostBackDataHandler.LoadPostData 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.
Implements the LoadPostData(String, NameValueCollection) method by calling the LoadPostData(String, NameValueCollection) method of the CatalogZoneBase class.
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.