SiteMapNode.Roles Property
.NET Framework 3.0
Gets or sets a collection of roles that are associated with the SiteMapNode object, used during security trimming.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public IList get_Roles () /** @property */ public void set_Roles (IList value)
public function get Roles () : IList public function set Roles (value : IList)
Not applicable.
Property Value
An IList of roles.If security trimming is enabled, a site map provider builds a node tree of nodes that the current user is able to view, based in part on whether the current user's assigned role is included in the Roles collection. URL authorization and file authorization are also used to determine whether a user has the rights to access a SiteMapNode object. For more information on authorization, see ASP.NET Authorization.
You can use the SiteMapNode constructor to supply a list of roles to the SiteMapNode object when it is first created.
Community Additions
ADD
Show: