Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / TagMapCollection.cs / 2 / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlBindingWorker.cs
- OleDbPermission.cs
- AtlasWeb.Designer.cs
- PassportPrincipal.cs
- TreeWalker.cs
- UnauthorizedAccessException.cs
- FixedElement.cs
- FormClosedEvent.cs
- OleDbConnection.cs
- HttpHandlerActionCollection.cs
- FunctionCommandText.cs
- EventDescriptorCollection.cs
- CngKeyCreationParameters.cs
- ListParaClient.cs
- KoreanCalendar.cs
- SecurityException.cs
- HyperLinkField.cs
- TextEvent.cs
- AtomParser.cs
- TypeContext.cs
- PermissionRequestEvidence.cs
- CollectionType.cs
- DrawingContextDrawingContextWalker.cs
- RequiredFieldValidator.cs
- SQLDecimalStorage.cs
- TextEmbeddedObject.cs
- HGlobalSafeHandle.cs
- VirtualPathUtility.cs
- GridItemPattern.cs
- ContextMenuService.cs
- EntityDataSourceView.cs
- IndexOutOfRangeException.cs
- ClassDataContract.cs
- Tablet.cs
- SoapHeaderAttribute.cs
- PasswordRecovery.cs
- ScriptBehaviorDescriptor.cs
- DbFunctionCommandTree.cs
- Wildcard.cs
- DataBindingList.cs
- CorrelationValidator.cs
- ProxyHwnd.cs
- cache.cs
- TreeViewImageKeyConverter.cs
- MailDefinition.cs
- XmlDataContract.cs
- ScriptResourceAttribute.cs
- AppDomainResourcePerfCounters.cs
- WebHttpSecurityElement.cs
- WindowsGraphics.cs
- EditableLabelControl.cs
- MimeMapping.cs
- DrawItemEvent.cs
- SplineKeyFrames.cs
- QueryTask.cs
- SQLString.cs
- SocketPermission.cs
- BroadcastEventHelper.cs
- _ProxyRegBlob.cs
- VectorAnimationBase.cs
- Set.cs
- InputLanguageSource.cs
- CardSpaceSelector.cs
- XmlComplianceUtil.cs
- DesignerLoader.cs
- WindowHelperService.cs
- PublisherIdentityPermission.cs
- Pair.cs
- IpcChannel.cs
- remotingproxy.cs
- BitmapDownload.cs
- TransactionsSectionGroup.cs
- MethodExpression.cs
- HttpClientCertificate.cs
- Validator.cs
- ActivityLocationReferenceEnvironment.cs
- ConnectionManagementSection.cs
- TypeSystem.cs
- MarshalByValueComponent.cs
- AdornerPresentationContext.cs
- OracleDataAdapter.cs
- RightsManagementEncryptedStream.cs
- ZoneLinkButton.cs
- PartManifestEntry.cs
- WebRequestModuleElementCollection.cs
- MailDefinition.cs
- _FixedSizeReader.cs
- RelationshipEnd.cs
- WindowsAuthenticationEventArgs.cs
- TransferMode.cs
- Utils.cs
- RegistryConfigurationProvider.cs
- DataSourceView.cs
- AccessedThroughPropertyAttribute.cs
- Stylus.cs
- SurrogateEncoder.cs
- WsdlInspector.cs
- GridErrorDlg.cs
- TimeStampChecker.cs
- XslUrlEditor.cs