remove Element for providers for siteMap (ASP.NET Settings Schema)
Removes a provider from the collection of navigation providers.
This element is new in the .NET Framework version 2.0.
<configuration> Element
system.web Element (ASP.NET Settings Schema)
siteMap Element (ASP.NET Settings Schema)
remove Element for providers for siteMap (ASP.NET Settings Schema)
<remove name="provider name"/>
Attributes and Elements
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute |
Description |
---|---|
name |
Required String attribute. Specifies the name of the provider to remove. |
Child Elements
None.
Parent Elements
Element |
Description |
---|---|
configuration |
Specifies the required root element in every configuration file that is used by the common language runtime and the .NET Framework applications. |
system.web |
Specifies the root element for the ASP.NET configuration section. |
siteMap |
Defines configuration settings to support the navigation infrastructure for configuring, storing, and rendering site navigation. |
providers |
Defines a collection of navigation providers. |
Example
The following code example demonstrates how to remove a navigation provider.
<configuration>
<system.web>
<siteMap>
<providers>
<remove name="provider name"/>
</providers>
<siteMap>
</system.web>
</configuration>
Element Information
Configuration section handler |
|
Configuration member |
|
Configurable locations |
Machine.config Root-level Web.config Application-level Web.config |
Requirements |
Microsoft Internet Information Services (IIS) version 5.0, 5.1, or 6.0 The .NET Framework version 2.0 Microsoft Visual Studio 2005 |
See Also
Tasks
How to: Lock ASP.NET Configuration Settings
Concepts
ASP.NET Configuration Overview
ASP.NET Web Server Controls and Browser Capabilities
Securing ASP.NET Configuration
ASP.NET Configuration Scenarios
Reference
siteMap Element (ASP.NET Settings Schema)
system.web Element (ASP.NET Settings Schema)
add Element for providers for siteMap (ASP.NET Settings Schema)
clear Element for providers for siteMap (ASP.NET Settings Schema)
Other Resources
ASP.NET Configuration Settings