Skip to main content
Tab

UnboundSiteMapNode(SiteMapProvider, String, String, String, String, IList, NameValueCollection, NameValueCollection, String) Constructor

Initializes a new instance of the UnboundSiteMapNode class with the specified settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public UnboundSiteMapNode(
    SiteMapProvider provider,
    string key,
    string url,
    string title,
    string description,
    IList roles,
    NameValueCollection attributes,
    NameValueCollection explicitResourceKeys,
    string implicitResourceKey
)

Parameters

Name Type Description
provider SiteMapProvider

The site map provider that manages the node.

key String

A provider-specific lookup key.

url String

The URL of the page that the node represents within the site.

title String

A label for the node, often displayed by navigation controls.

description String

A description of the page that the node represents.

roles IList

A IList of roles that are allowed to view the page represented by the SiteMapNode.

attributes NameValueCollection

A NameValueCollection of additional attributes used to initialize the SiteMapNode.

explicitResourceKeys NameValueCollection

A NameValueCollection of explicit resource keys used for localization.

implicitResourceKey String

An implicit resource key used for localization.

Remarks

This constructor can be used to create a new UnboundSiteMapNode class instance and initialize it with the settings passed via the parameters.

See Also