Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / TagMapCollection.cs / 5 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ServiceNotStartedException.cs
- StringArrayEditor.cs
- BaseParagraph.cs
- _TimerThread.cs
- RouteParametersHelper.cs
- DataGridColumnHeadersPresenter.cs
- CodeIdentifier.cs
- ZipIOLocalFileBlock.cs
- MILUtilities.cs
- ReadContentAsBinaryHelper.cs
- WmfPlaceableFileHeader.cs
- MatrixTransform.cs
- EntityCollection.cs
- AppSecurityManager.cs
- MatrixTransform3D.cs
- DefaultTraceListener.cs
- ClientSettings.cs
- FrameworkTemplate.cs
- MultiBinding.cs
- PriorityRange.cs
- ValidationHelper.cs
- TextBreakpoint.cs
- HttpPostedFile.cs
- _NTAuthentication.cs
- DataGridViewAdvancedBorderStyle.cs
- SizeIndependentAnimationStorage.cs
- EntityTypeBase.cs
- ComponentManagerBroker.cs
- CodeDelegateInvokeExpression.cs
- SafeHandles.cs
- XmlUtf8RawTextWriter.cs
- DescriptionAttribute.cs
- ReaderWriterLock.cs
- SaveFileDialog.cs
- DelegatingTypeDescriptionProvider.cs
- PolicyManager.cs
- DataTableCollection.cs
- TextContainerChangedEventArgs.cs
- StructuralObject.cs
- StringUtil.cs
- CodeEntryPointMethod.cs
- SafeNativeMemoryHandle.cs
- ContentElement.cs
- OledbConnectionStringbuilder.cs
- WebBrowserPermission.cs
- StringReader.cs
- WebPartRestoreVerb.cs
- Style.cs
- KeyEvent.cs
- TextAnchor.cs
- ReplacementText.cs
- SQLDecimalStorage.cs
- XmlSchemaComplexContent.cs
- Vector.cs
- ServiceDocument.cs
- WebCategoryAttribute.cs
- StyleBamlTreeBuilder.cs
- QueryExtender.cs
- DefaultValueConverter.cs
- AssemblyHash.cs
- ToolStripButton.cs
- DocumentApplication.cs
- CmsInterop.cs
- EntityParameter.cs
- BooleanKeyFrameCollection.cs
- ValidationResult.cs
- AuthenticationServiceManager.cs
- XmlHelper.cs
- ProcessModuleDesigner.cs
- XmlElementCollection.cs
- FlowDocumentFormatter.cs
- BindingList.cs
- TypeInformation.cs
- AdornerDecorator.cs
- SecurityException.cs
- WMICapabilities.cs
- PrincipalPermission.cs
- FontFamilyValueSerializer.cs
- WeakReference.cs
- GridViewColumnHeader.cs
- TagNameToTypeMapper.cs
- _OSSOCK.cs
- ColorMatrix.cs
- HtmlImageAdapter.cs
- ChangeInterceptorAttribute.cs
- InboundActivityHelper.cs
- NominalTypeEliminator.cs
- GridViewRowEventArgs.cs
- RotateTransform3D.cs
- QueryContinueDragEventArgs.cs
- AttributeAction.cs
- CngProperty.cs
- XmlDeclaration.cs
- DependencyObjectPropertyDescriptor.cs
- NeutralResourcesLanguageAttribute.cs
- NullToBooleanConverter.cs
- HistoryEventArgs.cs
- XmlAttributes.cs
- FrameworkContentElementAutomationPeer.cs
- NameValueFileSectionHandler.cs