Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / TagMapCollection.cs / 5 / 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
- DocumentPageViewAutomationPeer.cs
- MethodImplAttribute.cs
- WorkflowEnvironment.cs
- TraceData.cs
- Bold.cs
- XmlBinaryReader.cs
- RelationshipManager.cs
- CodeMethodInvokeExpression.cs
- TableChangeProcessor.cs
- DescriptionAttribute.cs
- EventHandlerService.cs
- DocumentSequenceHighlightLayer.cs
- InfoCardArgumentException.cs
- DataObjectEventArgs.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- ExpressionBuilderContext.cs
- Setter.cs
- Viewport2DVisual3D.cs
- AssemblyAttributes.cs
- LineGeometry.cs
- RectangleConverter.cs
- SoapAttributeOverrides.cs
- BuildResultCache.cs
- Variable.cs
- OracleLob.cs
- ZipIOCentralDirectoryBlock.cs
- HttpFileCollection.cs
- DesignSurface.cs
- RangeBaseAutomationPeer.cs
- AsymmetricKeyExchangeFormatter.cs
- DbReferenceCollection.cs
- CatalogPart.cs
- DataSourceView.cs
- SuppressIldasmAttribute.cs
- webproxy.cs
- MiniLockedBorderGlyph.cs
- AsyncMethodInvoker.cs
- HeaderedItemsControl.cs
- TextSyndicationContentKindHelper.cs
- TextElementEditingBehaviorAttribute.cs
- MsmqAppDomainProtocolHandler.cs
- JapaneseCalendar.cs
- TimeManager.cs
- GridViewPageEventArgs.cs
- GeneralTransform3DGroup.cs
- LocalValueEnumerator.cs
- MruCache.cs
- WebPartHeaderCloseVerb.cs
- DataBindingValueUIHandler.cs
- Compiler.cs
- EventLog.cs
- MarshalByRefObject.cs
- ModelItemExtensions.cs
- SafeRegistryHandle.cs
- CodeIdentifier.cs
- ExceptionHandlersDesigner.cs
- translator.cs
- SystemIcmpV4Statistics.cs
- LoadedOrUnloadedOperation.cs
- WhereaboutsReader.cs
- RawStylusActions.cs
- NameTable.cs
- SessionPageStatePersister.cs
- BinaryReader.cs
- DesignTimeParseData.cs
- GZipStream.cs
- WindowsFormsLinkLabel.cs
- TextSelection.cs
- Queue.cs
- PageClientProxyGenerator.cs
- MonthCalendarDesigner.cs
- ManagedIStream.cs
- DirectionalLight.cs
- BasicExpandProvider.cs
- WebBrowserDocumentCompletedEventHandler.cs
- controlskin.cs
- HistoryEventArgs.cs
- GenericWebPart.cs
- VirtualPathData.cs
- iisPickupDirectory.cs
- DataGridCaption.cs
- Encoder.cs
- RowParagraph.cs
- DCSafeHandle.cs
- EntityProxyTypeInfo.cs
- IgnoreSection.cs
- NameValuePermission.cs
- PolyBezierSegment.cs
- Crc32Helper.cs
- EntityStoreSchemaFilterEntry.cs
- TreeNodeCollection.cs
- ListViewInsertionMark.cs
- QuaternionKeyFrameCollection.cs
- HtmlWindow.cs
- RIPEMD160.cs
- CollectionViewGroup.cs
- SQLGuidStorage.cs
- MulticastDelegate.cs
- TextViewDesigner.cs
- ButtonChrome.cs