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
- KeyEvent.cs
- SaveFileDialog.cs
- RegexGroup.cs
- Brushes.cs
- RandomNumberGenerator.cs
- EndpointBehaviorElementCollection.cs
- Table.cs
- QilCloneVisitor.cs
- NoClickablePointException.cs
- SpellCheck.cs
- _HeaderInfoTable.cs
- BroadcastEventHelper.cs
- ResourceDescriptionAttribute.cs
- OleDbConnectionFactory.cs
- PinnedBufferMemoryStream.cs
- GroupBox.cs
- ExpandCollapseProviderWrapper.cs
- DataGridViewSelectedRowCollection.cs
- ChannelSinkStacks.cs
- FixedSOMContainer.cs
- SqlFileStream.cs
- SmiEventStream.cs
- XmlILConstructAnalyzer.cs
- UrlMapping.cs
- XmlUtil.cs
- DeferredElementTreeState.cs
- DesignerTransaction.cs
- XmlTextEncoder.cs
- GiveFeedbackEvent.cs
- DateTimeFormat.cs
- DelegateBodyWriter.cs
- DurableRuntimeValidator.cs
- TypedReference.cs
- Line.cs
- ILGenerator.cs
- BitmapSizeOptions.cs
- PackageProperties.cs
- SqlUtils.cs
- CancellationHandlerDesigner.cs
- ComboBox.cs
- XmlDocumentType.cs
- SqlFileStream.cs
- RecognizedPhrase.cs
- XPathAncestorQuery.cs
- HtmlPanelAdapter.cs
- MexTcpBindingCollectionElement.cs
- Win32Exception.cs
- HtmlTernaryTree.cs
- TimeSpanStorage.cs
- ObjectListDataBindEventArgs.cs
- DoubleCollectionValueSerializer.cs
- XDRSchema.cs
- DateRangeEvent.cs
- RewritingPass.cs
- ServiceDescriptionSerializer.cs
- DataContractSerializer.cs
- DoubleAnimationBase.cs
- DictationGrammar.cs
- RemoteWebConfigurationHostStream.cs
- MouseActionValueSerializer.cs
- HashMembershipCondition.cs
- SqlDataSourceFilteringEventArgs.cs
- RNGCryptoServiceProvider.cs
- DataGridCellInfo.cs
- TypedTableBase.cs
- CollectionBase.cs
- RIPEMD160Managed.cs
- httpstaticobjectscollection.cs
- Attributes.cs
- URLIdentityPermission.cs
- EventRecordWrittenEventArgs.cs
- _ConnectStream.cs
- ConfigXmlAttribute.cs
- RequestQueryParser.cs
- SectionVisual.cs
- SafeBitVector32.cs
- RSAOAEPKeyExchangeDeformatter.cs
- DataReaderContainer.cs
- StorageEntityContainerMapping.cs
- InternalControlCollection.cs
- UnsafeNativeMethods.cs
- sitestring.cs
- ProviderIncompatibleException.cs
- StrongNameUtility.cs
- TdsValueSetter.cs
- TargetControlTypeAttribute.cs
- EventLogHandle.cs
- Border.cs
- ThicknessKeyFrameCollection.cs
- TableLayoutColumnStyleCollection.cs
- BeginGetFileNameFromUserRequest.cs
- CredentialCache.cs
- MaskedTextBoxDesigner.cs
- ObjectSecurity.cs
- DataSetFieldSchema.cs
- HashSet.cs
- DesignerTransactionCloseEvent.cs
- infer.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- EventLogTraceListener.cs