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
- ProgressBarHighlightConverter.cs
- FontWeight.cs
- XslVisitor.cs
- ToolboxItem.cs
- XmlSchemaObjectTable.cs
- DataGridSortCommandEventArgs.cs
- EventDescriptor.cs
- ViewCellSlot.cs
- FilteredDataSetHelper.cs
- IndexerReference.cs
- SelectedDatesCollection.cs
- DateTimeParse.cs
- CodeTypeConstructor.cs
- SelectionService.cs
- FunctionNode.cs
- FixedTextSelectionProcessor.cs
- ManifestResourceInfo.cs
- DbConnectionOptions.cs
- CheckBoxDesigner.cs
- EmissiveMaterial.cs
- Bits.cs
- BatchParser.cs
- QueueException.cs
- DecimalStorage.cs
- ClusterUtils.cs
- ConditionalAttribute.cs
- oledbmetadatacollectionnames.cs
- GetChildSubtree.cs
- PageCache.cs
- HtmlControl.cs
- SecureStringHasher.cs
- CodeStatementCollection.cs
- TreeNodeClickEventArgs.cs
- Vector3DCollectionConverter.cs
- PropertyPathWorker.cs
- FormViewUpdatedEventArgs.cs
- WebConfigurationManager.cs
- ISAPIApplicationHost.cs
- UniqueSet.cs
- PngBitmapEncoder.cs
- ConfigurationConverterBase.cs
- WebServiceFault.cs
- WCFBuildProvider.cs
- UserPersonalizationStateInfo.cs
- PersonalizationEntry.cs
- SizeF.cs
- ExitEventArgs.cs
- HTMLTextWriter.cs
- TreeNodeStyleCollection.cs
- XmlUnspecifiedAttribute.cs
- InnerItemCollectionView.cs
- BindingList.cs
- AndCondition.cs
- KeyedHashAlgorithm.cs
- ImportContext.cs
- serverconfig.cs
- LiteralDesigner.cs
- FontClient.cs
- ReadOnlyState.cs
- NodeFunctions.cs
- TypeUsageBuilder.cs
- PerfCounters.cs
- EUCJPEncoding.cs
- ToolStripPanel.cs
- DataSourceProvider.cs
- WsatServiceCertificate.cs
- ObjectStateFormatter.cs
- DateTimeUtil.cs
- _OverlappedAsyncResult.cs
- FontNamesConverter.cs
- HtmlSelect.cs
- TextBounds.cs
- RegexParser.cs
- NumericExpr.cs
- XamlDebuggerXmlReader.cs
- AesManaged.cs
- SetterBaseCollection.cs
- IList.cs
- WindowsStartMenu.cs
- _Connection.cs
- DictionaryKeyPropertyAttribute.cs
- WebPartDescription.cs
- SafeFindHandle.cs
- CompModHelpers.cs
- WriteableOnDemandPackagePart.cs
- TextRunProperties.cs
- MessageQuerySet.cs
- Pts.cs
- MatrixKeyFrameCollection.cs
- TemplateBindingExtension.cs
- ListItemViewControl.cs
- TextTreeText.cs
- NetworkInformationPermission.cs
- ToolStripContentPanelRenderEventArgs.cs
- FillErrorEventArgs.cs
- WebPartVerb.cs
- FillBehavior.cs
- LinkTarget.cs
- EntityDataSourceConfigureObjectContextPanel.cs
- DecoderBestFitFallback.cs