Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ZipIOCentralDirectoryFileHeader.cs
- XmlTypeMapping.cs
- XmlQueryTypeFactory.cs
- ConfigurationStrings.cs
- CqlParser.cs
- VisualStyleElement.cs
- ResXBuildProvider.cs
- ItemContainerGenerator.cs
- MergePropertyDescriptor.cs
- ScriptComponentDescriptor.cs
- XamlLoadErrorInfo.cs
- BitmapPalettes.cs
- DesignBindingValueUIHandler.cs
- GradientStop.cs
- COAUTHIDENTITY.cs
- PasswordTextNavigator.cs
- GradientSpreadMethodValidation.cs
- TableLayoutRowStyleCollection.cs
- BaseDataBoundControl.cs
- PreviewPageInfo.cs
- ResourceDescriptionAttribute.cs
- PropertyGridCommands.cs
- SessionViewState.cs
- AsyncMethodInvoker.cs
- ServiceActivationException.cs
- TypographyProperties.cs
- RadialGradientBrush.cs
- ToolStripContentPanelRenderEventArgs.cs
- CardSpaceShim.cs
- Expressions.cs
- TextModifier.cs
- Quaternion.cs
- SqlBooleanizer.cs
- InstalledVoice.cs
- UInt32Converter.cs
- Types.cs
- Material.cs
- XNodeNavigator.cs
- AuthenticationException.cs
- KeyPressEvent.cs
- XmlEncoding.cs
- PermissionSetTriple.cs
- ConfigXmlCDataSection.cs
- StylusPointProperties.cs
- counter.cs
- PropertyMappingExceptionEventArgs.cs
- ExceptionRoutedEventArgs.cs
- GlyphInfoList.cs
- EFColumnProvider.cs
- HelloMessageCD1.cs
- EntityObject.cs
- TableColumn.cs
- HttpContext.cs
- Scene3D.cs
- LongTypeConverter.cs
- RelativeSource.cs
- MessageContractMemberAttribute.cs
- ServiceNameElement.cs
- ExceptQueryOperator.cs
- MessageLoggingElement.cs
- ValueUnavailableException.cs
- Italic.cs
- ExtentJoinTreeNode.cs
- WriteTimeStream.cs
- WebPartDeleteVerb.cs
- FormsAuthenticationConfiguration.cs
- HatchBrush.cs
- SqlReorderer.cs
- PreloadedPackages.cs
- HttpFormatExtensions.cs
- CrossSiteScriptingValidation.cs
- GPPOINTF.cs
- ADConnectionHelper.cs
- SqlDependencyUtils.cs
- SmtpException.cs
- RemotingHelper.cs
- RightsManagementEncryptionTransform.cs
- DetailsViewModeEventArgs.cs
- WaitHandleCannotBeOpenedException.cs
- ObjectViewFactory.cs
- remotingproxy.cs
- GridViewColumn.cs
- StylusPointPropertyId.cs
- ExpressionBuilder.cs
- InfoCardBinaryReader.cs
- HostedController.cs
- EmptyControlCollection.cs
- LoginCancelEventArgs.cs
- CustomErrorCollection.cs
- DiscreteKeyFrames.cs
- BaseDataBoundControlDesigner.cs
- MetadataItemCollectionFactory.cs
- ConnectorDragDropGlyph.cs
- Converter.cs
- BitmapEffectInputConnector.cs
- ListViewGroup.cs
- ClientRolePrincipal.cs
- AssemblyCacheEntry.cs
- Qualifier.cs
- EntityDataSourceViewSchema.cs