Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / HttpHandlerActionCollection.cs / 1305376 / HttpHandlerActionCollection.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.Compilation; using System.Globalization; using System.Security.Permissions; [ConfigurationCollection(typeof(HttpHandlerAction), CollectionType = ConfigurationElementCollectionType.AddRemoveClearMapAlternate)] public sealed class HttpHandlerActionCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static HttpHandlerActionCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } public HttpHandlerActionCollection() : base(StringComparer.OrdinalIgnoreCase) { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.AddRemoveClearMapAlternate; } } protected override bool ThrowOnDuplicate { get { return false; } } public HttpHandlerAction this[int index] { get { return (HttpHandlerAction)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public int IndexOf(HttpHandlerAction action) { return BaseIndexOf(action); } public void Add(HttpHandlerAction httpHandlerAction) { BaseAdd(httpHandlerAction, false); } public void Remove(HttpHandlerAction action) { BaseRemove(action.Key); } public void RemoveAt(int index) { BaseRemoveAt(index); } public void Remove(string verb, string path) { BaseRemove("verb=" + verb + " | path=" + path); } protected override ConfigurationElement CreateNewElement() { return new HttpHandlerAction(); } protected override Object GetElementKey(ConfigurationElement element) { return ((HttpHandlerAction)element).Key; } public void Clear() { BaseClear(); } } } // 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.Compilation; using System.Globalization; using System.Security.Permissions; [ConfigurationCollection(typeof(HttpHandlerAction), CollectionType = ConfigurationElementCollectionType.AddRemoveClearMapAlternate)] public sealed class HttpHandlerActionCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static HttpHandlerActionCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } public HttpHandlerActionCollection() : base(StringComparer.OrdinalIgnoreCase) { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.AddRemoveClearMapAlternate; } } protected override bool ThrowOnDuplicate { get { return false; } } public HttpHandlerAction this[int index] { get { return (HttpHandlerAction)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public int IndexOf(HttpHandlerAction action) { return BaseIndexOf(action); } public void Add(HttpHandlerAction httpHandlerAction) { BaseAdd(httpHandlerAction, false); } public void Remove(HttpHandlerAction action) { BaseRemove(action.Key); } public void RemoveAt(int index) { BaseRemoveAt(index); } public void Remove(string verb, string path) { BaseRemove("verb=" + verb + " | path=" + path); } protected override ConfigurationElement CreateNewElement() { return new HttpHandlerAction(); } protected override Object GetElementKey(ConfigurationElement element) { return ((HttpHandlerAction)element).Key; } public void Clear() { BaseClear(); } } } // 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
- ColorAnimationBase.cs
- SaveCardRequest.cs
- StaticSiteMapProvider.cs
- BackoffTimeoutHelper.cs
- TreeView.cs
- PointCollectionConverter.cs
- SQLDecimalStorage.cs
- SHA384Managed.cs
- BindingSourceDesigner.cs
- TransformationRules.cs
- FreezableOperations.cs
- RemoteX509AsymmetricSecurityKey.cs
- PrintPageEvent.cs
- Interlocked.cs
- ThemeDirectoryCompiler.cs
- RawKeyboardInputReport.cs
- NamespaceDecl.cs
- OdbcConnectionPoolProviderInfo.cs
- FrugalList.cs
- Ref.cs
- FilterFactory.cs
- DbInsertCommandTree.cs
- HttpHandlersSection.cs
- SqlDataSourceSummaryPanel.cs
- DataServiceContext.cs
- BasicCellRelation.cs
- ServiceEndpointElement.cs
- GridItemPattern.cs
- ListBoxAutomationPeer.cs
- XPathPatternParser.cs
- XPathExpr.cs
- MarshalByRefObject.cs
- CategoryNameCollection.cs
- VirtualizingStackPanel.cs
- FormViewUpdateEventArgs.cs
- ComboBoxRenderer.cs
- TextElementEnumerator.cs
- TabOrder.cs
- CodeChecksumPragma.cs
- UnsafeNativeMethods.cs
- HtmlPageAdapter.cs
- TransactionInterop.cs
- BindingCollection.cs
- CurrentChangingEventArgs.cs
- ItemCheckEvent.cs
- ResourcesBuildProvider.cs
- RegexInterpreter.cs
- precedingsibling.cs
- ToolStripRenderEventArgs.cs
- SectionXmlInfo.cs
- ConsumerConnectionPoint.cs
- SynchronizedDispatch.cs
- OdbcTransaction.cs
- ObjectListSelectEventArgs.cs
- XmlHierarchicalEnumerable.cs
- MessageQueueEnumerator.cs
- HealthMonitoringSection.cs
- ItemContainerGenerator.cs
- AutoGeneratedFieldProperties.cs
- ISessionStateStore.cs
- PagerSettings.cs
- XPathMessageFilterTable.cs
- UnknownBitmapEncoder.cs
- ReflectionUtil.cs
- DoubleAnimationUsingPath.cs
- SkewTransform.cs
- SatelliteContractVersionAttribute.cs
- FacetDescription.cs
- WizardPanelChangingEventArgs.cs
- ComPlusSynchronizationContext.cs
- _NTAuthentication.cs
- EmbeddedMailObject.cs
- HtmlTableRowCollection.cs
- FontStyles.cs
- TreeNodeBinding.cs
- GridViewRowEventArgs.cs
- TypeInfo.cs
- WindowPatternIdentifiers.cs
- GeneralTransform.cs
- KeyedByTypeCollection.cs
- WebServiceEnumData.cs
- SafeEventLogWriteHandle.cs
- ThrowHelper.cs
- ReadOnlyHierarchicalDataSourceView.cs
- XmlSchemaElement.cs
- Trigger.cs
- XmlEncodedRawTextWriter.cs
- ParallelTimeline.cs
- Touch.cs
- ResetableIterator.cs
- COAUTHINFO.cs
- EdmPropertyAttribute.cs
- SqlDataSourceStatusEventArgs.cs
- ColumnBinding.cs
- DataGridView.cs
- ExchangeUtilities.cs
- FileUtil.cs
- SHA256Cng.cs
- XmlSignificantWhitespace.cs
- _Connection.cs