Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / SiteMapSection.cs / 1 / 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; /**/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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. //------------------------------------------------------------------------------ // // 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; /**/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- XmlSerializerAssemblyAttribute.cs
- Scheduler.cs
- _SingleItemRequestCache.cs
- dataprotectionpermission.cs
- HotSpot.cs
- EDesignUtil.cs
- SafePEFileHandle.cs
- TableLayoutRowStyleCollection.cs
- MulticastDelegate.cs
- PermissionSetEnumerator.cs
- LinkGrep.cs
- DataGridViewControlCollection.cs
- BuiltInExpr.cs
- XmlCharCheckingReader.cs
- Tuple.cs
- AsyncPostBackErrorEventArgs.cs
- APCustomTypeDescriptor.cs
- CallContext.cs
- TextRangeEditLists.cs
- ByteStack.cs
- HashCodeCombiner.cs
- ToolStripStatusLabel.cs
- ColorTransformHelper.cs
- AncillaryOps.cs
- InvalidOperationException.cs
- SmiEventSink_Default.cs
- MobileTextWriter.cs
- ExpressionBuilderCollection.cs
- RadialGradientBrush.cs
- ObjectKeyFrameCollection.cs
- PathFigureCollection.cs
- IItemProperties.cs
- EncoderReplacementFallback.cs
- ServicePointManager.cs
- WizardStepBase.cs
- CredentialCache.cs
- DataSourceCache.cs
- FixedHyperLink.cs
- CompiledQuery.cs
- FontCacheUtil.cs
- Error.cs
- ApplicationId.cs
- AutoScrollExpandMessageFilter.cs
- ServicePointManager.cs
- MessageBodyDescription.cs
- JournalNavigationScope.cs
- GraphicsState.cs
- FieldAccessException.cs
- ImageMapEventArgs.cs
- TypeForwardedToAttribute.cs
- TextContainer.cs
- ConfigUtil.cs
- DetailsViewModeEventArgs.cs
- PartialCachingAttribute.cs
- XmlDocumentFragment.cs
- UserCancellationException.cs
- Italic.cs
- TabRenderer.cs
- SingleConverter.cs
- DiffuseMaterial.cs
- SQLGuid.cs
- VisualStyleTypesAndProperties.cs
- ListBindableAttribute.cs
- CodeAttributeDeclaration.cs
- MenuItemStyle.cs
- TextCompositionManager.cs
- InvalidOleVariantTypeException.cs
- TagNameToTypeMapper.cs
- SoapSchemaImporter.cs
- dataSvcMapFileLoader.cs
- GPPOINT.cs
- COM2IProvidePropertyBuilderHandler.cs
- _BasicClient.cs
- Line.cs
- DeflateStream.cs
- TableRowCollection.cs
- DynamicResourceExtension.cs
- PublisherMembershipCondition.cs
- DelegatingConfigHost.cs
- EmptyElement.cs
- WindowsRichEdit.cs
- RegexCaptureCollection.cs
- DataSourceCache.cs
- Regex.cs
- Expression.cs
- ViewBox.cs
- MouseActionConverter.cs
- ApplicationInfo.cs
- LoginName.cs
- SimpleWebHandlerParser.cs
- WebPartConnection.cs
- DocComment.cs
- FormDocumentDesigner.cs
- EntitySqlQueryBuilder.cs
- ConsumerConnectionPointCollection.cs
- ServiceOperationListItem.cs
- WebBrowserHelper.cs
- CustomCredentialPolicy.cs
- ThemeDictionaryExtension.cs
- SelectionWordBreaker.cs