Method | Description | |
---|---|---|
CanNavigateTo ( string destination ) : bool |
Determines, whether this navigator or one of its parents can navigate to the destination specified in destination.
|
|
GetResultUri ( string destination, object sender, object context ) : string |
Returns a redirect url string that points to the Spring.Web.Support.Result.TargetPage defined by this result evaluated using this Page for expression
|
|
NavigateTo ( string destination, object sender, object context ) : void |
Redirects user to a URL mapped to specified result name.
|
|
WebFormsResultWebNavigator ( |
Creates a new instance of a IHierarchicalWebNavigator for the specified control.
|
Method | Description | |
---|---|---|
CheckCanNavigate ( string destination, bool includeControlHierarchy ) : bool |
Check, whether this navigator can navigate to the specified destination.
|
|
FindNavigableParent ( |
Finds the next IWebNavigator up the control hierarchy, starting at the specified control. This method checks both, for controls implementing IWebNavigator or IWebNavigable. In addition when MasterPages are used, it interprets the control hierarchy as control->page->masterpage. (WebUtils.GetLogicalParent). |
public CanNavigateTo ( string destination ) : bool | ||
destination | string | the name of the navigation destination |
return | bool |
protected CheckCanNavigate ( string destination, bool includeControlHierarchy ) : bool | ||
destination | string | the destination name to check. |
includeControlHierarchy | bool |
/// whether the check shall include the |
return | bool |
protected static FindNavigableParent ( |
||
control | the control to start the search with. | |
includeSelf | bool | include checking the control itself or start search with its parent. |
restrictToValidNavigatorsOnly | bool | requires |
return | NavigableControlInfo |
public GetResultUri ( string destination, object sender, object context ) : string | ||
destination | string | Name of the result. |
sender | object | the instance that issued this request |
context | object | The context to use for evaluating the SpEL expression in the Result |
return | string |
public NavigateTo ( string destination, object sender, object context ) : void | ||
destination | string | Name of the result. |
sender | object | the instance that issued this request |
context | object | The context to use for evaluating the SpEL expression in the Result. |
return | void |
public WebFormsResultWebNavigator ( |
||
owner | the control to be associated with this navigator. | |
parent | IWebNavigator | the direct parent of this navigator |
initialResults | IDictionary | a dictionary containing results |
ignoreCase | bool | specifies how to handle case for destination names. |
return | System.Collections |