Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / SiteMapSection.cs / 3 / 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. //------------------------------------------------------------------------------ // // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RightsManagementLicense.cs
- QueueProcessor.cs
- MimeXmlImporter.cs
- WeakHashtable.cs
- FaultException.cs
- ResXBuildProvider.cs
- Geometry.cs
- MailWriter.cs
- Comparer.cs
- Delay.cs
- And.cs
- MimeBasePart.cs
- InvalidEnumArgumentException.cs
- SHA1Managed.cs
- NetSectionGroup.cs
- XmlChoiceIdentifierAttribute.cs
- ModuleBuilderData.cs
- DataServiceQueryProvider.cs
- Header.cs
- AnnotationStore.cs
- ConnectionStringsSection.cs
- OleDbSchemaGuid.cs
- ColumnBinding.cs
- SQLString.cs
- ThicknessConverter.cs
- DataServiceQueryException.cs
- SqlAggregateChecker.cs
- XmlDictionaryWriter.cs
- LambdaCompiler.Expressions.cs
- SmtpNtlmAuthenticationModule.cs
- XsdDateTime.cs
- TextRunCacheImp.cs
- ParserStreamGeometryContext.cs
- AuthenticationService.cs
- Html32TextWriter.cs
- MultipleViewProviderWrapper.cs
- Evidence.cs
- _ChunkParse.cs
- HwndMouseInputProvider.cs
- ImageMap.cs
- TextBox.cs
- SHA512.cs
- TextServicesDisplayAttribute.cs
- UserNamePasswordValidator.cs
- WorkflowOperationContext.cs
- Int16Converter.cs
- DataGridViewTextBoxEditingControl.cs
- ParameterCollection.cs
- ThreadAttributes.cs
- EntityCollection.cs
- State.cs
- IntSecurity.cs
- FrameworkPropertyMetadata.cs
- AdjustableArrowCap.cs
- SessionPageStatePersister.cs
- ListBoxItemAutomationPeer.cs
- DataGridViewColumnStateChangedEventArgs.cs
- TreeNodeBindingCollection.cs
- SplitterEvent.cs
- FusionWrap.cs
- SemanticAnalyzer.cs
- BitmapData.cs
- PropertyGeneratedEventArgs.cs
- MetadataHelper.cs
- SortDescription.cs
- ListBindingConverter.cs
- GB18030Encoding.cs
- TemplateControl.cs
- SapiAttributeParser.cs
- VirtualPath.cs
- GridViewPageEventArgs.cs
- BaseHashHelper.cs
- ProofTokenCryptoHandle.cs
- CountdownEvent.cs
- LocalBuilder.cs
- Page.cs
- Faults.cs
- FixedPageProcessor.cs
- EventWaitHandleSecurity.cs
- SpellerHighlightLayer.cs
- HighContrastHelper.cs
- NumericPagerField.cs
- PropertyEmitter.cs
- StringFreezingAttribute.cs
- WinEventHandler.cs
- PrintingPermission.cs
- TrimSurroundingWhitespaceAttribute.cs
- dtdvalidator.cs
- MenuCommand.cs
- BrushMappingModeValidation.cs
- LineVisual.cs
- FontEmbeddingManager.cs
- Char.cs
- SQLGuidStorage.cs
- TableColumn.cs
- PointHitTestResult.cs
- ObjectPropertyMapping.cs
- _NegoStream.cs
- EventMappingSettingsCollection.cs
- BezierSegment.cs