MobilePage.DeterminePostBackMode Método

Definição

Determina o tipo de solicitação feita para a classe MobilePage e retorna um NameValueCollection de dados postados de volta para a página usando um comando POST ou GET.Determines the type of request made for the MobilePage class and returns a NameValueCollection of data posted back to the page by using either a POST or a GET command. Esta API está obsoleta.This API is obsolete. Para saber mais sobre como desenvolver aplicativos móveis ASP.NET, veja Mobile Apps & Sites with ASP.NET (Aplicativos móveis e sites com ASP.NET).For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

protected:
 override System::Collections::Specialized::NameValueCollection ^ DeterminePostBackMode();
protected override System.Collections.Specialized.NameValueCollection DeterminePostBackMode ();
override this.DeterminePostBackMode : unit -> System.Collections.Specialized.NameValueCollection
Protected Overrides Function DeterminePostBackMode () As NameValueCollection

Retornos

NameValueCollection

Um objeto NameValueCollection que contém os dados do formulário.A NameValueCollection object that contains the form data.

Comentários

Esse membro substitui o Page.DeterminePostBackMode método para determinar se a página foi solicitada devido a uma transferência ou um redirecionamento.This member overrides the Page.DeterminePostBackMode method to determine whether the page was requested because of a transfer or a redirect. Nesse caso, null é retornado.If so, null is returned. Caso contrário, o DeterminePostBackMode método do adaptador será chamado.Otherwise, the DeterminePostBackMode method of the adapter is called.

Aplica-se a