Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / TagPrefixCollection.cs / 1305376 / TagPrefixCollection.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(TagPrefixInfo), AddItemName = "add", CollectionType = ConfigurationElementCollectionType.BasicMap)] public sealed class TagPrefixCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static TagPrefixCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } public TagPrefixCollection() : base(StringComparer.OrdinalIgnoreCase) { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public TagPrefixInfo this[int index] { get { return (TagPrefixInfo)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.BasicMap; } } protected override bool ThrowOnDuplicate { get { return false; } } public void Add(TagPrefixInfo tagPrefixInformation) { BaseAdd(tagPrefixInformation); } public void Remove(TagPrefixInfo tagPrefixInformation) { BaseRemove(GetElementKey(tagPrefixInformation)); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new TagPrefixInfo(); } protected override string ElementName { get { return "add"; } } protected override Object GetElementKey(ConfigurationElement element) { TagPrefixInfo info = (TagPrefixInfo)element; if (String.IsNullOrEmpty(info.TagName)) { return info.TagPrefix + ":" + info.Namespace + ":" + (String.IsNullOrEmpty(info.Assembly) ? string.Empty : info.Assembly); } else { return info.TagPrefix + ":" + info.TagName; } } } } // 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
- ZipIOExtraField.cs
- MembershipValidatePasswordEventArgs.cs
- assemblycache.cs
- KeyValueConfigurationElement.cs
- AsyncOperation.cs
- ObjectStateEntry.cs
- MatchingStyle.cs
- ContentWrapperAttribute.cs
- DataFormat.cs
- MobileTextWriter.cs
- SystemWebSectionGroup.cs
- RoutingTable.cs
- PenThreadPool.cs
- SharedDp.cs
- TCPClient.cs
- ContourSegment.cs
- Int32.cs
- ListControl.cs
- CatalogPartChrome.cs
- ExceptionUtil.cs
- SessionPageStateSection.cs
- FirstMatchCodeGroup.cs
- CodeObject.cs
- ProxyHwnd.cs
- ResolveMatchesMessageCD1.cs
- ScriptResourceMapping.cs
- StoryFragments.cs
- StatusBar.cs
- CriticalHandle.cs
- log.cs
- SizeIndependentAnimationStorage.cs
- ColorContext.cs
- WorkflowViewElement.cs
- FontUnit.cs
- ActivityFunc.cs
- StrongNameKeyPair.cs
- XmlRootAttribute.cs
- DataKeyCollection.cs
- LocalIdKeyIdentifierClause.cs
- CalendarKeyboardHelper.cs
- ProviderIncompatibleException.cs
- RepeaterItemEventArgs.cs
- XmlQueryStaticData.cs
- MetafileHeaderEmf.cs
- HandledMouseEvent.cs
- HandoffBehavior.cs
- NativeActivityContext.cs
- MsmqMessageSerializationFormat.cs
- HttpCacheParams.cs
- LifetimeServices.cs
- FunctionQuery.cs
- PeerSecurityManager.cs
- GuidelineSet.cs
- BlockExpression.cs
- SourceSwitch.cs
- UpDownBase.cs
- elementinformation.cs
- ExpiredSecurityTokenException.cs
- SchemaHelper.cs
- InstalledVoice.cs
- NullableFloatMinMaxAggregationOperator.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- SessionStateContainer.cs
- WebPartHeaderCloseVerb.cs
- DateTime.cs
- NativeActivityMetadata.cs
- HttpCookiesSection.cs
- TileBrush.cs
- PagesChangedEventArgs.cs
- PageTheme.cs
- NotifyIcon.cs
- PipelineModuleStepContainer.cs
- Control.cs
- ColumnMapCopier.cs
- Binding.cs
- FilterableAttribute.cs
- TagMapCollection.cs
- HeaderUtility.cs
- CodeExpressionStatement.cs
- BoundingRectTracker.cs
- DaylightTime.cs
- CompositeTypefaceMetrics.cs
- CodePageEncoding.cs
- Schema.cs
- UInt64Storage.cs
- PersonalizationStateInfoCollection.cs
- WebPartAuthorizationEventArgs.cs
- UniqueConstraint.cs
- MultiViewDesigner.cs
- ExeContext.cs
- ImageKeyConverter.cs
- ControlSerializer.cs
- LicenseException.cs
- TextServicesHost.cs
- BamlLocalizabilityResolver.cs
- SqlInternalConnectionSmi.cs
- Matrix.cs
- SymmetricAlgorithm.cs
- DocumentOrderQuery.cs
- PluralizationService.cs