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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpTransportManager.cs
- LoginName.cs
- SrgsOneOf.cs
- SessionParameter.cs
- ProtocolsConfiguration.cs
- VScrollProperties.cs
- TextAction.cs
- ApplicationDirectory.cs
- EntityContainer.cs
- PublisherMembershipCondition.cs
- EventPrivateKey.cs
- QueryOperationResponseOfT.cs
- MouseCaptureWithinProperty.cs
- UserUseLicenseDictionaryLoader.cs
- Int32Storage.cs
- TraceEventCache.cs
- QueryableDataSource.cs
- SplitterEvent.cs
- MouseEvent.cs
- HttpFileCollection.cs
- TypeUtil.cs
- StyleBamlTreeBuilder.cs
- SqlBooleanizer.cs
- HttpContextServiceHost.cs
- ConstructorNeedsTagAttribute.cs
- KeyPressEvent.cs
- WindowPatternIdentifiers.cs
- OletxEnlistment.cs
- DtrList.cs
- IdentityManager.cs
- _NestedSingleAsyncResult.cs
- EpmSyndicationContentSerializer.cs
- ConnectionPoolManager.cs
- Point.cs
- BamlRecordReader.cs
- LineVisual.cs
- IntermediatePolicyValidator.cs
- ErrorRuntimeConfig.cs
- ClassicBorderDecorator.cs
- CodeDelegateCreateExpression.cs
- ProgressBarAutomationPeer.cs
- X509Extension.cs
- ItemCollection.cs
- IntSumAggregationOperator.cs
- SettingsBase.cs
- CryptoHandle.cs
- BufferedGraphicsContext.cs
- ThicknessAnimationBase.cs
- DateTimeOffset.cs
- MethodResolver.cs
- InvokeSchedule.cs
- SerializationObjectManager.cs
- ScrollBarAutomationPeer.cs
- ScrollBarRenderer.cs
- TextElementEnumerator.cs
- DataPagerField.cs
- ProfileService.cs
- AnimationLayer.cs
- VectorConverter.cs
- XmlSchemaAnyAttribute.cs
- BindingCompleteEventArgs.cs
- HttpResponse.cs
- serverconfig.cs
- DataMisalignedException.cs
- XmlCharCheckingReader.cs
- URI.cs
- Rijndael.cs
- CommunicationObjectFaultedException.cs
- PropVariant.cs
- smtpconnection.cs
- ImageFormatConverter.cs
- MembershipUser.cs
- IdentifierCollection.cs
- BamlRecords.cs
- filewebrequest.cs
- httpapplicationstate.cs
- DataGridViewCellStyleConverter.cs
- QueryModel.cs
- XmlQuerySequence.cs
- CodeAssignStatement.cs
- ServiceSettingsResponseInfo.cs
- QilUnary.cs
- ComplexTypeEmitter.cs
- TableCellCollection.cs
- GZipDecoder.cs
- dbdatarecord.cs
- TextBoxView.cs
- OracleException.cs
- designeractionbehavior.cs
- SQLBinaryStorage.cs
- TextContainerHelper.cs
- ImageSourceConverter.cs
- regiisutil.cs
- ErrorsHelper.cs
- DbParameterCollectionHelper.cs
- EntityCommandExecutionException.cs
- MetadataItemCollectionFactory.cs
- ValidateNames.cs
- InitializationEventAttribute.cs
- DataRecordInfo.cs