XhtmlPageAdapter.DeterminePostBackMode Method

Definition

Returns the postback data collection. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 virtual System::Collections::Specialized::NameValueCollection ^ DeterminePostBackMode(System::Web::HttpRequest ^ request, System::String ^ postEventSourceID, System::String ^ postEventArgumentID, System::Collections::Specialized::NameValueCollection ^ baseCollection);
public virtual System.Collections.Specialized.NameValueCollection DeterminePostBackMode (System.Web.HttpRequest request, string postEventSourceID, string postEventArgumentID, System.Collections.Specialized.NameValueCollection baseCollection);
abstract member DeterminePostBackMode : System.Web.HttpRequest * string * string * System.Collections.Specialized.NameValueCollection -> System.Collections.Specialized.NameValueCollection
override this.DeterminePostBackMode : System.Web.HttpRequest * string * string * System.Collections.Specialized.NameValueCollection -> System.Collections.Specialized.NameValueCollection
Public Overridable Function DeterminePostBackMode (request As HttpRequest, postEventSourceID As String, postEventArgumentID As String, baseCollection As NameValueCollection) As NameValueCollection

Parameters

request
HttpRequest

The HttpRequest object that contains request information.

postEventSourceID
String

The source identifier for the event.

postEventArgumentID
String

An argument identifier for the event.

baseCollection
NameValueCollection

The collection of postback data from the request object.

Returns

A NameValueCollection object containing all query string or form parameters and values.

Implements

Remarks

Because some devices handle postback differently from others, the DeterminePostBackMode method allows the adapter to modify the collection.

Applies to

See also