SiteMapNode.ReadOnly Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether the site map node can be modified.
public:
property bool ReadOnly { bool get(); void set(bool value); };
public bool ReadOnly { get; set; }
member this.ReadOnly : bool with get, set
Public Property ReadOnly As Boolean
Property Value
true
if the site map node can be modified; otherwise, false
.
Remarks
A SiteMapNode object is modifiable by default.
Note
All nodes that are returned by the XmlSiteMapProvider are read-only, by default.
The Attributes, ChildNodes, Description, ParentNode, Roles, Title, and Url property mutators check the ReadOnly property before attempting to modify the property of a site map node. If the node is read-only when a mutator is called, the SiteMapNode object throws an InvalidOperationException exception.