Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / TagMapCollection.cs / 1305376 / 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))] 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))] 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
- TextBlock.cs
- DelegatingHeader.cs
- ScriptManager.cs
- BrowserCapabilitiesFactory.cs
- TimeSpanMinutesConverter.cs
- SizeIndependentAnimationStorage.cs
- _SingleItemRequestCache.cs
- SqlDataSourceView.cs
- HwndAppCommandInputProvider.cs
- DataGridViewDataErrorEventArgs.cs
- TextContainerHelper.cs
- LinkButton.cs
- EventDescriptor.cs
- MetadataSerializer.cs
- CheckBoxRenderer.cs
- UrlMapping.cs
- FontWeightConverter.cs
- BitmapImage.cs
- InfocardChannelParameter.cs
- MarkedHighlightComponent.cs
- GcSettings.cs
- MetabaseSettings.cs
- GridViewColumn.cs
- MatchingStyle.cs
- ImageListDesigner.cs
- SplitContainer.cs
- TriggerAction.cs
- COAUTHINFO.cs
- CLRBindingWorker.cs
- DropShadowBitmapEffect.cs
- TypedTableBase.cs
- DataGridColumn.cs
- TransformerConfigurationWizardBase.cs
- PositiveTimeSpanValidator.cs
- ThicknessConverter.cs
- InnerItemCollectionView.cs
- DataTablePropertyDescriptor.cs
- Root.cs
- SqlAliasesReferenced.cs
- ClientTarget.cs
- FamilyMap.cs
- SchemaTypeEmitter.cs
- TabItem.cs
- Symbol.cs
- StringUtil.cs
- DataGridTextBoxColumn.cs
- hresults.cs
- EntitySetBase.cs
- InputBinding.cs
- ToolStripItemRenderEventArgs.cs
- WebPartHeaderCloseVerb.cs
- Marshal.cs
- DbProviderFactory.cs
- EntityDataSourceWrapper.cs
- CodeDirectoryCompiler.cs
- QueryCacheEntry.cs
- Point4D.cs
- AbsoluteQuery.cs
- TraceUtility.cs
- AliasGenerator.cs
- ProjectionNode.cs
- KeyValueSerializer.cs
- WhiteSpaceTrimStringConverter.cs
- NativeCppClassAttribute.cs
- LockRenewalTask.cs
- ObjectPropertyMapping.cs
- BehaviorEditorPart.cs
- TextBox.cs
- BaseCodeDomTreeGenerator.cs
- OpCodes.cs
- PublisherIdentityPermission.cs
- OleDbEnumerator.cs
- DataGridViewLinkColumn.cs
- LineUtil.cs
- EventMappingSettingsCollection.cs
- StylusPointDescription.cs
- Thumb.cs
- IndexedGlyphRun.cs
- MSAAWinEventWrap.cs
- RotateTransform3D.cs
- CacheAxisQuery.cs
- WindowsTreeView.cs
- IItemContainerGenerator.cs
- SHA1.cs
- CommonObjectSecurity.cs
- CodeCompileUnit.cs
- DataGridViewElement.cs
- SelectionEditingBehavior.cs
- SchemaType.cs
- DataListCommandEventArgs.cs
- WebServiceHost.cs
- DbConnectionPoolOptions.cs
- DescriptionAttribute.cs
- DataBinder.cs
- __ConsoleStream.cs
- SqlBulkCopy.cs
- QuerySubExprEliminator.cs
- HtmlProps.cs
- RegexNode.cs
- CursorInteropHelper.cs