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
- sitestring.cs
- BufferedStream2.cs
- ShaperBuffers.cs
- VersionValidator.cs
- DataGridViewHitTestInfo.cs
- OrderedDictionary.cs
- Automation.cs
- CounterSampleCalculator.cs
- OdbcConnectionPoolProviderInfo.cs
- ChannelEndpointElement.cs
- SchemeSettingElementCollection.cs
- ObjectDataSourceSelectingEventArgs.cs
- Util.cs
- LinqDataSourceHelper.cs
- QilReplaceVisitor.cs
- PassportAuthenticationEventArgs.cs
- CellConstant.cs
- RadioButtonStandardAdapter.cs
- EncoderParameter.cs
- AccessViolationException.cs
- ResourcePermissionBase.cs
- TypeConverterHelper.cs
- TranslateTransform.cs
- ReadOnlyHierarchicalDataSourceView.cs
- TextEffectResolver.cs
- FileSystemWatcher.cs
- NativeObjectSecurity.cs
- StringAnimationUsingKeyFrames.cs
- SByte.cs
- DatePickerDateValidationErrorEventArgs.cs
- FileDetails.cs
- DefaultTextStore.cs
- mediaeventargs.cs
- SystemWebSectionGroup.cs
- OdbcCommandBuilder.cs
- StateDesignerConnector.cs
- EntityDataSourceColumn.cs
- DbDeleteCommandTree.cs
- _SSPISessionCache.cs
- AlgoModule.cs
- XmlTextReaderImplHelpers.cs
- ExecutedRoutedEventArgs.cs
- HMACMD5.cs
- ProxyAttribute.cs
- DbMetaDataColumnNames.cs
- SByte.cs
- AppModelKnownContentFactory.cs
- XmlTextReader.cs
- KeyedHashAlgorithm.cs
- EmptyControlCollection.cs
- DbDataRecord.cs
- InvokeProviderWrapper.cs
- ProcessHostMapPath.cs
- SecurityContext.cs
- QilReplaceVisitor.cs
- TextServicesManager.cs
- Rotation3DKeyFrameCollection.cs
- MeasureData.cs
- SmiMetaDataProperty.cs
- InfoCardKeyedHashAlgorithm.cs
- WebPartDisplayMode.cs
- SqlAliasesReferenced.cs
- ContainerParagraph.cs
- XamlBuildTaskServices.cs
- VBCodeProvider.cs
- StructuredTypeEmitter.cs
- _LocalDataStoreMgr.cs
- Crc32.cs
- AssemblyAttributes.cs
- NumberFormatInfo.cs
- MimeTypeAttribute.cs
- Vector3D.cs
- DispatcherExceptionEventArgs.cs
- HwndStylusInputProvider.cs
- DrawingVisualDrawingContext.cs
- WindowsFormsSynchronizationContext.cs
- IndexOutOfRangeException.cs
- EndpointDesigner.cs
- AttachedAnnotation.cs
- Context.cs
- SizeF.cs
- IndexedString.cs
- GeometryHitTestResult.cs
- PowerModeChangedEventArgs.cs
- CodeTypeReferenceSerializer.cs
- PasswordTextContainer.cs
- TextParagraphView.cs
- _OverlappedAsyncResult.cs
- DebugInfo.cs
- HTTPNotFoundHandler.cs
- Transactions.cs
- ModuleConfigurationInfo.cs
- Filter.cs
- CompatibleIComparer.cs
- DataGridViewIntLinkedList.cs
- VerticalAlignConverter.cs
- CurrentChangingEventManager.cs
- BevelBitmapEffect.cs
- PatternMatcher.cs
- DynamicFilterExpression.cs