HtmlSelectionListAdapter.LoadPostData(String, NameValueCollection, Object, Boolean) Método

Definição

Retorna true se o adaptador manipula o carregamento dos dados de postagem.Returns true if the adapter handles loading the post data. 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.

public:
 override bool LoadPostData(System::String ^ key, System::Collections::Specialized::NameValueCollection ^ data, System::Object ^ controlPrivateData, [Runtime::InteropServices::Out] bool % dataChanged);
public override bool LoadPostData (string key, System.Collections.Specialized.NameValueCollection data, object controlPrivateData, out bool dataChanged);
override this.LoadPostData : string * System.Collections.Specialized.NameValueCollection * obj * bool -> bool
Public Overrides Function LoadPostData (key As String, data As NameValueCollection, controlPrivateData As Object, ByRef dataChanged As Boolean) As Boolean

Parâmetros

key
String

Identifica o controle.Identifies the control.

data
NameValueCollection

Contém a coleção de todos os valores de nome de entrada.Contains the collection of all incoming name values.

controlPrivateData
Object

Fornece um local para enviar dados privados para o controle que pode ser necessário para carregar dados de postagem.Provides a place to send data private to the control that might be required for loading of post data. O controle determina o tipo que é passado para o parâmetro.The control determines the type that is passed to the parameter.

dataChanged
Boolean

Retorna true se o objeto necessário no privateControlData foi alterado, portanto, o evento RaisePostDataChangedEvent() pode ser acionado.Returns true if the required the object in privateControlData was changed, so the RaisePostDataChangedEvent() event can be raised.

Retornos

Boolean

true se o adaptador manipula o carregamento dos dados de postagem; caso contrário, false.true if the adapter handles loading the post data; otherwise, false.

Aplica-se a

Confira também