Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeAccessSecurityEngine.cs
- XmlTextEncoder.cs
- EnumerableCollectionView.cs
- AnnotationResourceCollection.cs
- SapiGrammar.cs
- UniqueSet.cs
- Helpers.cs
- CanExecuteRoutedEventArgs.cs
- XdrBuilder.cs
- ExceptionRoutedEventArgs.cs
- TableParagraph.cs
- RegionInfo.cs
- TemplateComponentConnector.cs
- ObjectAssociationEndMapping.cs
- ScrollBarRenderer.cs
- PathGradientBrush.cs
- SemaphoreSecurity.cs
- LinkGrep.cs
- XpsResource.cs
- StartUpEventArgs.cs
- FileDialog_Vista.cs
- FileLoadException.cs
- CharacterBuffer.cs
- XslCompiledTransform.cs
- BamlMapTable.cs
- Constants.cs
- ClientTargetCollection.cs
- XmlBindingWorker.cs
- X509CertificateRecipientClientCredential.cs
- DataServiceConfiguration.cs
- WebErrorHandler.cs
- BinaryWriter.cs
- AutomationElementCollection.cs
- JournalEntryListConverter.cs
- Atom10ItemFormatter.cs
- UdpConstants.cs
- MetadataArtifactLoaderCompositeResource.cs
- ClientCultureInfo.cs
- SqlDataSourceQuery.cs
- XmlBinaryReader.cs
- Vector3DKeyFrameCollection.cs
- WMIInterop.cs
- HttpContextServiceHost.cs
- ColorDialog.cs
- LineServicesRun.cs
- DataSysAttribute.cs
- LassoHelper.cs
- GridProviderWrapper.cs
- DataMember.cs
- RoleService.cs
- HttpResponseWrapper.cs
- FamilyMap.cs
- CodeDirectionExpression.cs
- ComponentCollection.cs
- DataGridViewCheckBoxCell.cs
- Bits.cs
- IndependentlyAnimatedPropertyMetadata.cs
- AssemblyHash.cs
- TokenizerHelper.cs
- CreateDataSourceDialog.cs
- XamlReader.cs
- XmlSchemaAny.cs
- WebPartConnectVerb.cs
- XamlReaderHelper.cs
- MediaCommands.cs
- SizeF.cs
- EntityDataSourceContainerNameConverter.cs
- MessageQueueInstaller.cs
- SlotInfo.cs
- KeyValuePair.cs
- VSWCFServiceContractGenerator.cs
- XmlDictionaryString.cs
- CompilerError.cs
- ToolbarAUtomationPeer.cs
- _HeaderInfoTable.cs
- Debug.cs
- ITreeGenerator.cs
- OracleCommand.cs
- AnyAllSearchOperator.cs
- AgileSafeNativeMemoryHandle.cs
- EraserBehavior.cs
- cookie.cs
- CompilerGlobalScopeAttribute.cs
- SQLInt64Storage.cs
- MultipartContentParser.cs
- MessageQueueException.cs
- ContentFileHelper.cs
- ChineseLunisolarCalendar.cs
- DrawingBrush.cs
- SiteMapDataSource.cs
- PreDigestedSignedInfo.cs
- TreeSet.cs
- LayoutEditorPart.cs
- SyndicationContent.cs
- ProcessInfo.cs
- SocketInformation.cs
- ChangeNode.cs
- BitSet.cs
- Maps.cs
- DefaultBindingPropertyAttribute.cs