WebApplicationAdapter.BeforeNavigate Method
Called by UII whenever the hosted web application navigates to a new page. The application, action, and data arguments can all be modified.
Namespace: Microsoft.Uii.Csr
Assembly: Microsoft.Uii.Csr.Core (in Microsoft.Uii.Csr.Core.dll)
Usage
'Usage
Dim instance As WebApplicationAdapter
Dim app As String
Dim action As String
Dim data As String
Dim flags As Integer
Dim headers As String
Dim url As String
Dim postData As Object
Dim returnValue As Boolean
returnValue = instance.BeforeNavigate(app, action, data, flags, headers, url, postData)
Syntax
'Declaration
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
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
)
public:
virtual bool BeforeNavigate (
String^% app,
String^% action,
String^% data,
int% flags,
String^% headers,
String^% url,
Object^% postData
)
public boolean BeforeNavigate (
/** @ref */ String app,
/** @ref */ String action,
/** @ref */ String data,
/** @ref */ int flags,
/** @ref */ String headers,
/** @ref */ String url,
/** @ref */ Object postData
)
Parameters
- app
Specifies the application.
- action
Specifies the action to be performed.
- data
Specifies the data to be used with the action.
- flags
Specifies the flags.
- headers
Specifies the header.
- url
Specifies the URL.
- postData
Specifies the post data.
Return Value
Type: Boolean
true to accept the navigation; otherwise, false.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also
Reference
WebApplicationAdapter Class
WebApplicationAdapter Members
Microsoft.Uii.Csr Namespace
Unified Service Desk
Send comments about this topic to Microsoft.
© 2015 Microsoft. All rights reserved.