SiteMapSection.Enabled 属性

定义

获取或设置一个值,该值指示是否启用 ASP.NET 站点地图功能。

public:
 property bool Enabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)]
public bool Enabled { get; set; }
[<System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)>]
member this.Enabled : bool with get, set
Public Property Enabled As Boolean

属性值

Boolean

如果启用了 ASP.NET 站点地图功能,则为 true;否则为 false。 默认值为 true

属性

示例

下面的代码示例演示如何使用 Enabled 该属性。 此代码示例是为类提供的大型示例的 SiteMapSection 一部分。

// Display Enabled value.
Console.WriteLine("Enabled: {0}", configSection.Enabled);
' Display Enabled value.
Console.WriteLine("Enabled: {0}", configSection.Enabled)

注解

Enabled属性返回一个布尔值,该值指示在运行时是否可以访问 ASP.NET 导航功能。

适用于