Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / HttpHandlersSection.cs / 1305376 / HttpHandlersSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.Web.Util; using System.Web.Compilation; using System.Globalization; using System.Security.Permissions; public sealed class HttpHandlersSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propHandlers = new ConfigurationProperty(null, typeof(HttpHandlerActionCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); private bool _validated; static HttpHandlersSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propHandlers); } public HttpHandlersSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection = true)] public HttpHandlerActionCollection Handlers { get { return (HttpHandlerActionCollection)base[_propHandlers]; } } internal bool ValidateHandlers() { if (!_validated) { lock (this) { if (!_validated) { foreach (HttpHandlerAction ha in Handlers) { ha.InitValidateInternal(); } _validated = true; } } } return _validated; } internal HttpHandlerAction FindMapping(String verb, VirtualPath path) { ValidateHandlers(); for (int i = 0; i < Handlers.Count; i++) { HttpHandlerAction m = (HttpHandlerAction)Handlers[i]; if (m.IsMatch(verb, path)) { return m; } } return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.Web.Util; using System.Web.Compilation; using System.Globalization; using System.Security.Permissions; public sealed class HttpHandlersSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propHandlers = new ConfigurationProperty(null, typeof(HttpHandlerActionCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); private bool _validated; static HttpHandlersSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propHandlers); } public HttpHandlersSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection = true)] public HttpHandlerActionCollection Handlers { get { return (HttpHandlerActionCollection)base[_propHandlers]; } } internal bool ValidateHandlers() { if (!_validated) { lock (this) { if (!_validated) { foreach (HttpHandlerAction ha in Handlers) { ha.InitValidateInternal(); } _validated = true; } } } return _validated; } internal HttpHandlerAction FindMapping(String verb, VirtualPath path) { ValidateHandlers(); for (int i = 0; i < Handlers.Count; i++) { HttpHandlerAction m = (HttpHandlerAction)Handlers[i]; if (m.IsMatch(verb, path)) { return m; } } return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SemanticBasicElement.cs
- UnsafeNativeMethods.cs
- StreamGeometryContext.cs
- ProvideValueServiceProvider.cs
- SmiRequestExecutor.cs
- SqlBuilder.cs
- DesignerWidgets.cs
- CaseInsensitiveComparer.cs
- BlockUIContainer.cs
- MdiWindowListItemConverter.cs
- MenuItemCollection.cs
- oledbmetadatacolumnnames.cs
- InputBinding.cs
- IntSecurity.cs
- HtmlValidatorAdapter.cs
- WindowsFormsDesignerOptionService.cs
- ComplexPropertyEntry.cs
- NameTable.cs
- Membership.cs
- DefaultValueAttribute.cs
- PostBackOptions.cs
- CountAggregationOperator.cs
- TemplatedEditableDesignerRegion.cs
- DataGridViewRowCollection.cs
- ToolBarTray.cs
- Int64AnimationBase.cs
- InternalCache.cs
- DependsOnAttribute.cs
- DeviceSpecific.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- ListManagerBindingsCollection.cs
- LinqDataSourceHelper.cs
- ReturnValue.cs
- QilLoop.cs
- XmlAggregates.cs
- ConfigurationPropertyCollection.cs
- BufferedGraphicsManager.cs
- PageOutputQuality.cs
- DrawingImage.cs
- HandleRef.cs
- XomlCompilerError.cs
- CancellationState.cs
- DeclarativeCatalogPartDesigner.cs
- FormViewAutoFormat.cs
- indexingfiltermarshaler.cs
- Interop.cs
- ParameterCollection.cs
- TextElementEnumerator.cs
- RbTree.cs
- BrowserCapabilitiesCompiler.cs
- OdbcException.cs
- TdsValueSetter.cs
- ResourceDefaultValueAttribute.cs
- XPathConvert.cs
- JsonSerializer.cs
- BufferedReadStream.cs
- MimeTypeAttribute.cs
- IEnumerable.cs
- ProxyWebPart.cs
- EventLogPermissionAttribute.cs
- XmlTypeMapping.cs
- Graphics.cs
- BamlLocalizableResource.cs
- DataGridViewAdvancedBorderStyle.cs
- HttpDateParse.cs
- PerformanceCounter.cs
- TextTreeObjectNode.cs
- MembershipSection.cs
- Latin1Encoding.cs
- DataGridLinkButton.cs
- FileSecurity.cs
- ChildTable.cs
- ClientCultureInfo.cs
- BindMarkupExtensionSerializer.cs
- Int32Animation.cs
- TreeViewAutomationPeer.cs
- BitmapCodecInfo.cs
- WebPartHeaderCloseVerb.cs
- DynamicMethod.cs
- NameSpaceEvent.cs
- embossbitmapeffect.cs
- NullNotAllowedCollection.cs
- MappingItemCollection.cs
- DataGridViewRowPostPaintEventArgs.cs
- ControlSerializer.cs
- DataGridColumnHeaderCollection.cs
- JournalEntry.cs
- PageCache.cs
- DataGrid.cs
- OperationBehaviorAttribute.cs
- TcpChannelHelper.cs
- LoginName.cs
- PasswordTextContainer.cs
- EntityContainerAssociationSetEnd.cs
- DataGridViewTextBoxCell.cs
- SizeConverter.cs
- DbConnectionPool.cs
- SecurityPolicySection.cs
- AnnouncementEndpointElement.cs
- MiniParameterInfo.cs