SiteMapNode.Item Property

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)

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).

Exception typeCondition

InvalidOperationException

The node is read-only.

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.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: