Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / HttpModuleCollection.cs / 1 / HttpModuleCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Collection of IHttpModules * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web { using System.Runtime.InteropServices; using System.Collections; using System.Collections.Specialized; using System.Web; using System.Web.Util; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class HttpModuleCollection : NameObjectCollectionBase { // cached All[] arrays private IHttpModule[] _all; private String[] _allKeys; internal HttpModuleCollection() : base(Misc.CaseInsensitiveInvariantKeyComparer) { } ///A collection of IHttpModules ////// public void CopyTo(Array dest, int index) { if (_all == null) { int n = Count; _all = new IHttpModule[n]; for (int i = 0; i < n; i++) _all[i] = Get(i); } if (_all != null) { _all.CopyTo(dest, index); } } internal void AddModule(String name, IHttpModule m) { _all = null; _allKeys = null; BaseAdd(name, m); } #if UNUSED internal void Reset() { _all = null; _allKeys = null; BaseClear(); } #endif // // Access by name // ///[To be supplied.] ////// public IHttpModule Get(String name) { return(IHttpModule)BaseGet(name); } ///[To be supplied.] ////// public IHttpModule this[String name] { get { return Get(name);} } // // Indexed access // ///[To be supplied.] ////// public IHttpModule Get(int index) { return(IHttpModule)BaseGet(index); } ///[To be supplied.] ////// public String GetKey(int index) { return BaseGetKey(index); } ///[To be supplied.] ////// public IHttpModule this[int index] { get { return Get(index);} } // // Access to keys and values as arrays // ///[To be supplied.] ////// public String[] AllKeys { get { if (_allKeys == null) _allKeys = BaseGetAllKeys(); return _allKeys; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlFileEditor.cs
- MSHTMLHost.cs
- XPathParser.cs
- HeaderedContentControl.cs
- SimpleType.cs
- CodeTypeDeclaration.cs
- ToolStripTemplateNode.cs
- x509utils.cs
- EventLevel.cs
- DoubleStorage.cs
- LinearKeyFrames.cs
- ApplicationManager.cs
- ListBindingHelper.cs
- XsdCachingReader.cs
- BooleanFunctions.cs
- MethodMessage.cs
- LoginView.cs
- StorageBasedPackageProperties.cs
- RSAPKCS1SignatureFormatter.cs
- LineSegment.cs
- SQLBytesStorage.cs
- WindowInteractionStateTracker.cs
- Page.cs
- HiddenField.cs
- ThumbAutomationPeer.cs
- VScrollProperties.cs
- PasswordBoxAutomationPeer.cs
- DataGridViewMethods.cs
- AnimatedTypeHelpers.cs
- TemplateKeyConverter.cs
- CommandBinding.cs
- ListenerElementsCollection.cs
- TypeDelegator.cs
- ArraySegment.cs
- NativeMethods.cs
- _DomainName.cs
- RecordManager.cs
- ListView.cs
- BeginEvent.cs
- DynamicDataResources.Designer.cs
- LinkedList.cs
- SoapSchemaExporter.cs
- AnnotationObservableCollection.cs
- ObfuscateAssemblyAttribute.cs
- AssociationSetMetadata.cs
- ConnectionPool.cs
- InternalControlCollection.cs
- WebHttpDispatchOperationSelector.cs
- ReadOnlyHierarchicalDataSourceView.cs
- QueryResponse.cs
- QueueSurrogate.cs
- WorkflowRuntimeService.cs
- SectionInput.cs
- UrlAuthorizationModule.cs
- X509ClientCertificateCredentialsElement.cs
- RegionIterator.cs
- InternalResources.cs
- DockProviderWrapper.cs
- XmlSerializationReader.cs
- HttpHandlerAction.cs
- IdentityHolder.cs
- WebPartManagerInternals.cs
- TextBlockAutomationPeer.cs
- Calendar.cs
- XmlSerializerVersionAttribute.cs
- DockingAttribute.cs
- FormatVersion.cs
- DocumentPageViewAutomationPeer.cs
- WindowsImpersonationContext.cs
- SqlMethods.cs
- RoleService.cs
- ExtenderControl.cs
- ApplicationActivator.cs
- HttpContext.cs
- TdsParserStateObject.cs
- InvalidDataContractException.cs
- XmlNode.cs
- EditorAttribute.cs
- Label.cs
- Drawing.cs
- NameValueSectionHandler.cs
- Annotation.cs
- EnterpriseServicesHelper.cs
- SharedUtils.cs
- ExpressionList.cs
- PerformanceCounterLib.cs
- ConsumerConnectionPoint.cs
- SynchronizationValidator.cs
- TransactionManagerProxy.cs
- StringKeyFrameCollection.cs
- DataGridViewIntLinkedList.cs
- Directory.cs
- RIPEMD160Managed.cs
- TextBox.cs
- CaseInsensitiveHashCodeProvider.cs
- DataGridViewCellConverter.cs
- RedirectionProxy.cs
- HttpCapabilitiesBase.cs
- EntitySetBase.cs
- Crc32Helper.cs