Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExecutedRoutedEventArgs.cs
- FlowLayoutSettings.cs
- GenericAuthenticationEventArgs.cs
- SoapFault.cs
- NavigatingCancelEventArgs.cs
- ExpressionBuilderContext.cs
- SecureEnvironment.cs
- SafeProcessHandle.cs
- RepeaterDesigner.cs
- DataGridViewCellValidatingEventArgs.cs
- ErrorRuntimeConfig.cs
- AsnEncodedData.cs
- DiagnosticTrace.cs
- DtrList.cs
- PixelShader.cs
- CurrentChangedEventManager.cs
- PropVariant.cs
- RegistrationServices.cs
- WebPartManagerInternals.cs
- QueryGenerator.cs
- CompositeDesignerAccessibleObject.cs
- GradientStop.cs
- XmlAttributeProperties.cs
- FlowSwitchLink.cs
- Rectangle.cs
- PermissionRequestEvidence.cs
- ManualResetEvent.cs
- TreeViewDesigner.cs
- ScriptRef.cs
- DropDownList.cs
- BookmarkResumptionRecord.cs
- DecoratedNameAttribute.cs
- CompilationLock.cs
- ArglessEventHandlerProxy.cs
- MDIWindowDialog.cs
- HwndStylusInputProvider.cs
- ButtonChrome.cs
- AnnotationResource.cs
- DataRowView.cs
- DeferredElementTreeState.cs
- CreationContext.cs
- LinqDataSourceContextEventArgs.cs
- FrameworkObject.cs
- DeploymentSection.cs
- Label.cs
- AsymmetricSignatureDeformatter.cs
- MsmqOutputSessionChannel.cs
- XhtmlTextWriter.cs
- IProducerConsumerCollection.cs
- VSWCFServiceContractGenerator.cs
- ViewGenerator.cs
- SimpleFieldTemplateUserControl.cs
- WriterOutput.cs
- WebResourceAttribute.cs
- BitmapDecoder.cs
- BaseValidator.cs
- KeyNotFoundException.cs
- XmlnsPrefixAttribute.cs
- StorageMappingItemLoader.cs
- ConfigXmlElement.cs
- SqlDataReaderSmi.cs
- VariableAction.cs
- BitmapFrameEncode.cs
- CookieHandler.cs
- ApplicationActivator.cs
- NavigationEventArgs.cs
- KeyInterop.cs
- UniqueIdentifierService.cs
- BitmapMetadataBlob.cs
- TypeConverter.cs
- CatalogZone.cs
- ProxyAttribute.cs
- ToolStripDropDownItem.cs
- SqlAggregateChecker.cs
- HWStack.cs
- Animatable.cs
- EtwTrace.cs
- FlowDocument.cs
- SemaphoreFullException.cs
- StoragePropertyMapping.cs
- LoginUtil.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- Run.cs
- DateRangeEvent.cs
- httpserverutility.cs
- ObjectReaderCompiler.cs
- BuilderPropertyEntry.cs
- CacheSection.cs
- ClipboardData.cs
- XmlSchemaSimpleTypeRestriction.cs
- PreviewControlDesigner.cs
- Listener.cs
- WorkflowApplicationUnloadedException.cs
- DataContractSet.cs
- OneOfScalarConst.cs
- XmlArrayAttribute.cs
- PieceDirectory.cs
- XamlPathDataSerializer.cs
- DocumentOrderQuery.cs
- PermissionSetEnumerator.cs