Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / TagPrefixCollection.cs / 3 / 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)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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 true; } } 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlDataSourceView.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- KeyedHashAlgorithm.cs
- DependencyPropertyValueSerializer.cs
- ChangeConflicts.cs
- ECDsaCng.cs
- CompletedAsyncResult.cs
- XmlIgnoreAttribute.cs
- SpeakCompletedEventArgs.cs
- PlaceHolder.cs
- RegisteredDisposeScript.cs
- WsdlBuildProvider.cs
- UxThemeWrapper.cs
- DictionaryEntry.cs
- FocusWithinProperty.cs
- AssemblyResourceLoader.cs
- InteropBitmapSource.cs
- OrderedDictionary.cs
- CustomTypeDescriptor.cs
- RenameRuleObjectDialog.Designer.cs
- ProfileGroupSettingsCollection.cs
- HiddenFieldPageStatePersister.cs
- SecurityManager.cs
- ItemContainerGenerator.cs
- Expander.cs
- SystemWebExtensionsSectionGroup.cs
- PartBasedPackageProperties.cs
- DelegateHelpers.cs
- CodeTypeMember.cs
- RequestBringIntoViewEventArgs.cs
- DataGridViewBand.cs
- FixedNode.cs
- CharStorage.cs
- FileSystemEventArgs.cs
- TagMapInfo.cs
- ModuleConfigurationInfo.cs
- _TLSstream.cs
- WizardPanel.cs
- ReverseInheritProperty.cs
- Timeline.cs
- OdbcConnection.cs
- SqlRowUpdatedEvent.cs
- DbConnectionPoolOptions.cs
- QilReplaceVisitor.cs
- Events.cs
- TraceEventCache.cs
- WebBrowser.cs
- CaseCqlBlock.cs
- MgmtResManager.cs
- LineSegment.cs
- WindowsAuthenticationModule.cs
- SBCSCodePageEncoding.cs
- BitmapImage.cs
- PersonalizableAttribute.cs
- TextTreeNode.cs
- Hashtable.cs
- FontInfo.cs
- ConfigLoader.cs
- PageThemeParser.cs
- NetworkInterface.cs
- QueryContinueDragEvent.cs
- DynamicPropertyHolder.cs
- PointLightBase.cs
- CapabilitiesRule.cs
- MessageSmuggler.cs
- CompleteWizardStep.cs
- ICspAsymmetricAlgorithm.cs
- FixedSOMTableCell.cs
- SequentialOutput.cs
- PasswordRecovery.cs
- UpdateProgress.cs
- SQLDecimalStorage.cs
- XPathCompiler.cs
- RegexCharClass.cs
- BoolExpr.cs
- ScaleTransform.cs
- FixedPageStructure.cs
- OracleInfoMessageEventArgs.cs
- x509store.cs
- _NativeSSPI.cs
- DataSourceXmlSerializer.cs
- Condition.cs
- NameObjectCollectionBase.cs
- Size.cs
- TypeBuilderInstantiation.cs
- QilTernary.cs
- Preprocessor.cs
- FrameSecurityDescriptor.cs
- SimpleTypesSurrogate.cs
- LayoutExceptionEventArgs.cs
- HostedHttpTransportManager.cs
- NegatedConstant.cs
- DecimalFormatter.cs
- Point.cs
- FrameworkReadOnlyPropertyMetadata.cs
- ListControl.cs
- CoreSwitches.cs
- XmlMapping.cs
- LiteralDesigner.cs
- ConsumerConnectionPointCollection.cs