Code:
/ DotNET / DotNET / 8.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
- SemaphoreFullException.cs
- HtmlGenericControl.cs
- Attributes.cs
- InkPresenter.cs
- Bind.cs
- EntityRecordInfo.cs
- RemotingSurrogateSelector.cs
- SystemIPInterfaceProperties.cs
- CustomAttributeFormatException.cs
- Help.cs
- HtmlInputImage.cs
- CodeTypeConstructor.cs
- MethodBuilder.cs
- JavascriptXmlWriterWrapper.cs
- XmlDataContract.cs
- KoreanCalendar.cs
- TraceLog.cs
- FontDifferentiator.cs
- MatrixValueSerializer.cs
- ToolConsole.cs
- UnitySerializationHolder.cs
- RepeaterItemCollection.cs
- WizardPanel.cs
- FlowDocumentView.cs
- NavigationEventArgs.cs
- NameValuePermission.cs
- Vector3DAnimationUsingKeyFrames.cs
- BitConverter.cs
- PathSegmentCollection.cs
- Pair.cs
- GenericsInstances.cs
- CatalogPartCollection.cs
- AuthenticationSection.cs
- ResourceKey.cs
- GenericEnumerator.cs
- WhitespaceRule.cs
- Random.cs
- DtdParser.cs
- ListViewGroupConverter.cs
- DesignerEventService.cs
- CrossSiteScriptingValidation.cs
- GridViewCancelEditEventArgs.cs
- WebConfigurationFileMap.cs
- PolyQuadraticBezierSegment.cs
- StreamSecurityUpgradeInitiator.cs
- _UriTypeConverter.cs
- Pointer.cs
- InvokeProviderWrapper.cs
- ObjectListFieldsPage.cs
- WindowsToolbarAsMenu.cs
- XmlLanguage.cs
- CurrentChangingEventArgs.cs
- HandoffBehavior.cs
- ConfigurationManagerHelperFactory.cs
- Int32CollectionConverter.cs
- DomNameTable.cs
- ACE.cs
- XamlDesignerSerializationManager.cs
- TextEffect.cs
- counter.cs
- DisplayInformation.cs
- QueryContinueDragEvent.cs
- ScriptingRoleServiceSection.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- _HeaderInfoTable.cs
- ContentElement.cs
- StickyNoteHelper.cs
- XamlSerializer.cs
- ZipIOExtraFieldPaddingElement.cs
- ViewGenResults.cs
- BooleanFacetDescriptionElement.cs
- StartFileNameEditor.cs
- AsymmetricAlgorithm.cs
- EmptyStringExpandableObjectConverter.cs
- WindowsListViewItemStartMenu.cs
- translator.cs
- UDPClient.cs
- ToggleProviderWrapper.cs
- EventPrivateKey.cs
- ScheduleChanges.cs
- XPathAncestorQuery.cs
- DesigntimeLicenseContextSerializer.cs
- WebPartEventArgs.cs
- XmlParserContext.cs
- CompilerGlobalScopeAttribute.cs
- Point4DConverter.cs
- FontFamilyIdentifier.cs
- DataGridColumnsPage.cs
- WebHttpDispatchOperationSelector.cs
- FileDialogPermission.cs
- LogReservationCollection.cs
- wpf-etw.cs
- Int32AnimationBase.cs
- NativeMethods.cs
- DescendantQuery.cs
- RevocationPoint.cs
- MSAAEventDispatcher.cs
- VerticalConnector.xaml.cs
- BridgeDataRecord.cs
- ExtensibleClassFactory.cs