Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- SystemGatewayIPAddressInformation.cs
- OptimizedTemplateContent.cs
- ToolStripHighContrastRenderer.cs
- QuotedStringFormatReader.cs
- WindowsListViewItem.cs
- RepeatButton.cs
- MarshalByRefObject.cs
- ToolboxDataAttribute.cs
- HTTPNotFoundHandler.cs
- KnownIds.cs
- GlyphTypeface.cs
- FrugalMap.cs
- RegistryKey.cs
- XmlCharType.cs
- SystemNetHelpers.cs
- GridViewColumnCollection.cs
- UserNamePasswordValidationMode.cs
- XamlTreeBuilderBamlRecordWriter.cs
- SingleKeyFrameCollection.cs
- GridViewUpdateEventArgs.cs
- TimelineClockCollection.cs
- ResourceIDHelper.cs
- MruCache.cs
- PngBitmapDecoder.cs
- ViewEventArgs.cs
- Queue.cs
- GcSettings.cs
- LinqDataSourceContextEventArgs.cs
- _LocalDataStoreMgr.cs
- RegexCapture.cs
- BamlTreeMap.cs
- SqlIdentifier.cs
- CodeDelegateInvokeExpression.cs
- SqlClientFactory.cs
- WeakReference.cs
- Avt.cs
- CdpEqualityComparer.cs
- SerializerWriterEventHandlers.cs
- MaterialGroup.cs
- AdornerDecorator.cs
- TableLayoutSettingsTypeConverter.cs
- TraversalRequest.cs
- CodeDOMUtility.cs
- BamlLocalizabilityResolver.cs
- ComponentConverter.cs
- XamlStream.cs
- HtmlGenericControl.cs
- ModelFactory.cs
- WebRequest.cs
- SqlUserDefinedAggregateAttribute.cs
- MethodExpression.cs
- CharAnimationBase.cs
- OpCodes.cs
- VarInfo.cs
- NameValuePermission.cs
- Exception.cs
- Scene3D.cs
- DBConnection.cs
- MethodCallTranslator.cs
- SelectedDatesCollection.cs
- XmlILIndex.cs
- Activity.cs
- WebHttpSecurity.cs
- DataContractFormatAttribute.cs
- TemplatedWizardStep.cs
- StateManagedCollection.cs
- ResXResourceReader.cs
- StandardTransformFactory.cs
- SqlUserDefinedTypeAttribute.cs
- SourceLineInfo.cs
- SettingsPropertyNotFoundException.cs
- ColorAnimation.cs
- PnrpPeerResolver.cs
- XmlSortKeyAccumulator.cs
- RequestSecurityTokenResponseCollection.cs
- WindowClosedEventArgs.cs
- CodeDomLoader.cs
- ButtonFieldBase.cs
- LinkedResourceCollection.cs
- ImageUrlEditor.cs
- Mutex.cs
- FactoryMaker.cs
- SqlReferenceCollection.cs
- DeviceFilterEditorDialog.cs
- IndicCharClassifier.cs
- DragStartedEventArgs.cs
- CTreeGenerator.cs
- MDIClient.cs
- KerberosRequestorSecurityToken.cs
- TemplateInstanceAttribute.cs
- KeySplineConverter.cs
- DataServiceProviderMethods.cs
- SynchronizedInputHelper.cs
- TCPClient.cs
- MappingItemCollection.cs
- DbProviderFactory.cs
- RemotingConfiguration.cs
- DataGridViewColumnHeaderCell.cs
- PersonalizationStateQuery.cs
- TextWriter.cs