Table of Contents

Class NavigationContext

Namespace
Dynamicweb.Frontend.Navigation
Assembly
Dynamicweb.dll
Provides information about the context for which a navigation is to be rendered.
public class NavigationContext
Inheritance
NavigationContext
Inherited Members

Properties

AreaId

Gets or sets the id of an area (website)
public int AreaId { get; set; }

Property Value

int

DeviceType

Gets or sets the device type
public DeviceType DeviceType { get; set; }

Property Value

DeviceType

PageId

Gets or sets the id of a page
public int PageId { get; set; }

Property Value

int

Path

Gets or sets a collection of node identifiers from the root node to the active node
public IList<string> Path { get; set; }

Property Value

IList<string>

QueryString

Gets or sets the query string
public NameValueCollection QueryString { get; set; }

Property Value

NameValueCollection

UserId

Gets or sets the id of a user
public int UserId { get; set; }

Property Value

int
To top