Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / TagMapCollection.cs / 1 / 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
- TemplateKey.cs
- ProjectionCamera.cs
- DbConnectionHelper.cs
- ToolboxDataAttribute.cs
- JoinTreeSlot.cs
- KeyedCollection.cs
- SelectionGlyph.cs
- RtfFormatStack.cs
- JsonEncodingStreamWrapper.cs
- WebControlParameterProxy.cs
- BeginStoryboard.cs
- PasswordRecovery.cs
- CodeDelegateCreateExpression.cs
- EtwTrace.cs
- MonitoringDescriptionAttribute.cs
- DebugInfoGenerator.cs
- EditorPart.cs
- SqlDataSourceSelectingEventArgs.cs
- CodeNamespaceCollection.cs
- ColorContext.cs
- TreeView.cs
- Activity.cs
- LineBreak.cs
- WebUtil.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- TreeChangeInfo.cs
- WizardStepBase.cs
- UnsafeNativeMethods.cs
- AutoGeneratedFieldProperties.cs
- SizeFConverter.cs
- FontDriver.cs
- CodeDomExtensionMethods.cs
- XamlTypeMapper.cs
- UInt64Storage.cs
- FileSystemEventArgs.cs
- StringExpressionSet.cs
- ProxyWebPart.cs
- SerializerDescriptor.cs
- EdgeProfileValidation.cs
- ProvidersHelper.cs
- NTAccount.cs
- TextRangeEditLists.cs
- ClientSession.cs
- ConstrainedDataObject.cs
- TimeSpan.cs
- TabItem.cs
- DocumentGridContextMenu.cs
- SafeCertificateStore.cs
- TableCellCollection.cs
- URLIdentityPermission.cs
- WindowsHyperlink.cs
- ComponentEditorForm.cs
- BlurEffect.cs
- TrackingWorkflowEventArgs.cs
- RemoteCryptoTokenProvider.cs
- LeafCellTreeNode.cs
- ActivityExecutionContextCollection.cs
- ToggleButton.cs
- SmtpDigestAuthenticationModule.cs
- TypeConverterAttribute.cs
- ListBindingHelper.cs
- GreenMethods.cs
- EncodingTable.cs
- FrameworkEventSource.cs
- COMException.cs
- AutoGeneratedFieldProperties.cs
- Knowncolors.cs
- ProcessHostServerConfig.cs
- Int64KeyFrameCollection.cs
- ButtonBase.cs
- ListControlStringCollectionEditor.cs
- StyleXamlTreeBuilder.cs
- TableProvider.cs
- TextPointerBase.cs
- SequentialActivityDesigner.cs
- WindowsIdentity.cs
- ConfigXmlCDataSection.cs
- PerformanceCounterPermissionEntryCollection.cs
- RequestCacheEntry.cs
- AdornerLayer.cs
- ProfileSettingsCollection.cs
- AutomationElementIdentifiers.cs
- UrlEncodedParameterWriter.cs
- ClientProtocol.cs
- IsolatedStorageException.cs
- DocumentPageView.cs
- ApplicationId.cs
- Root.cs
- CancelEventArgs.cs
- FileFormatException.cs
- ZipIOExtraFieldPaddingElement.cs
- ContentFileHelper.cs
- ConcatQueryOperator.cs
- TcpClientSocketManager.cs
- Preprocessor.cs
- DragEventArgs.cs
- MenuItem.cs
- CustomValidator.cs
- OracleBinary.cs
- PointLightBase.cs