WmlSelectionListAdapter.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.
Returns true if the adapter handles loading the post data. This API is obsolete. 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
	Parameters
- key
 - String
 
Identifies the control.
- data
 - NameValueCollection
 
Contains the collection of all incoming name values.
- controlPrivateData
 - Object
 
Provides a place to send data private to the control that might be required for loading of post data. The control determines the type that is passed to the parameter.
- dataChanged
 - Boolean
 
Returns true if the required the object in privateControlData was changed, so the RaisePostDataChangedEvent() event can be raised.
Returns
true if the adapter handles loading the post data; otherwise, false.