Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / HttpModuleActionCollection.cs / 5 / 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(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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(); } } } // 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
- SqlUserDefinedAggregateAttribute.cs
- TerminateSequenceResponse.cs
- RawKeyboardInputReport.cs
- XmlDataCollection.cs
- SecurityTokenResolver.cs
- EncoderReplacementFallback.cs
- Decoder.cs
- __ConsoleStream.cs
- UnhandledExceptionEventArgs.cs
- DynamicValueConverter.cs
- URLString.cs
- SchemaCreator.cs
- ExtendedPropertyCollection.cs
- ScrollEventArgs.cs
- ZipArchive.cs
- RectIndependentAnimationStorage.cs
- VirtualizedItemPattern.cs
- FileDetails.cs
- MissingMethodException.cs
- DefaultMemberAttribute.cs
- SqlReorderer.cs
- IdentityHolder.cs
- COMException.cs
- LocatorPartList.cs
- TaskCanceledException.cs
- DummyDataSource.cs
- X509RecipientCertificateServiceElement.cs
- DriveInfo.cs
- IPGlobalProperties.cs
- BindingCompleteEventArgs.cs
- SQLMembershipProvider.cs
- HGlobalSafeHandle.cs
- RefExpr.cs
- TriggerCollection.cs
- PropertyInfoSet.cs
- UrlPropertyAttribute.cs
- cookiecollection.cs
- BamlMapTable.cs
- StorageMappingItemCollection.cs
- MissingMethodException.cs
- PageAsyncTask.cs
- ToolStripDropTargetManager.cs
- TextHintingModeValidation.cs
- AbsoluteQuery.cs
- UpdateTracker.cs
- ToolStripComboBox.cs
- ForceCopyBuildProvider.cs
- ConfigurationErrorsException.cs
- CompilationSection.cs
- InvalidOperationException.cs
- WebPartChrome.cs
- Command.cs
- InfoCardArgumentException.cs
- Camera.cs
- EncryptedPackageFilter.cs
- HandledEventArgs.cs
- ReflectPropertyDescriptor.cs
- PriorityQueue.cs
- DiscoveryExceptionDictionary.cs
- FamilyMapCollection.cs
- BrowserInteropHelper.cs
- CollectionType.cs
- CompilerWrapper.cs
- BufferBuilder.cs
- HttpFormatExtensions.cs
- RequiredAttributeAttribute.cs
- ThemeConfigurationDialog.cs
- FormViewInsertedEventArgs.cs
- DefaultBindingPropertyAttribute.cs
- InputScope.cs
- HMACSHA512.cs
- UserPersonalizationStateInfo.cs
- ChangePassword.cs
- TagNameToTypeMapper.cs
- OleDbTransaction.cs
- DiscreteKeyFrames.cs
- BindUriHelper.cs
- DataBoundControlHelper.cs
- FileDialog.cs
- TypeBuilderInstantiation.cs
- CreateParams.cs
- RectangleF.cs
- XmlAtomicValue.cs
- TemplateBindingExpressionConverter.cs
- PriorityRange.cs
- IdentitySection.cs
- DataSetViewSchema.cs
- FrameworkTemplate.cs
- PositiveTimeSpanValidator.cs
- MarshalByValueComponent.cs
- DialogResultConverter.cs
- basenumberconverter.cs
- BinaryExpression.cs
- Exceptions.cs
- TagMapInfo.cs
- TypeToken.cs
- HttpInputStream.cs
- ServiceNotStartedException.cs
- Padding.cs
- ResumeStoryboard.cs