SiteMapNode.Item Property
.NET Framework 3.0
Gets or sets a custom attribute from the Attributes collection or a resource string based on the specified key.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property String^ default [String^] { String^ get (String^ key); void set (String^ key, String^ value); }
/** @property */ public String get_Item (String key) /** @property */ public void set_Item (String key, String value)
Not applicable.
Parameters
- key
A string that identifies the attribute or resource string to retrieve.
Property Value
A custom attribute or resource string identified by key; otherwise, a null reference (Nothing in Visual Basic).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.
Community Additions
ADD
Show: