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
- DefaultMemberAttribute.cs
- ProgressiveCrcCalculatingStream.cs
- XmlDocumentSchema.cs
- XmlHelper.cs
- CfgArc.cs
- TreeNodeStyle.cs
- DataGridViewHitTestInfo.cs
- FlowDocumentReader.cs
- TransactionInformation.cs
- ParallelTimeline.cs
- CompilationLock.cs
- SerializationException.cs
- Identity.cs
- DurableRuntimeValidator.cs
- FileCodeGroup.cs
- BoolExpr.cs
- _UriTypeConverter.cs
- IteratorDescriptor.cs
- _SecureChannel.cs
- FreeFormDesigner.cs
- SqlExpressionNullability.cs
- HMACMD5.cs
- Ipv6Element.cs
- UriParserTemplates.cs
- ZeroOpNode.cs
- Line.cs
- ToolStripSystemRenderer.cs
- ReadOnlyDictionary.cs
- CLRBindingWorker.cs
- ConnectionStringSettings.cs
- Timer.cs
- BreadCrumbTextConverter.cs
- ResXFileRef.cs
- InputLanguageSource.cs
- SimpleHandlerBuildProvider.cs
- Page.cs
- UIElementHelper.cs
- AnnotationAuthorChangedEventArgs.cs
- DataSourceNameHandler.cs
- categoryentry.cs
- ItemCheckedEvent.cs
- AttachedPropertyBrowsableAttribute.cs
- SynthesizerStateChangedEventArgs.cs
- FunctionGenerator.cs
- XmlBufferReader.cs
- HtmlForm.cs
- TemplateApplicationHelper.cs
- XamlPathDataSerializer.cs
- DateBoldEvent.cs
- UrlMappingCollection.cs
- HtmlTableRow.cs
- Int64.cs
- Vector3DAnimationUsingKeyFrames.cs
- MachineKeyConverter.cs
- NameTable.cs
- BinaryWriter.cs
- MetabaseServerConfig.cs
- ObjectTag.cs
- PageThemeCodeDomTreeGenerator.cs
- ColumnReorderedEventArgs.cs
- NonBatchDirectoryCompiler.cs
- Empty.cs
- DisplayMemberTemplateSelector.cs
- DefaultTextStore.cs
- CoreSwitches.cs
- CodeVariableDeclarationStatement.cs
- SignerInfo.cs
- ScriptDescriptor.cs
- ContextProperty.cs
- ServiceDescription.cs
- LoginUtil.cs
- WebPartPersonalization.cs
- FrameworkContentElement.cs
- ReflectionTypeLoadException.cs
- StorageMappingItemCollection.cs
- ConfigXmlAttribute.cs
- BinaryKeyIdentifierClause.cs
- PrimitiveDataContract.cs
- PersonalizableTypeEntry.cs
- ForeignConstraint.cs
- RoleServiceManager.cs
- WorkflowTimerService.cs
- BidOverLoads.cs
- PersonalizationAdministration.cs
- SoapServerProtocol.cs
- ReadOnlyAttribute.cs
- StyleTypedPropertyAttribute.cs
- LinkedResourceCollection.cs
- Bold.cs
- ConnectionManagementElementCollection.cs
- XmlSchemaValidator.cs
- Geometry.cs
- XmlAtomicValue.cs
- BuilderInfo.cs
- SmtpClient.cs
- RecognitionEventArgs.cs
- ProxyWebPartManager.cs
- ValuePatternIdentifiers.cs
- UnsafeNativeMethods.cs
- PriorityQueue.cs