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 / NamespaceCollection.cs / 1 / NamespaceCollection.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.Web.Util;
    using System.Web.UI; 
    using System.Web.Compilation; 
    using System.Threading;
    using System.Web.Configuration; 
    using System.Security.Permissions;
    // class PagesSection
 
    [ConfigurationCollection(typeof(NamespaceInfo))]
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    public sealed class NamespaceCollection : ConfigurationElementCollection { 
        private static ConfigurationPropertyCollection _properties;
        private static readonly ConfigurationProperty _propAutoImportVBNamespace = 
            new ConfigurationProperty("autoImportVBNamespace", typeof(bool), true, ConfigurationPropertyOptions.None);
        private Hashtable _namespaceEntries;
 
        static NamespaceCollection() {
            // Property initialization 
            _properties = new ConfigurationPropertyCollection(); 
            _properties.Add(_propAutoImportVBNamespace);
        } 
        protected override ConfigurationPropertyCollection Properties {
            get {
                return _properties; 
            }
        } 
 
        [ConfigurationProperty("autoImportVBNamespace", DefaultValue = true)]
        public bool AutoImportVBNamespace { 
            get {
                return (bool)base[_propAutoImportVBNamespace];
            }
            set { 
                base[_propAutoImportVBNamespace] = value;
            } 
        } 
        public NamespaceInfo this[int index] { 
            get {
                return (NamespaceInfo)BaseGet(index);
            }
            set { 
                if (BaseGet(index) != null)
                    BaseRemoveAt(index); 
                BaseAdd(index, value); 
                _namespaceEntries = null;
            } 
        }
        public void Add(NamespaceInfo namespaceInformation) {
            BaseAdd(namespaceInformation);
            _namespaceEntries = null; 
        }
        public void Remove(String s) { 
            BaseRemove(s); 
            _namespaceEntries = null;
        } 
        public void RemoveAt(int index) {
            BaseRemoveAt(index);
            _namespaceEntries = null; 
        }
        protected override ConfigurationElement CreateNewElement() { 
            return new NamespaceInfo(); 
        }
        protected override Object GetElementKey(ConfigurationElement element) { 
            return ((NamespaceInfo)element).Namespace;
        }
        public void Clear() { 
            BaseClear();
            _namespaceEntries = null; 
        } 
        internal Hashtable NamespaceEntries { 
            get {
                if (_namespaceEntries == null) {
                    lock (this) {
                        if (_namespaceEntries == null) { 
                            _namespaceEntries = new Hashtable(StringComparer.OrdinalIgnoreCase);
 
                            foreach (NamespaceInfo ni in this) { 
                                NamespaceEntry namespaceEntry = new NamespaceEntry();
                                namespaceEntry.Namespace = ni.Namespace; 
                                // Remember the config file location info, in case an error
                                // occurs later when we use this data
                                namespaceEntry.Line = ni.ElementInformation.Properties["namespace"].LineNumber; 
                                // 
                                namespaceEntry.VirtualPath = ni.ElementInformation.Properties["namespace"].Source; 
                                // If the namespace was given Programactically it needs to still have a
                                // valid line number of the compiler chokes (1 based). 
                                if (namespaceEntry.Line == 0) {
                                    namespaceEntry.Line = 1;
                                }
                                _namespaceEntries[ni.Namespace] = namespaceEntry; 
                            }
                        } 
                    } 
                }
                return _namespaceEntries; 
            }
        }
    }
} 
// 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.Web.Util;
    using System.Web.UI; 
    using System.Web.Compilation; 
    using System.Threading;
    using System.Web.Configuration; 
    using System.Security.Permissions;
    // class PagesSection
 
    [ConfigurationCollection(typeof(NamespaceInfo))]
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    public sealed class NamespaceCollection : ConfigurationElementCollection { 
        private static ConfigurationPropertyCollection _properties;
        private static readonly ConfigurationProperty _propAutoImportVBNamespace = 
            new ConfigurationProperty("autoImportVBNamespace", typeof(bool), true, ConfigurationPropertyOptions.None);
        private Hashtable _namespaceEntries;
 
        static NamespaceCollection() {
            // Property initialization 
            _properties = new ConfigurationPropertyCollection(); 
            _properties.Add(_propAutoImportVBNamespace);
        } 
        protected override ConfigurationPropertyCollection Properties {
            get {
                return _properties; 
            }
        } 
 
        [ConfigurationProperty("autoImportVBNamespace", DefaultValue = true)]
        public bool AutoImportVBNamespace { 
            get {
                return (bool)base[_propAutoImportVBNamespace];
            }
            set { 
                base[_propAutoImportVBNamespace] = value;
            } 
        } 
        public NamespaceInfo this[int index] { 
            get {
                return (NamespaceInfo)BaseGet(index);
            }
            set { 
                if (BaseGet(index) != null)
                    BaseRemoveAt(index); 
                BaseAdd(index, value); 
                _namespaceEntries = null;
            } 
        }
        public void Add(NamespaceInfo namespaceInformation) {
            BaseAdd(namespaceInformation);
            _namespaceEntries = null; 
        }
        public void Remove(String s) { 
            BaseRemove(s); 
            _namespaceEntries = null;
        } 
        public void RemoveAt(int index) {
            BaseRemoveAt(index);
            _namespaceEntries = null; 
        }
        protected override ConfigurationElement CreateNewElement() { 
            return new NamespaceInfo(); 
        }
        protected override Object GetElementKey(ConfigurationElement element) { 
            return ((NamespaceInfo)element).Namespace;
        }
        public void Clear() { 
            BaseClear();
            _namespaceEntries = null; 
        } 
        internal Hashtable NamespaceEntries { 
            get {
                if (_namespaceEntries == null) {
                    lock (this) {
                        if (_namespaceEntries == null) { 
                            _namespaceEntries = new Hashtable(StringComparer.OrdinalIgnoreCase);
 
                            foreach (NamespaceInfo ni in this) { 
                                NamespaceEntry namespaceEntry = new NamespaceEntry();
                                namespaceEntry.Namespace = ni.Namespace; 
                                // Remember the config file location info, in case an error
                                // occurs later when we use this data
                                namespaceEntry.Line = ni.ElementInformation.Properties["namespace"].LineNumber; 
                                // 
                                namespaceEntry.VirtualPath = ni.ElementInformation.Properties["namespace"].Source; 
                                // If the namespace was given Programactically it needs to still have a
                                // valid line number of the compiler chokes (1 based). 
                                if (namespaceEntry.Line == 0) {
                                    namespaceEntry.Line = 1;
                                }
                                _namespaceEntries[ni.Namespace] = namespaceEntry; 
                            }
                        } 
                    } 
                }
                return _namespaceEntries; 
            }
        }
    }
} 
// 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
- EntityConnection.cs
- DataBoundControlAdapter.cs
- UriPrefixTable.cs
- WebPartDisplayModeCancelEventArgs.cs
- ApplicationException.cs
- ControlCodeDomSerializer.cs
- UnsafeNativeMethods.cs
- SqlDataSourceEnumerator.cs
- PtsPage.cs
- EntityDataReader.cs
- SettingsContext.cs
- WebBrowser.cs
- ReadingWritingEntityEventArgs.cs
- SafeLocalMemHandle.cs
- NamespaceInfo.cs
- BindToObject.cs
- Win32MouseDevice.cs
- ServicesUtilities.cs
- PriorityQueue.cs
- Dictionary.cs
- LabelLiteral.cs
- MatchAttribute.cs
- AuthorizationRuleCollection.cs
- ReadContentAsBinaryHelper.cs
- UserControlAutomationPeer.cs
- FrameworkEventSource.cs
- XmlSerializationReader.cs
- InputLangChangeEvent.cs
- ReachFixedPageSerializer.cs
- XmlReturnReader.cs
- DataBoundLiteralControl.cs
- HostedNamedPipeTransportManager.cs
- QueryStatement.cs
- UrlRoutingHandler.cs
- EntityDataSourceDesignerHelper.cs
- GifBitmapDecoder.cs
- XhtmlBasicValidationSummaryAdapter.cs
- SocketAddress.cs
- CatalogPartChrome.cs
- EmptyStringExpandableObjectConverter.cs
- CoreSwitches.cs
- Binding.cs
- OutOfMemoryException.cs
- PersonalizationState.cs
- ModelItemDictionaryImpl.cs
- SafeNativeMethods.cs
- PolicyChain.cs
- ApplicationContext.cs
- TypefaceMetricsCache.cs
- UiaCoreProviderApi.cs
- UnicastIPAddressInformationCollection.cs
- HeaderUtility.cs
- File.cs
- AvTraceDetails.cs
- CopyEncoder.cs
- NonSerializedAttribute.cs
- EmptyEnumerator.cs
- ConfigXmlReader.cs
- FormsAuthenticationConfiguration.cs
- DataBoundLiteralControl.cs
- DivideByZeroException.cs
- MergeLocalizationDirectives.cs
- DiscoveryService.cs
- COM2ColorConverter.cs
- TransactionInformation.cs
- StaticExtensionConverter.cs
- AlternateView.cs
- UInt16Converter.cs
- DataGridViewCellMouseEventArgs.cs
- InvokeBinder.cs
- ReliableSessionBindingElementImporter.cs
- PropertyToken.cs
- WebServiceData.cs
- PackageDigitalSignature.cs
- ToolStripItemGlyph.cs
- DataProviderNameConverter.cs
- EnumUnknown.cs
- WindowAutomationPeer.cs
- Executor.cs
- PrintPageEvent.cs
- MsmqInputMessage.cs
- COM2IDispatchConverter.cs
- MasterPageCodeDomTreeGenerator.cs
- PersistenceMetadataNamespace.cs
- DocumentCollection.cs
- DecoderBestFitFallback.cs
- AutomationPropertyInfo.cs
- KnownIds.cs
- SendMessageChannelCache.cs
- Dispatcher.cs
- CommittableTransaction.cs
- UIElement3D.cs
- ViewDesigner.cs
- XmlDomTextWriter.cs
- ProjectionAnalyzer.cs
- ConfigXmlElement.cs
- SafeNativeMethods.cs
- ProcessingInstructionAction.cs
- FileSystemWatcher.cs
- FixedDocumentPaginator.cs