Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / TagMapCollection.cs / 3 / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- bindurihelper.cs
- SimpleWebHandlerParser.cs
- PasswordRecoveryAutoFormat.cs
- UnhandledExceptionEventArgs.cs
- InheritablePropertyChangeInfo.cs
- FileDataSourceCache.cs
- PermissionSetEnumerator.cs
- ProviderSettings.cs
- UserControlCodeDomTreeGenerator.cs
- StateChangeEvent.cs
- PropertyFilterAttribute.cs
- CursorConverter.cs
- NavigationPropertyEmitter.cs
- ScaleTransform.cs
- FillRuleValidation.cs
- FormViewPagerRow.cs
- SimpleWorkerRequest.cs
- PropertyDescriptor.cs
- AnnotationObservableCollection.cs
- DataServiceRequest.cs
- SharedHttpTransportManager.cs
- MasterPageCodeDomTreeGenerator.cs
- WebBrowser.cs
- StreamingContext.cs
- _NTAuthentication.cs
- CommunicationException.cs
- CodeTypeConstructor.cs
- DataControlReference.cs
- GridToolTip.cs
- ListenerElementsCollection.cs
- FileDialogCustomPlace.cs
- Viewport3DVisual.cs
- ToolBarPanel.cs
- Missing.cs
- AspCompat.cs
- UpdateException.cs
- SeverityFilter.cs
- ScriptMethodAttribute.cs
- CustomAttributeFormatException.cs
- odbcmetadatafactory.cs
- ThreadExceptionDialog.cs
- DispatcherExceptionFilterEventArgs.cs
- DateBoldEvent.cs
- DtdParser.cs
- FormsAuthenticationCredentials.cs
- HeaderedContentControl.cs
- SafeNativeMethods.cs
- SqlFactory.cs
- PathFigureCollectionValueSerializer.cs
- TCEAdapterGenerator.cs
- Messages.cs
- MetadataFile.cs
- SqlProviderManifest.cs
- HtmlInputCheckBox.cs
- DataServiceContext.cs
- HotSpotCollectionEditor.cs
- ClientSettingsStore.cs
- CellTreeSimplifier.cs
- WebPartVerbsEventArgs.cs
- RadialGradientBrush.cs
- WorkflowServiceBehavior.cs
- LayoutTableCell.cs
- ConfigurationValues.cs
- TextEndOfLine.cs
- ProcessProtocolHandler.cs
- HtmlDocument.cs
- Delay.cs
- PersistenceMetadataNamespace.cs
- BitmapMetadataBlob.cs
- BorderGapMaskConverter.cs
- SourceFileInfo.cs
- SqlSelectClauseBuilder.cs
- PeerNeighborManager.cs
- NativeMethods.cs
- FixedSOMSemanticBox.cs
- DictionarySectionHandler.cs
- DrawingVisualDrawingContext.cs
- PropagatorResult.cs
- GridSplitter.cs
- XamlToRtfWriter.cs
- PrimitiveDataContract.cs
- PathStreamGeometryContext.cs
- RegexBoyerMoore.cs
- ToolStripSplitButton.cs
- PolicyValidationException.cs
- ReverseQueryOperator.cs
- BCryptHashAlgorithm.cs
- Guid.cs
- PartialCachingControl.cs
- CaseKeyBox.xaml.cs
- Normalization.cs
- HtmlTernaryTree.cs
- Message.cs
- LocalizableAttribute.cs
- PolicyStatement.cs
- PrivilegedConfigurationManager.cs
- XPathException.cs
- MdiWindowListStrip.cs
- HttpRequestBase.cs
- DispatcherEventArgs.cs