Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / HttpModuleActionCollection.cs / 1305376 / HttpModuleActionCollection.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.Configuration; using System.Globalization; using System.Security.Permissions; // class HttpModulesSection [ConfigurationCollection(typeof(HttpModuleAction))] public sealed class HttpModuleActionCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static HttpModuleActionCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public HttpModuleActionCollection() : base(StringComparer.OrdinalIgnoreCase) { } public HttpModuleAction this[int index] { get { return (HttpModuleAction)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public int IndexOf(HttpModuleAction action) { return BaseIndexOf(action); } public void Add(HttpModuleAction httpModule) { BaseAdd(httpModule); } public void Remove(HttpModuleAction action) { BaseRemove(action.Key); } public void Remove(string name) { BaseRemove(name); } public void RemoveAt(int index) { BaseRemoveAt(index); } protected override ConfigurationElement CreateNewElement() { return new HttpModuleAction(); } protected override Object GetElementKey(ConfigurationElement element) { return ((HttpModuleAction)element).Key; } protected override bool IsElementRemovable(ConfigurationElement element) { HttpModuleAction module = (HttpModuleAction)element; if (BaseIndexOf(module) == -1) // does it exist? { if (HttpModuleAction.IsSpecialModuleName(module.Name)) { throw new ConfigurationErrorsException(SR.GetString( SR.Special_module_cannot_be_removed_manually, module.Name), module.FileName, module.LineNumber); } else { throw new ConfigurationErrorsException(SR.GetString( SR.Module_not_in_app, module.Name), module.FileName, module.LineNumber); } } return true; } public void Clear() { BaseClear(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CompositeDataBoundControl.cs
- RotateTransform.cs
- CustomAttributeBuilder.cs
- SuppressMessageAttribute.cs
- ArrayEditor.cs
- ButtonField.cs
- MergablePropertyAttribute.cs
- DataBoundControl.cs
- DataGridCellsPanel.cs
- SecurityPermission.cs
- Binding.cs
- DbMetaDataCollectionNames.cs
- ModuleBuilder.cs
- MembershipSection.cs
- SchemaLookupTable.cs
- JournalNavigationScope.cs
- UriWriter.cs
- SplineKeyFrames.cs
- TypedElement.cs
- IndexOutOfRangeException.cs
- WebPartDescriptionCollection.cs
- LinkedList.cs
- SafeLibraryHandle.cs
- ListBoxItemWrapperAutomationPeer.cs
- ConfigurationCollectionAttribute.cs
- ParenthesizePropertyNameAttribute.cs
- InstanceCreationEditor.cs
- LocatorPartList.cs
- IndicShape.cs
- Membership.cs
- OleDbEnumerator.cs
- DocobjHost.cs
- FixedDocument.cs
- BuiltInExpr.cs
- OAVariantLib.cs
- XMLSyntaxException.cs
- SessionPageStatePersister.cs
- ScrollEventArgs.cs
- ControlBindingsCollection.cs
- HttpListener.cs
- DesignDataSource.cs
- ItemType.cs
- TableLayoutStyle.cs
- CollectionViewGroupRoot.cs
- LinkedResourceCollection.cs
- HandleExceptionArgs.cs
- HMACRIPEMD160.cs
- ErrorActivity.cs
- FixedNode.cs
- RegisteredHiddenField.cs
- ActivationProxy.cs
- BoolExpression.cs
- WorkflowQueuingService.cs
- TreeNodeBinding.cs
- WebEvents.cs
- ContractUtils.cs
- odbcmetadatacollectionnames.cs
- Tuple.cs
- Vector3DAnimationUsingKeyFrames.cs
- JsonServiceDocumentSerializer.cs
- MobileListItemCollection.cs
- Ppl.cs
- XmlBinaryReader.cs
- VisualStateManager.cs
- Typography.cs
- StrokeNodeEnumerator.cs
- ModelItemCollectionImpl.cs
- SparseMemoryStream.cs
- PropertyPath.cs
- TextDecorationCollection.cs
- SoapCodeExporter.cs
- ServicesUtilities.cs
- RelationshipConverter.cs
- StaticExtension.cs
- GradientStop.cs
- VariableModifiersHelper.cs
- BinaryObjectInfo.cs
- PersonalizablePropertyEntry.cs
- WebScriptEnablingBehavior.cs
- ParallelRangeManager.cs
- BamlMapTable.cs
- DocumentViewerConstants.cs
- Panel.cs
- UIEndRequest.cs
- OdbcStatementHandle.cs
- BufferModeSettings.cs
- ScriptResourceInfo.cs
- FullTextLine.cs
- HandoffBehavior.cs
- StringSorter.cs
- EmbeddedMailObjectsCollection.cs
- WinCategoryAttribute.cs
- PrivilegedConfigurationManager.cs
- WebConfigurationFileMap.cs
- MimeReflector.cs
- PopOutPanel.cs
- TextRangeBase.cs
- Cursor.cs
- HttpProfileBase.cs
- GridViewRowPresenterBase.cs