Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / TagPrefixCollection.cs / 5 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SettingsProperty.cs
- AppDomain.cs
- AttachedProperty.cs
- Animatable.cs
- Tokenizer.cs
- SynchronizationLockException.cs
- Subordinate.cs
- HtmlForm.cs
- DiagnosticStrings.cs
- DictionaryTraceRecord.cs
- ApplicationId.cs
- DataGridViewTextBoxCell.cs
- SamlSubject.cs
- SqlCommandSet.cs
- SocketInformation.cs
- CustomSignedXml.cs
- ToolStripOverflowButton.cs
- RegexWorker.cs
- EvidenceTypeDescriptor.cs
- SHA256Cng.cs
- DependencyPropertyKind.cs
- BamlBinaryWriter.cs
- DiscoveryDocument.cs
- TypeUtils.cs
- DataListItem.cs
- NumberSubstitution.cs
- WhereQueryOperator.cs
- NumericExpr.cs
- ScrollChrome.cs
- ObjectDataProvider.cs
- DataServiceBehavior.cs
- ImageBrush.cs
- EntityType.cs
- safex509handles.cs
- ViewGenResults.cs
- HostedTcpTransportManager.cs
- ConfigurationFileMap.cs
- StateManagedCollection.cs
- ReadOnlyDataSourceView.cs
- SoapEnumAttribute.cs
- MouseGesture.cs
- Binding.cs
- SQLByte.cs
- QuaternionRotation3D.cs
- XmlWriter.cs
- PinnedBufferMemoryStream.cs
- GridViewSortEventArgs.cs
- HttpBufferlessInputStream.cs
- MappingSource.cs
- PassportIdentity.cs
- DurableDispatcherAddressingFault.cs
- DeploymentSection.cs
- Canvas.cs
- AjaxFrameworkAssemblyAttribute.cs
- ButtonFieldBase.cs
- XmlSchemaObject.cs
- __ConsoleStream.cs
- OleDbError.cs
- Variable.cs
- MemoryStream.cs
- RMEnrollmentPage2.cs
- GlyphsSerializer.cs
- EnumMember.cs
- AttributeCallbackBuilder.cs
- ScrollChrome.cs
- IsolationInterop.cs
- SessionIDManager.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- SessionStateItemCollection.cs
- PasswordRecovery.cs
- ProfileEventArgs.cs
- TranslateTransform.cs
- GeometryHitTestParameters.cs
- FieldNameLookup.cs
- Application.cs
- ComponentChangingEvent.cs
- SmiSettersStream.cs
- ActivityWithResultWrapper.cs
- GlyphCache.cs
- SmiContext.cs
- ScrollChangedEventArgs.cs
- CompiledRegexRunnerFactory.cs
- MorphHelper.cs
- WorkflowApplicationUnloadedException.cs
- SessionPageStateSection.cs
- NameSpaceExtractor.cs
- WebPartsPersonalizationAuthorization.cs
- LocatorPartList.cs
- ContextActivityUtils.cs
- CompilerInfo.cs
- MobileCategoryAttribute.cs
- LayoutTable.cs
- PrintPageEvent.cs
- ResourceSetExpression.cs
- GifBitmapEncoder.cs
- IndexedGlyphRun.cs
- MediaElement.cs
- XamlToRtfParser.cs
- XsltFunctions.cs
- ResourceProviderFactory.cs