Table of Contents

Interface INavigator

Namespace
Dynamicweb.Core.UI
Assembly
Dynamicweb.Core.UI.dll
The interface INavigator defines basic navigator model.
public interface INavigator

Methods

GetActions(string, IDictionary<string, string>)

Gets the Action collection.
IEnumerable<Action> GetActions(string path, IDictionary<string, string> requestParameters)

Parameters

path string
The note path.
requestParameters IDictionary<string, string>
The request parameters.

Returns

IEnumerable<Action>

GetNodes(string, IDictionary<string, string>)

Gets the Node collection.
IEnumerable<Node> GetNodes(string path, IDictionary<string, string> requestParameters)

Parameters

path string
The node path.
requestParameters IDictionary<string, string>
The request parameters.

Returns

IEnumerable<Node>
To top