Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / HttpModuleActionCollection.cs / 3 / 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))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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(); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectManager.cs
- Literal.cs
- ImageProxy.cs
- RequestCacheEntry.cs
- PathGeometry.cs
- RtfControls.cs
- SymDocumentType.cs
- BinaryObjectWriter.cs
- SafeHandles.cs
- GeneralTransformGroup.cs
- PackagePartCollection.cs
- XmlEncoding.cs
- _NegoState.cs
- SqlDataSourceQueryEditorForm.cs
- SqlRewriteScalarSubqueries.cs
- WaitForChangedResult.cs
- HashLookup.cs
- AbstractExpressions.cs
- PagesSection.cs
- SessionEndedEventArgs.cs
- WorkflowInstanceProvider.cs
- _CacheStreams.cs
- Metafile.cs
- IERequestCache.cs
- remotingproxy.cs
- UnknownWrapper.cs
- DiscreteKeyFrames.cs
- ObjectFullSpanRewriter.cs
- SerializableReadOnlyDictionary.cs
- CustomCredentialPolicy.cs
- HtmlWindow.cs
- RegexWorker.cs
- PerformanceCounterCategory.cs
- JulianCalendar.cs
- DataGridColumn.cs
- WindowsComboBox.cs
- PrimitiveXmlSerializers.cs
- NativeMethods.cs
- DockPatternIdentifiers.cs
- FocusTracker.cs
- exports.cs
- VisualStyleInformation.cs
- ListSortDescription.cs
- ProxyAttribute.cs
- TerminatorSinks.cs
- EnumMember.cs
- control.ime.cs
- _IPv4Address.cs
- DateTime.cs
- LambdaCompiler.Expressions.cs
- DataGridViewLinkCell.cs
- InternalResources.cs
- WindowsGrip.cs
- IBuiltInEvidence.cs
- ExpressionPrefixAttribute.cs
- IisTraceListener.cs
- RegisteredHiddenField.cs
- Pair.cs
- XmlWrappingReader.cs
- SelectorAutomationPeer.cs
- StandardBindingElementCollection.cs
- XamlInterfaces.cs
- PartialClassGenerationTask.cs
- ExtensionSurface.cs
- BitmapEffectOutputConnector.cs
- XmlSchemaRedefine.cs
- RoutedEventValueSerializer.cs
- SecurityTokenReferenceStyle.cs
- RuleSetDialog.cs
- ObjectAnimationUsingKeyFrames.cs
- QilFactory.cs
- DesignerDataTable.cs
- Root.cs
- EdmToObjectNamespaceMap.cs
- DataPagerCommandEventArgs.cs
- XmlReader.cs
- DiscoveryProxy.cs
- RelationshipType.cs
- PtsPage.cs
- TextBreakpoint.cs
- DataGridViewColumnHeaderCell.cs
- ScrollData.cs
- DefaultBindingPropertyAttribute.cs
- InvalidateEvent.cs
- JournalEntry.cs
- SubMenuStyleCollection.cs
- PathGeometry.cs
- TranslateTransform.cs
- MultilineStringConverter.cs
- ClaimSet.cs
- NativeMethods.cs
- DiagnosticsConfigurationHandler.cs
- WebControlAdapter.cs
- CodeGenerator.cs
- TextFormatterContext.cs
- Documentation.cs
- ObfuscateAssemblyAttribute.cs
- safemediahandle.cs
- ActivityTypeDesigner.xaml.cs
- ServicePointManagerElement.cs