Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SynchronizationFilter.cs
- BaseDataList.cs
- CodeTryCatchFinallyStatement.cs
- ParseChildrenAsPropertiesAttribute.cs
- PropertyBuilder.cs
- CodeMethodReturnStatement.cs
- NavigatingCancelEventArgs.cs
- StylusDownEventArgs.cs
- NotifyIcon.cs
- Emitter.cs
- SiteMap.cs
- PersistenceException.cs
- FixedTextPointer.cs
- ScriptingAuthenticationServiceSection.cs
- Scheduler.cs
- XPathDocument.cs
- InternalConfigRoot.cs
- PerformanceCounterManager.cs
- WaitHandle.cs
- TextDecoration.cs
- NamespaceQuery.cs
- HttpCapabilitiesBase.cs
- ExceptionNotification.cs
- StrokeNodeOperations.cs
- WindowsGrip.cs
- WindowProviderWrapper.cs
- UTF7Encoding.cs
- TagPrefixCollection.cs
- TextBoxAutomationPeer.cs
- srgsitem.cs
- ArithmeticLiteral.cs
- DesignTimeXamlWriter.cs
- SQLSingle.cs
- ConstructorNeedsTagAttribute.cs
- SamlDoNotCacheCondition.cs
- TypeElement.cs
- DataGridViewCellParsingEventArgs.cs
- SqlFormatter.cs
- UrlMappingsSection.cs
- PenThreadPool.cs
- GlyphInfoList.cs
- PrintPreviewDialog.cs
- ServiceMemoryGates.cs
- PanelStyle.cs
- XmlTypeAttribute.cs
- PropertyStore.cs
- C14NUtil.cs
- XDRSchema.cs
- SecurityState.cs
- EventSourceCreationData.cs
- CuspData.cs
- Annotation.cs
- UdpReplyToBehavior.cs
- RoutedEventArgs.cs
- CngProvider.cs
- OdbcException.cs
- RadioButtonPopupAdapter.cs
- GroupBox.cs
- RotateTransform3D.cs
- ClaimSet.cs
- SecurityKeyIdentifier.cs
- ChameleonKey.cs
- InputScope.cs
- DatatypeImplementation.cs
- CaseInsensitiveComparer.cs
- ConfigurationPermission.cs
- Page.cs
- TransformCryptoHandle.cs
- EntityCollectionChangedParams.cs
- DrawingContextWalker.cs
- CLRBindingWorker.cs
- FlowPanelDesigner.cs
- ToolBarOverflowPanel.cs
- DiagnosticTrace.cs
- SqlRemoveConstantOrderBy.cs
- SelectionPatternIdentifiers.cs
- StringFunctions.cs
- TemplateInstanceAttribute.cs
- WebEventCodes.cs
- SettingsBindableAttribute.cs
- CapabilitiesRule.cs
- Matrix3DValueSerializer.cs
- ThumbAutomationPeer.cs
- ErrorInfoXmlDocument.cs
- SchemaEntity.cs
- Method.cs
- CatalogZoneBase.cs
- ListenDesigner.cs
- DataServices.cs
- QilExpression.cs
- StructuredTypeEmitter.cs
- TraceSection.cs
- TextTreeFixupNode.cs
- TreeNodeStyleCollection.cs
- StrokeNodeEnumerator.cs
- TreeNodeEventArgs.cs
- Pair.cs
- SqlPersistenceProviderFactory.cs
- FileDialogPermission.cs
- AutoGeneratedFieldProperties.cs