Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / TagPrefixCollection.cs / 1 / 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
- StringFunctions.cs
- ResourceIDHelper.cs
- TypeCodeDomSerializer.cs
- LineServicesRun.cs
- MemoryPressure.cs
- WebBrowser.cs
- AuthorizationSection.cs
- DbException.cs
- TransactionChannelListener.cs
- SafeNativeMethods.cs
- ExpiredSecurityTokenException.cs
- PngBitmapDecoder.cs
- ResolveMatchesMessage11.cs
- FileSystemInfo.cs
- MailDefinition.cs
- IisTraceWebEventProvider.cs
- RequestQueryProcessor.cs
- RawUIStateInputReport.cs
- ContextQuery.cs
- NodeFunctions.cs
- SqlDataReader.cs
- FileDialogPermission.cs
- WebPartZone.cs
- _NestedSingleAsyncResult.cs
- CodeDirectoryCompiler.cs
- XmlBinaryReader.cs
- SessionIDManager.cs
- FontStretches.cs
- Annotation.cs
- User.cs
- ToolTipAutomationPeer.cs
- Stack.cs
- DES.cs
- PostBackTrigger.cs
- ConfigsHelper.cs
- TextTreeDeleteContentUndoUnit.cs
- XPathAncestorIterator.cs
- EventQueueState.cs
- ObjectQueryExecutionPlan.cs
- DbProviderFactory.cs
- TrackingProfileSerializer.cs
- XmlSchemaSimpleType.cs
- SqlBulkCopyColumnMapping.cs
- UrlMappingsSection.cs
- QueueProcessor.cs
- DbReferenceCollection.cs
- ProfilePropertySettings.cs
- BmpBitmapDecoder.cs
- DataViewSetting.cs
- Int64.cs
- TextDecorationCollectionConverter.cs
- SynchronizationContext.cs
- ValidatorCompatibilityHelper.cs
- StorageComplexTypeMapping.cs
- GridViewDeletedEventArgs.cs
- TdsRecordBufferSetter.cs
- TextContainer.cs
- UnmanagedHandle.cs
- GroupDescription.cs
- TcpTransportSecurity.cs
- WebPartVerbsEventArgs.cs
- DataSpaceManager.cs
- GlyphInfoList.cs
- ResXDataNode.cs
- TransformerConfigurationWizardBase.cs
- DummyDataSource.cs
- TextDecorationCollectionConverter.cs
- EncoderExceptionFallback.cs
- HttpHandlersSection.cs
- BeginStoryboard.cs
- CultureInfo.cs
- ActivityCodeDomSerializer.cs
- ObservableCollection.cs
- WhitespaceSignificantCollectionAttribute.cs
- ECDsa.cs
- ArcSegment.cs
- Root.cs
- ReferencedAssembly.cs
- XsltCompileContext.cs
- EntryWrittenEventArgs.cs
- HTMLTextWriter.cs
- BindingBase.cs
- BinaryMethodMessage.cs
- JournalEntry.cs
- MeasurementDCInfo.cs
- TraceContext.cs
- VerificationException.cs
- NumberAction.cs
- safesecurityhelperavalon.cs
- NodeFunctions.cs
- SrgsToken.cs
- FixedPageStructure.cs
- Animatable.cs
- XmlEnumAttribute.cs
- UrlPath.cs
- SystemUdpStatistics.cs
- ConfigurationElement.cs
- InternalTypeHelper.cs
- CachedBitmap.cs
- DataGridViewCellEventArgs.cs