Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / HttpHandlerActionCollection.cs / 3 / 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(); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SoapAttributes.cs
- PropertyMapper.cs
- ResourcePool.cs
- ChannelRequirements.cs
- TransformerConfigurationWizardBase.cs
- JsonObjectDataContract.cs
- XmlSchemaAttribute.cs
- MessageSecurityOverTcp.cs
- SmtpTransport.cs
- HttpResponse.cs
- HorizontalAlignConverter.cs
- TemplateInstanceAttribute.cs
- SoapInteropTypes.cs
- StaticResourceExtension.cs
- GPPOINT.cs
- RtfNavigator.cs
- DynamicObject.cs
- XPathArrayIterator.cs
- ComponentResourceKey.cs
- COM2FontConverter.cs
- PublisherIdentityPermission.cs
- Win32NamedPipes.cs
- LoadRetryConstantStrategy.cs
- SoapExtensionImporter.cs
- WSHttpSecurity.cs
- WebBodyFormatMessageProperty.cs
- SparseMemoryStream.cs
- IsolatedStorage.cs
- AtomContentProperty.cs
- RouteItem.cs
- StaticTextPointer.cs
- ActivityDelegate.cs
- DataGridState.cs
- CodeTypeParameterCollection.cs
- SynchronizedDispatch.cs
- LinkDescriptor.cs
- BindingObserver.cs
- UnauthorizedWebPart.cs
- ObfuscateAssemblyAttribute.cs
- Type.cs
- CreatingCookieEventArgs.cs
- QueryGeneratorBase.cs
- SyntaxCheck.cs
- WebProxyScriptElement.cs
- UndirectedGraph.cs
- WebPartCloseVerb.cs
- FormsAuthenticationCredentials.cs
- AppSettingsSection.cs
- PartManifestEntry.cs
- bindurihelper.cs
- PrintDialog.cs
- ProcessModelInfo.cs
- DataServiceEntityAttribute.cs
- RegisteredExpandoAttribute.cs
- CodePageEncoding.cs
- AtomServiceDocumentSerializer.cs
- PathSegmentCollection.cs
- loginstatus.cs
- XmlILAnnotation.cs
- EditorPartChrome.cs
- Vector3DConverter.cs
- UIElementPropertyUndoUnit.cs
- ArrayExtension.cs
- CollectionViewProxy.cs
- XmlDictionaryString.cs
- ToolStripPanelDesigner.cs
- StreamWriter.cs
- PageTheme.cs
- TagNameToTypeMapper.cs
- ReadOnlyCollection.cs
- ObjectItemCollection.cs
- OrderedDictionary.cs
- AdjustableArrowCap.cs
- AttributeQuery.cs
- SwitchExpression.cs
- FilterQueryOptionExpression.cs
- MessageQueueCriteria.cs
- DesignerOptions.cs
- DifferencingCollection.cs
- ThreadWorkerController.cs
- BulletChrome.cs
- ReceiveActivityDesigner.cs
- WorkflowWebService.cs
- ElapsedEventArgs.cs
- ObjectListField.cs
- DiagnosticsConfigurationHandler.cs
- TextRangeEditTables.cs
- TypedRowHandler.cs
- NavigationProgressEventArgs.cs
- DropShadowEffect.cs
- DataContext.cs
- TypeConverterValueSerializer.cs
- ScriptReferenceEventArgs.cs
- SurrogateDataContract.cs
- LineServices.cs
- X509Utils.cs
- GridViewRowPresenterBase.cs
- TextDecorationCollection.cs
- AsyncResult.cs
- SafeFileHandle.cs