XhtmlPageAdapter.HandlePagePostBackEvent(String, String) 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.
Indicates whether the adapter handles the postback event. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
virtual bool HandlePagePostBackEvent(System::String ^ eventSource, System::String ^ eventArgument);
public virtual bool HandlePagePostBackEvent (string eventSource, string eventArgument);
abstract member HandlePagePostBackEvent : string * string -> bool
override this.HandlePagePostBackEvent : string * string -> bool
Public Overridable Function HandlePagePostBackEvent (eventSource As String, eventArgument As String) As Boolean
Parameters
- eventSource
- String
The source identifier for the event.
- eventArgument
- String
The name of the event.
Returns
false
.
Implements
Remarks
The HandlePagePostBackEvent method is called during postback. An adapter can choose to handle the event. The XhtmlPageAdapter class does not handle the postback event and always returns false
.
Notes to Inheritors
When overriding the HandlePagePostBackEvent(String, String) method in a derived class, if you want your page adapter to handle the postback event, return true
after handling the event.