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
- DeploymentSectionCache.cs
- DataGridViewButtonColumn.cs
- SymbolResolver.cs
- MenuStrip.cs
- EditorPart.cs
- cache.cs
- XamlReader.cs
- UInt32Converter.cs
- DoubleAnimation.cs
- LogFlushAsyncResult.cs
- AppSettingsReader.cs
- PathFigureCollectionValueSerializer.cs
- OracleParameterCollection.cs
- NativeMethods.cs
- QilIterator.cs
- SynchronizationFilter.cs
- CreateRefExpr.cs
- WebBrowsableAttribute.cs
- GlobalEventManager.cs
- AngleUtil.cs
- SecurityChannelFactory.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- SpeakCompletedEventArgs.cs
- CustomPopupPlacement.cs
- HttpModuleActionCollection.cs
- AlgoModule.cs
- Error.cs
- LinkUtilities.cs
- GatewayDefinition.cs
- remotingproxy.cs
- SmiContext.cs
- DataTableNewRowEvent.cs
- OdbcConnectionPoolProviderInfo.cs
- LightweightEntityWrapper.cs
- TabPage.cs
- TextSerializer.cs
- OneToOneMappingSerializer.cs
- TextView.cs
- RSAPKCS1SignatureDeformatter.cs
- FunctionUpdateCommand.cs
- MimeTypeMapper.cs
- SchemaTableColumn.cs
- TemplateBindingExpressionConverter.cs
- TimeSpanConverter.cs
- XamlParser.cs
- ExpandoObject.cs
- XslTransform.cs
- AuthenticationConfig.cs
- WebServiceAttribute.cs
- GradientStop.cs
- TextPointer.cs
- ToolStripSystemRenderer.cs
- AnnotationResource.cs
- MenuRendererStandards.cs
- SynchronizationFilter.cs
- ExcludeFromCodeCoverageAttribute.cs
- TextServicesCompartmentEventSink.cs
- HtmlPageAdapter.cs
- ConfigUtil.cs
- SizeAnimationUsingKeyFrames.cs
- PageFunction.cs
- DesignerActionListCollection.cs
- ReverseInheritProperty.cs
- SchemaImporter.cs
- TdsParserStaticMethods.cs
- HtmlTableCell.cs
- CodeParameterDeclarationExpression.cs
- FixedSOMPage.cs
- ListSortDescriptionCollection.cs
- StorageTypeMapping.cs
- ColumnWidthChangedEvent.cs
- RowBinding.cs
- MarginsConverter.cs
- Baml2006KeyRecord.cs
- ToolStripDropDownDesigner.cs
- ListManagerBindingsCollection.cs
- WebPermission.cs
- Fault.cs
- Form.cs
- TreeNodeMouseHoverEvent.cs
- XmlSerializerAssemblyAttribute.cs
- TextServicesManager.cs
- WebServicesSection.cs
- IisTraceWebEventProvider.cs
- AsyncStreamReader.cs
- TextEmbeddedObject.cs
- GetPageNumberCompletedEventArgs.cs
- CodeAttributeArgumentCollection.cs
- CorrelationValidator.cs
- AdapterDictionary.cs
- InputMethod.cs
- Stroke2.cs
- BamlLocalizabilityResolver.cs
- SqlFunctionAttribute.cs
- CanonicalFontFamilyReference.cs
- SqlServices.cs
- ParagraphVisual.cs
- PkcsMisc.cs
- TemplateInstanceAttribute.cs
- HttpResponseHeader.cs