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
- FormCollection.cs
- CapabilitiesAssignment.cs
- DateTimeConverter.cs
- SqlFacetAttribute.cs
- SynchronizedMessageSource.cs
- DataPagerFieldCommandEventArgs.cs
- DataSvcMapFileSerializer.cs
- PolicyConversionContext.cs
- InternalBufferOverflowException.cs
- StylusButtonEventArgs.cs
- DbParameterCollection.cs
- SimpleBitVector32.cs
- CommonGetThemePartSize.cs
- CompositeControl.cs
- ViewStateModeByIdAttribute.cs
- WinFormsUtils.cs
- UnlockCardRequest.cs
- QuaternionAnimation.cs
- MaskedTextBox.cs
- Bits.cs
- ContextQuery.cs
- ZoomPercentageConverter.cs
- NodeInfo.cs
- PathStreamGeometryContext.cs
- WebCategoryAttribute.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- ClientRoleProvider.cs
- Timer.cs
- TouchEventArgs.cs
- HiddenFieldPageStatePersister.cs
- FormParameter.cs
- DataSourceHelper.cs
- PenThreadWorker.cs
- DataGridItemEventArgs.cs
- XmlSchema.cs
- XmlParserContext.cs
- BlurBitmapEffect.cs
- LineServices.cs
- BuildProvider.cs
- SweepDirectionValidation.cs
- KeyboardNavigation.cs
- WebPartManagerInternals.cs
- ChildTable.cs
- HttpProfileGroupBase.cs
- SiblingIterators.cs
- DefaultEvaluationContext.cs
- EntityDataSourceDataSelectionPanel.cs
- CodeAttributeDeclaration.cs
- BamlBinaryReader.cs
- WsiProfilesElement.cs
- XsltCompileContext.cs
- TextEndOfParagraph.cs
- LocalBuilder.cs
- RolePrincipal.cs
- ViewStateException.cs
- PasswordBox.cs
- DataContext.cs
- WriteableBitmap.cs
- BookmarkScopeHandle.cs
- COM2IProvidePropertyBuilderHandler.cs
- EntityTransaction.cs
- SelectionProcessor.cs
- GAC.cs
- basevalidator.cs
- NullableFloatSumAggregationOperator.cs
- ColumnBinding.cs
- FilteredXmlReader.cs
- DataGridState.cs
- CommandBinding.cs
- LinqDataSourceView.cs
- HtmlTable.cs
- FactoryGenerator.cs
- XsltLibrary.cs
- SafeWaitHandle.cs
- Vector3DCollectionValueSerializer.cs
- QilChoice.cs
- ClickablePoint.cs
- CodeGenerator.cs
- WorkflowDesigner.cs
- OciLobLocator.cs
- ListDependantCardsRequest.cs
- versioninfo.cs
- StateInitialization.cs
- CollectionBase.cs
- NullPackagingPolicy.cs
- ConnectionPoint.cs
- WorkflowDataContext.cs
- EntityAdapter.cs
- PeerObject.cs
- XmlSerializationReader.cs
- DiscoveryProxy.cs
- basecomparevalidator.cs
- MD5CryptoServiceProvider.cs
- HttpCookieCollection.cs
- ScriptIgnoreAttribute.cs
- InternalConfigSettingsFactory.cs
- WebPartsPersonalizationAuthorization.cs
- TransportOutputChannel.cs
- LinearGradientBrush.cs
- SpecularMaterial.cs