Command.IPostBackDataHandler.LoadPostData(String, NameValueCollection) Method

Definition

For a description of this member, see LoadPostData(String, NameValueCollection). This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

 virtual bool System.Web.UI.IPostBackDataHandler.LoadPostData(System::String ^ key, System::Collections::Specialized::NameValueCollection ^ data) = System::Web::UI::IPostBackDataHandler::LoadPostData;
bool IPostBackDataHandler.LoadPostData (string key, System.Collections.Specialized.NameValueCollection data);
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 (key As String, data As NameValueCollection) As Boolean Implements IPostBackDataHandler.LoadPostData

Parameters

key
String

A reference to the name of a parameter collection.

data
NameValueCollection

A parameter collection of postback data.

Returns

true if the adapter handles loading the post data; otherwise, false.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the Command instance is cast to an System.Web.UI.IPostBackDataHandler interface.

Applies to

See also