IWizardTemplateNavigate Method |
This method may be called to perform programmatic navigation from a wizard extension.
Typically the wizard is allowed to perform its normal cancel or finish navigation per its
CancelTarget or
FinishTarget, respectively.
However, when programmatic navigation is required this method allows navigation to the same targets
as would otherwise occur. Manual construction of the
FinishTarget, in particular, can be complicated
and this method takes advantage of the wizard's built-in
FinishTarget construction. In addition,
for cases in which the wizard may, or may not, be hosted in a popup, this method can be used to behave accordingly.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax void Navigate(
WizNavigations destination,
bool closeIfPopup = true,
string queryStringParams = null
)
Sub Navigate (
destination As WizNavigations,
Optional closeIfPopup As Boolean = true,
Optional queryStringParams As String = Nothing
)
Parameters
- destination
- Type: NetQuarryWizNavigations
The navigation destination. - closeIfPopup (Optional)
- Type: SystemBoolean
Specifies whether to close the wizard if in a popup, default true. - queryStringParams (Optional)
- Type: SystemString
Additional query string parameters to add/replace those in generated url.
See Also