WebApplicationAdapter.BeforeNavigate 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.
Called by UII whenever the hosted web application navigates to a new page. The application, action, and data arguments can all be modified.
public:
virtual bool BeforeNavigate(System::String ^ % app, System::String ^ % action, System::String ^ % data, int % flags, System::String ^ % headers, System::String ^ % url, System::Object ^ % postData);
public virtual bool BeforeNavigate (ref string app, ref string action, ref string data, ref int flags, ref string headers, ref string url, ref object postData);
abstract member BeforeNavigate : string * string * string * int * string * string * obj -> bool
override this.BeforeNavigate : string * string * string * int * string * string * obj -> bool
Public Overridable Function BeforeNavigate (ByRef app As String, ByRef action As String, ByRef data As String, ByRef flags As Integer, ByRef headers As String, ByRef url As String, ByRef postData As Object) As Boolean
Parameters
- app
- String
Specifies the application.
- action
- String
Specifies the action to be performed.
- data
- String
Specifies the data to be used with the action.
- flags
- Int32
Specifies the flags.
- headers
- String
Specifies the header.
- url
- String
Specifies the URL.
- postData
- Object
Specifies the post data.
Returns
true to accept the navigation; otherwise, false
.