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 / TagMapCollection.cs / 1 / TagMapCollection.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; [ConfigurationCollection(typeof(TagMapInfo))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TagMapCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; private Hashtable _tagMappings; static TagMapCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } public TagMapCollection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public TagMapInfo this[int index] { get { return (TagMapInfo)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public void Add(TagMapInfo tagMapInformation) { BaseAdd(tagMapInformation); } public void Remove(TagMapInfo tagMapInformation) { BaseRemove(GetElementKey(tagMapInformation)); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new TagMapInfo(); } protected override Object GetElementKey(ConfigurationElement element) { return ((TagMapInfo)element).TagType; } internal Hashtable TagTypeMappingInternal { get { if (_tagMappings == null) { lock (this) { if (_tagMappings == null) { Hashtable tagMappings = new Hashtable(StringComparer.OrdinalIgnoreCase); foreach (TagMapInfo tmi in this) { Type tagType = ConfigUtil.GetType(tmi.TagType, "tagType", tmi); Type mappedTagType = ConfigUtil.GetType(tmi.MappedTagType, "mappedTagType", tmi); if (tagType.IsAssignableFrom(mappedTagType) == false) { throw new ConfigurationErrorsException( SR.GetString( SR.Mapped_type_must_inherit, tmi.MappedTagType, tmi.TagType), tmi.ElementInformation.Properties["mappedTagType"].Source, tmi.ElementInformation.Properties["mappedTagType"].LineNumber); } tagMappings[tagType] = mappedTagType; } _tagMappings = tagMappings; } } } return _tagMappings; } } } } // 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; [ConfigurationCollection(typeof(TagMapInfo))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TagMapCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; private Hashtable _tagMappings; static TagMapCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } public TagMapCollection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public TagMapInfo this[int index] { get { return (TagMapInfo)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public void Add(TagMapInfo tagMapInformation) { BaseAdd(tagMapInformation); } public void Remove(TagMapInfo tagMapInformation) { BaseRemove(GetElementKey(tagMapInformation)); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new TagMapInfo(); } protected override Object GetElementKey(ConfigurationElement element) { return ((TagMapInfo)element).TagType; } internal Hashtable TagTypeMappingInternal { get { if (_tagMappings == null) { lock (this) { if (_tagMappings == null) { Hashtable tagMappings = new Hashtable(StringComparer.OrdinalIgnoreCase); foreach (TagMapInfo tmi in this) { Type tagType = ConfigUtil.GetType(tmi.TagType, "tagType", tmi); Type mappedTagType = ConfigUtil.GetType(tmi.MappedTagType, "mappedTagType", tmi); if (tagType.IsAssignableFrom(mappedTagType) == false) { throw new ConfigurationErrorsException( SR.GetString( SR.Mapped_type_must_inherit, tmi.MappedTagType, tmi.TagType), tmi.ElementInformation.Properties["mappedTagType"].Source, tmi.ElementInformation.Properties["mappedTagType"].LineNumber); } tagMappings[tagType] = mappedTagType; } _tagMappings = tagMappings; } } } return _tagMappings; } } } } // 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
- ArcSegment.cs
- SqlTypeConverter.cs
- PrivilegeNotHeldException.cs
- IdleTimeoutMonitor.cs
- ServiceOperationWrapper.cs
- XmlReaderDelegator.cs
- StyleSheetRefUrlEditor.cs
- CustomAttributeFormatException.cs
- UnionQueryOperator.cs
- Screen.cs
- LookupBindingPropertiesAttribute.cs
- PrintDialog.cs
- ShaperBuffers.cs
- Compiler.cs
- WebZone.cs
- ModelPropertyDescriptor.cs
- ToolboxItemCollection.cs
- OneToOneMappingSerializer.cs
- UnsafeNativeMethods.cs
- XmlCharacterData.cs
- ClientUtils.cs
- SqlClientWrapperSmiStream.cs
- FamilyTypeface.cs
- DrawingState.cs
- EnterpriseServicesHelper.cs
- GeneratedCodeAttribute.cs
- WhitespaceRule.cs
- MonthCalendar.cs
- ToolStripItemCollection.cs
- SmtpNetworkElement.cs
- EtwTrace.cs
- XmlSchema.cs
- _CookieModule.cs
- StretchValidation.cs
- fixedPageContentExtractor.cs
- DelegateTypeInfo.cs
- ModuleConfigurationInfo.cs
- TaskCanceledException.cs
- ProvidePropertyAttribute.cs
- XmlSchemaComplexContentRestriction.cs
- Rfc2898DeriveBytes.cs
- PathFigure.cs
- TypeBuilderInstantiation.cs
- Selector.cs
- DBAsyncResult.cs
- DataGridItem.cs
- UpDownBaseDesigner.cs
- TreeWalker.cs
- AspNetPartialTrustHelpers.cs
- PauseStoryboard.cs
- SmtpTransport.cs
- SourceChangedEventArgs.cs
- AsymmetricAlgorithm.cs
- StackSpiller.cs
- CompilerResults.cs
- SecurityResources.cs
- TablePattern.cs
- UrlPropertyAttribute.cs
- TextContainer.cs
- DragDrop.cs
- TabControlEvent.cs
- VectorValueSerializer.cs
- TTSEngineProxy.cs
- DataGridViewRowConverter.cs
- ExpressionDumper.cs
- _TimerThread.cs
- Msmq4PoisonHandler.cs
- DrawTreeNodeEventArgs.cs
- SignatureDescription.cs
- DataRecordInternal.cs
- ScrollableControlDesigner.cs
- ObjectPropertyMapping.cs
- SrgsSubset.cs
- NavigationPropertySingletonExpression.cs
- SqlParameterizer.cs
- SchemaSetCompiler.cs
- AssemblyAttributes.cs
- RecognizedPhrase.cs
- SimpleHandlerBuildProvider.cs
- TextFormatter.cs
- TableDesigner.cs
- XmlLanguageConverter.cs
- InputGestureCollection.cs
- EventToken.cs
- WebPartConnectionsEventArgs.cs
- ISAPIRuntime.cs
- NativeCppClassAttribute.cs
- PropertyFilter.cs
- ExtensionQuery.cs
- ListViewDesigner.cs
- TransactionManager.cs
- MenuItemStyleCollection.cs
- ProfileServiceManager.cs
- VisualStyleElement.cs
- InfoCardTraceRecord.cs
- ExpressionVisitor.cs
- XmlSchemaType.cs
- SettingsPropertyValue.cs
- MenuCommand.cs
- SoapMessage.cs