Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / TagPrefixCollection.cs / 4 / 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; } } } } // 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
- SystemResources.cs
- OrderPreservingSpoolingTask.cs
- FileDialog_Vista_Interop.cs
- ThrowHelper.cs
- StrongName.cs
- IndexedString.cs
- MarkupExtensionReturnTypeAttribute.cs
- SchemaComplexType.cs
- FixUp.cs
- UpDownEvent.cs
- ServicePoint.cs
- FolderNameEditor.cs
- SocketManager.cs
- XmlResolver.cs
- Duration.cs
- Operators.cs
- EnlistmentState.cs
- TreeViewItemAutomationPeer.cs
- Line.cs
- PropertyInformation.cs
- LightweightEntityWrapper.cs
- ModelItemCollection.cs
- ExpressionBuilderCollection.cs
- SmiMetaDataProperty.cs
- WsdlInspector.cs
- OleDragDropHandler.cs
- JpegBitmapEncoder.cs
- BaseHashHelper.cs
- StructuredTypeEmitter.cs
- HttpMethodAttribute.cs
- WindowsComboBox.cs
- HttpRequest.cs
- Util.cs
- ClosableStream.cs
- RootAction.cs
- EntityDataSourceEntityTypeFilterItem.cs
- DBCommand.cs
- XmlCharCheckingReader.cs
- SuppressIldasmAttribute.cs
- ReceiveActivityValidator.cs
- TraceSource.cs
- IsolatedStorageFile.cs
- XmlSchemaAny.cs
- Transform3DGroup.cs
- CodeTypeReference.cs
- QueueNameHelper.cs
- Transform.cs
- AdornerLayer.cs
- WsatAdminException.cs
- AudioException.cs
- _FtpControlStream.cs
- TimeSpanSecondsConverter.cs
- handlecollector.cs
- TextTreeRootTextBlock.cs
- TreeNodeBindingCollection.cs
- Exceptions.cs
- InputReportEventArgs.cs
- SqlMethodTransformer.cs
- MetadataProperty.cs
- WebPart.cs
- _ProxyRegBlob.cs
- TextTreeUndoUnit.cs
- DataGridViewRowsRemovedEventArgs.cs
- ResourceAttributes.cs
- MobileUserControl.cs
- UpDownEvent.cs
- EnumDataContract.cs
- MemberMaps.cs
- XamlContextStack.cs
- TextContainerHelper.cs
- Metadata.cs
- sqlstateclientmanager.cs
- ToolStripComboBox.cs
- SkinBuilder.cs
- UrlSyndicationContent.cs
- SamlAssertionKeyIdentifierClause.cs
- ColumnReorderedEventArgs.cs
- CodePropertyReferenceExpression.cs
- SchemaNames.cs
- SafeFileMappingHandle.cs
- SynchronizedDispatch.cs
- Substitution.cs
- BitmapEffectDrawing.cs
- AutomationPeer.cs
- ContentElementAutomationPeer.cs
- DataGridViewSortCompareEventArgs.cs
- ApplicationActivator.cs
- DataGridTemplateColumn.cs
- HyperLinkField.cs
- BufferedWebEventProvider.cs
- IisTraceWebEventProvider.cs
- MenuAdapter.cs
- SafeProcessHandle.cs
- GridViewDesigner.cs
- DesignerActionItem.cs
- SystemWebSectionGroup.cs
- WindowsListViewItem.cs
- ToggleButton.cs
- GradientSpreadMethodValidation.cs
- _ProxyRegBlob.cs