Causes a Redirect to the specified page.


Namespace: NetQuarry
Assembly: EAP.Core (in EAP.Core.dll)

Syntax

Visual Basic (Declaration)
Public Sub Navigate( _ 
   ByVal mop As String,  _ 
   ByVal primaryKey As String,  _ 
   ByVal queryStringParams As String,  _ 
   ByVal requestType As String,  _ 
   ByVal attrs As NavigateAttrs,  _ 
   ByVal paramList As String _ 
) _
    Implements IAppContext.Navigate
C#
public void Navigate(
   string mop,
   string primaryKey,
   string queryStringParams,
   string requestType,
   NavigateAttrs attrs,
   string paramList
)
C++
public:
 void Navigate(
   String mop,
   String primaryKey,
   String queryStringParams,
   String requestType,
   NavigateAttrs attrs,
   String paramList
) sealed 
J#
public void Navigate(
   string mop,
   string primaryKey,
   string queryStringParams,
   string requestType,
   NavigateAttrs attrs,
   string paramList
)
JScript
public  function Navigate(
   mop : String,
   primaryKey : String,
   queryStringParams : String,
   requestType : String,
   attrs : NavigateAttrs,
   paramList : String
)

Parameters

mop
The MOP for the page.
primaryKey
The primary key value for the request
queryStringParams
Additional QueryString (GET) parameters.
requestType
The type of the request (by default this is "nav."
attrs
NavigateAttrs for the navigation request"
paramList
A semi-colon separated list of param names to take from the current query string to add to the navigation querystring.

Implements

IAppContext.Navigate

See Also