Click or drag to resize

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
)

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