SelectionList.IPostBackDataHandler.LoadPostData Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Eine Beschreibung dieses Elements finden Sie unter LoadPostData(String, NameValueCollection). Diese API ist veraltet. Informationen zum Entwickeln ASP.NET mobiler Anwendungen finden Sie unter Mobile Apps & Websites mit ASP.NET.
Diese API unterstützt die Produktinfrastruktur und ist nicht für die direkte Verwendung aus Ihrem Code gedacht.
virtual bool System.Web.UI.IPostBackDataHandler.LoadPostData(System::String ^ postDataKey, System::Collections::Specialized::NameValueCollection ^ postCollection) = System::Web::UI::IPostBackDataHandler::LoadPostData;
virtual bool System.Web.UI.IPostBackDataHandler.LoadPostData(System::String ^ key, System::Collections::Specialized::NameValueCollection ^ data) = System::Web::UI::IPostBackDataHandler::LoadPostData;
bool IPostBackDataHandler.LoadPostData (string postDataKey, System.Collections.Specialized.NameValueCollection postCollection);
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
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 (postDataKey As String, postCollection As NameValueCollection) As Boolean Implements IPostBackDataHandler.LoadPostData
Function LoadPostData (key As String, data As NameValueCollection) As Boolean Implements IPostBackDataHandler.LoadPostData
Parameter
- postDataKeykey
- String
Der Schlüssel, der den relevanten Wert in den Daten angibt.
- postCollectiondata
- NameValueCollection
Die Auflistung, die die Postbackdaten enthält.
Gibt zurück
true
, wenn sich der Zustand von SelectionList aufgrund des Postbacks ändert, andernfalls false
.
Implementiert
Hinweise
Bei diesem Member handelt es sich um eine explizite Schnittstellenmemberimplementierung. Er kann nur verwendet werden, wenn die SelectionList-Instanz in eine IPostBackDataHandler-Schnittstelle umgewandelt wird.