SiteMapNode.Item[String] Property

Definition

Gets or sets a custom attribute from the Attributes collection or a resource string based on the specified key.

C#
public virtual string this[string key] { get; set; }

Parameters

key
String

A string that identifies the attribute or resource string to retrieve.

Property Value

A custom attribute or resource string identified by key; otherwise, null.

Exceptions

The node is read-only.

Remarks

The Item[] property is an indexer that first determines whether the provider that tracks the SiteMapNode object supports localization. If so, the Item[] calls the

GetImplicitResourceString method, passing the key parameter. If no localized text is returned, the Item[] calls the

GetExplicitResourceString method.

If no localized text is returned, or if the provider does not support localization, the Item[] attempts to return an element from the Attributes collection, using the specified key.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also