Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / HttpHandlerActionCollection.cs / 5 / 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)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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. //------------------------------------------------------------------------------ //// 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)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- connectionpool.cs
- SystemIPv4InterfaceProperties.cs
- FileSecurity.cs
- SchemaCollectionPreprocessor.cs
- COSERVERINFO.cs
- AnyReturnReader.cs
- FixedMaxHeap.cs
- Expander.cs
- DesignerDataSourceView.cs
- TreeViewImageGenerator.cs
- ButtonStandardAdapter.cs
- WrappedReader.cs
- EntityContainerEmitter.cs
- PixelFormat.cs
- HoistedLocals.cs
- TypeUtil.cs
- ToolboxItemCollection.cs
- MappedMetaModel.cs
- GridViewColumn.cs
- SponsorHelper.cs
- CapabilitiesSection.cs
- MarshalByRefObject.cs
- SmtpFailedRecipientException.cs
- OleStrCAMarshaler.cs
- Matrix.cs
- FlowDocument.cs
- CompModSwitches.cs
- ShimAsPublicXamlType.cs
- TimeZone.cs
- InlineUIContainer.cs
- SqlDataSourceCommandEventArgs.cs
- _TransmitFileOverlappedAsyncResult.cs
- ComponentResourceKey.cs
- DependencyPropertyValueSerializer.cs
- Cell.cs
- HtmlTextArea.cs
- Evidence.cs
- TextModifierScope.cs
- ConfigurationStrings.cs
- PenThreadPool.cs
- GeometryGroup.cs
- dataprotectionpermissionattribute.cs
- ObjectManager.cs
- MetadataCacheItem.cs
- ScriptResourceAttribute.cs
- TextLineResult.cs
- LinkGrep.cs
- sqlstateclientmanager.cs
- PermissionSetEnumerator.cs
- PersonalizationStateQuery.cs
- ConcurrentStack.cs
- ProfileServiceManager.cs
- PerspectiveCamera.cs
- ConfigurationSchemaErrors.cs
- TypeLoadException.cs
- PageSettings.cs
- SwitchAttribute.cs
- UpdateExpressionVisitor.cs
- StorageBasedPackageProperties.cs
- UpDownEvent.cs
- LoginDesignerUtil.cs
- HttpException.cs
- RSAPKCS1KeyExchangeFormatter.cs
- SimpleHandlerBuildProvider.cs
- InternalDispatchObject.cs
- X509IssuerSerialKeyIdentifierClause.cs
- controlskin.cs
- PartialCachingControl.cs
- StringExpressionSet.cs
- XPathExpr.cs
- EventEntry.cs
- DragDropHelper.cs
- WinEventQueueItem.cs
- keycontainerpermission.cs
- ParentQuery.cs
- SortFieldComparer.cs
- DropShadowBitmapEffect.cs
- HostingEnvironment.cs
- ExpandoObject.cs
- columnmapfactory.cs
- InvalidPrinterException.cs
- TextPointer.cs
- ScrollProviderWrapper.cs
- PolicyStatement.cs
- HebrewNumber.cs
- UriScheme.cs
- ThicknessAnimationBase.cs
- FragmentQuery.cs
- ListViewItemEventArgs.cs
- RootProfilePropertySettingsCollection.cs
- WebControl.cs
- _ConnectionGroup.cs
- FrameworkPropertyMetadata.cs
- X509SubjectKeyIdentifierClause.cs
- RegionInfo.cs
- AdornedElementPlaceholder.cs
- PrintingPermission.cs
- EventRecordWrittenEventArgs.cs
- LinkConverter.cs
- DataBindingList.cs