IPageAdapter.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.
Returns true
if it handles the exception. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
bool HandlePagePostBackEvent(System::String ^ eventSource, System::String ^ eventArgument);
public bool HandlePagePostBackEvent (string eventSource, string eventArgument);
abstract member HandlePagePostBackEvent : string * string -> bool
Public Function HandlePagePostBackEvent (eventSource As String, eventArgument As String) As Boolean
Parameters
- eventSource
- String
Source identifier for the event.
- eventArgument
- String
Name of the event.
Returns
true
if the page adapter handles the exception; otherwise, false
.
Remarks
Called during postback. Allows a page adapter to handle a postback event by itself.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.