Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- ConfigurationManagerInternalFactory.cs
- DataGridViewBand.cs
- X509Extension.cs
- SqlEnums.cs
- MouseButton.cs
- MatrixTransform3D.cs
- SortedList.cs
- WorkflowCreationContext.cs
- EntityParameter.cs
- WebPartDisplayMode.cs
- DataGridViewCell.cs
- ChangeProcessor.cs
- UserControlParser.cs
- BrowserCapabilitiesFactoryBase.cs
- MemoryRecordBuffer.cs
- ControlCachePolicy.cs
- DynamicRouteExpression.cs
- TypeConverterAttribute.cs
- ColumnResizeUndoUnit.cs
- PassportPrincipal.cs
- WsiProfilesElement.cs
- KeyInterop.cs
- ToolboxItemAttribute.cs
- TextEndOfParagraph.cs
- FileVersionInfo.cs
- CodeObjectCreateExpression.cs
- PackageRelationship.cs
- _DomainName.cs
- CompilerGeneratedAttribute.cs
- MediaContextNotificationWindow.cs
- ErrorWrapper.cs
- Image.cs
- ProcessThreadCollection.cs
- LogSwitch.cs
- PersonalizationProviderHelper.cs
- ListDictionaryInternal.cs
- MsmqOutputChannel.cs
- CfgParser.cs
- cookieexception.cs
- TypeBuilder.cs
- MemoryMappedViewAccessor.cs
- XPathExpr.cs
- VectorValueSerializer.cs
- MDIWindowDialog.cs
- TextTreeTextBlock.cs
- InternalConfigSettingsFactory.cs
- Metafile.cs
- RunInstallerAttribute.cs
- BindingMAnagerBase.cs
- AndCondition.cs
- UInt64Storage.cs
- CommandPlan.cs
- Substitution.cs
- QuaternionRotation3D.cs
- PointUtil.cs
- COAUTHINFO.cs
- PresentationSource.cs
- OpCodes.cs
- Transform.cs
- DataStorage.cs
- DashStyles.cs
- GPRECTF.cs
- LinkArea.cs
- CustomCategoryAttribute.cs
- ContextMarshalException.cs
- TypeUtils.cs
- DiscoveryMessageSequenceGenerator.cs
- VarRefManager.cs
- UrlMappingCollection.cs
- TypeListConverter.cs
- XslException.cs
- OdbcCommandBuilder.cs
- SqlBinder.cs
- JsonReader.cs
- UInt64.cs
- XsdDuration.cs
- TextEmbeddedObject.cs
- XmlText.cs
- ButtonChrome.cs
- RegistrationServices.cs
- TextTreeInsertElementUndoUnit.cs
- DataObject.cs
- xmlfixedPageInfo.cs
- StringUtil.cs
- SamlSubjectStatement.cs
- ProcessThreadCollection.cs
- ITextView.cs
- UInt32.cs
- MessageDecoder.cs
- NavigationService.cs
- CodeActivityContext.cs
- SimpleBitVector32.cs
- CodeObject.cs
- Selection.cs
- StringFunctions.cs
- NavigationFailedEventArgs.cs
- PenContexts.cs
- DataGridViewElement.cs
- SynchronizedPool.cs
- MemoryPressure.cs