Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / SiteMapSection.cs / 1305376 / SiteMapSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.Security.Permissions; /**/ public sealed class SiteMapSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propDefaultProvider = new ConfigurationProperty("defaultProvider", typeof(string), "AspNetXmlSiteMapProvider", null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propEnabled = new ConfigurationProperty("enabled", typeof(bool), true, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propProviders = new ConfigurationProperty("providers", typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.None); private SiteMapProviderCollection _siteMapProviders; static SiteMapSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propDefaultProvider); _properties.Add(_propEnabled); _properties.Add(_propProviders); } public SiteMapSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("defaultProvider", DefaultValue = "AspNetXmlSiteMapProvider")] [StringValidator(MinLength = 1)] public string DefaultProvider { get { return (string)base[_propDefaultProvider]; } set { base[_propDefaultProvider] = value; } } [ConfigurationProperty("enabled", DefaultValue = true)] public bool Enabled { get { return (bool)base[_propEnabled]; } set { base[_propEnabled] = value; } } [ConfigurationProperty("providers")] public ProviderSettingsCollection Providers { get { return (ProviderSettingsCollection)base[_propProviders]; } } internal SiteMapProviderCollection ProvidersInternal { get { if (_siteMapProviders == null) { lock (this) { if (_siteMapProviders == null) { SiteMapProviderCollection siteMapProviders = new SiteMapProviderCollection(); ProvidersHelper.InstantiateProviders(Providers, siteMapProviders, typeof(SiteMapProvider)); _siteMapProviders = siteMapProviders; } } } return _siteMapProviders; } } internal void ValidateDefaultProvider() { if (!String.IsNullOrEmpty(DefaultProvider)) // make sure the specified provider has a provider entry in the collection { if (Providers[DefaultProvider] == null) { throw new ConfigurationErrorsException( SR.GetString(SR.Config_provider_must_exist, DefaultProvider), ElementInformation.Properties[_propDefaultProvider.Name].Source, ElementInformation.Properties[_propDefaultProvider.Name].LineNumber); } } } } // class SiteMapSection } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Scene3D.cs
- ErrorWebPart.cs
- GatewayIPAddressInformationCollection.cs
- NumberFormatInfo.cs
- AutomationProperties.cs
- GlobalItem.cs
- ResourceSetExpression.cs
- DetailsViewModeEventArgs.cs
- LogFlushAsyncResult.cs
- Int16.cs
- FormsAuthenticationUserCollection.cs
- MultiPartWriter.cs
- OpacityConverter.cs
- DynamicMetaObjectBinder.cs
- TraceContextEventArgs.cs
- ViewDesigner.cs
- MetadataItem_Static.cs
- SoapEnvelopeProcessingElement.cs
- ImageSource.cs
- Dynamic.cs
- UnmanagedMarshal.cs
- TreeNode.cs
- PropertyCollection.cs
- CharEnumerator.cs
- QilLoop.cs
- XamlFigureLengthSerializer.cs
- SystemUdpStatistics.cs
- WebHttpElement.cs
- ColorAnimationBase.cs
- DetailsViewPagerRow.cs
- LinkedResourceCollection.cs
- TraceSwitch.cs
- util.cs
- MappingMetadataHelper.cs
- ListViewItem.cs
- Select.cs
- Empty.cs
- RepeaterCommandEventArgs.cs
- PtsHost.cs
- Overlapped.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- GlobalEventManager.cs
- RuntimeConfigLKG.cs
- Substitution.cs
- ActiveXHelper.cs
- Quaternion.cs
- XmlIncludeAttribute.cs
- ToolStripContentPanel.cs
- XPathCompileException.cs
- ViewStateChangedEventArgs.cs
- ProfileInfo.cs
- FileInfo.cs
- CustomTypeDescriptor.cs
- PenLineJoinValidation.cs
- BoundConstants.cs
- DeclaredTypeElementCollection.cs
- InvokeWebService.cs
- TypeBrowser.xaml.cs
- UntypedNullExpression.cs
- IdentityHolder.cs
- ButtonAutomationPeer.cs
- SafeSecurityHelper.cs
- AsymmetricSignatureDeformatter.cs
- LogicalExpressionEditor.cs
- TreeNodeConverter.cs
- GlyphRun.cs
- RegionIterator.cs
- DataChangedEventManager.cs
- ImportCatalogPart.cs
- PhoneCallDesigner.cs
- RoutedEvent.cs
- KeyedCollection.cs
- UDPClient.cs
- IList.cs
- DatatypeImplementation.cs
- EventManager.cs
- _AcceptOverlappedAsyncResult.cs
- BinaryObjectInfo.cs
- SystemPens.cs
- ISCIIEncoding.cs
- ClientBuildManager.cs
- RegexRunner.cs
- Thread.cs
- _Events.cs
- MenuScrollingVisibilityConverter.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- TextTreeTextElementNode.cs
- TimeSpanMinutesConverter.cs
- GridViewRowCollection.cs
- SchemaType.cs
- AmbientLight.cs
- TypeConverterHelper.cs
- WebPartDisplayModeCollection.cs
- UnSafeCharBuffer.cs
- ActiveXSite.cs
- MinMaxParagraphWidth.cs
- DelimitedListTraceListener.cs
- InputBinder.cs
- GenerateTemporaryAssemblyTask.cs
- SafeRightsManagementPubHandle.cs