Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / HandlerFactoryCache.cs / 1 / HandlerFactoryCache.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Config related classes for HttpApplication */ namespace System.Web.Configuration { using System; using System.Configuration; using System.Web.Compilation; /* * An object to cache a factory */ internal class HandlerFactoryCache { private IHttpHandlerFactory _factory; internal HandlerFactoryCache(string type) { Object instance = Create(type); // make sure it is either handler or handler factory if (instance is IHttpHandler) { // create bogus factory around it _factory = new HandlerFactoryWrapper((IHttpHandler)instance, GetHandlerType(type)); } else if (instance is IHttpHandlerFactory) { _factory = (IHttpHandlerFactory)instance; } else { throw new HttpException(SR.GetString(SR.Type_not_factory_or_handler, instance.GetType().FullName)); } } internal HandlerFactoryCache(HttpHandlerAction mapping) { Object instance = mapping.Create(); // make sure it is either handler or handler factory if (instance is IHttpHandler) { // create bogus factory around it _factory = new HandlerFactoryWrapper((IHttpHandler)instance, GetHandlerType(mapping)); } else if (instance is IHttpHandlerFactory) { _factory = (IHttpHandlerFactory)instance; } else { throw new HttpException(SR.GetString(SR.Type_not_factory_or_handler, instance.GetType().FullName)); } } internal IHttpHandlerFactory Factory { get { return _factory; } } internal Type GetHandlerType( HttpHandlerAction handlerAction ) { // HACKHACK: for now, let uncreatable types through and error later (for .soap factory) // This design should change - developers will want to know immediately // when they misspell a type Type t = BuildManager.GetType(handlerAction.Type, true /*throwOnFail*/, false /*ignoreCase*/); // throw for bad types in deferred case if (!ConfigUtil.IsTypeHandlerOrFactory(t)) throw new ConfigurationErrorsException(SR.GetString(SR.Type_not_factory_or_handler, handlerAction.Type), handlerAction.ElementInformation.Source, handlerAction.ElementInformation.LineNumber); return t; } internal Type GetHandlerType(string type) { // HACKHACK: for now, let uncreatable types through and error later (for .soap factory) // This design should change - developers will want to know immediately // when they misspell a type Type t = BuildManager.GetType(type, true /*throwOnFail*/, false /*ignoreCase*/); HttpRuntime.FailIfNoAPTCABit(t, null, null); // throw for bad types in deferred case if (!ConfigUtil.IsTypeHandlerOrFactory(t)) throw new ConfigurationErrorsException(SR.GetString(SR.Type_not_factory_or_handler, type)); return t; } internal object Create(string type) { // HACKHACK: for now, let uncreatable types through and error later (for .soap factory) // This design should change - developers will want to know immediately // when they misspell a type return HttpRuntime.CreateNonPublicInstance(GetHandlerType(type)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Config related classes for HttpApplication */ namespace System.Web.Configuration { using System; using System.Configuration; using System.Web.Compilation; /* * An object to cache a factory */ internal class HandlerFactoryCache { private IHttpHandlerFactory _factory; internal HandlerFactoryCache(string type) { Object instance = Create(type); // make sure it is either handler or handler factory if (instance is IHttpHandler) { // create bogus factory around it _factory = new HandlerFactoryWrapper((IHttpHandler)instance, GetHandlerType(type)); } else if (instance is IHttpHandlerFactory) { _factory = (IHttpHandlerFactory)instance; } else { throw new HttpException(SR.GetString(SR.Type_not_factory_or_handler, instance.GetType().FullName)); } } internal HandlerFactoryCache(HttpHandlerAction mapping) { Object instance = mapping.Create(); // make sure it is either handler or handler factory if (instance is IHttpHandler) { // create bogus factory around it _factory = new HandlerFactoryWrapper((IHttpHandler)instance, GetHandlerType(mapping)); } else if (instance is IHttpHandlerFactory) { _factory = (IHttpHandlerFactory)instance; } else { throw new HttpException(SR.GetString(SR.Type_not_factory_or_handler, instance.GetType().FullName)); } } internal IHttpHandlerFactory Factory { get { return _factory; } } internal Type GetHandlerType( HttpHandlerAction handlerAction ) { // HACKHACK: for now, let uncreatable types through and error later (for .soap factory) // This design should change - developers will want to know immediately // when they misspell a type Type t = BuildManager.GetType(handlerAction.Type, true /*throwOnFail*/, false /*ignoreCase*/); // throw for bad types in deferred case if (!ConfigUtil.IsTypeHandlerOrFactory(t)) throw new ConfigurationErrorsException(SR.GetString(SR.Type_not_factory_or_handler, handlerAction.Type), handlerAction.ElementInformation.Source, handlerAction.ElementInformation.LineNumber); return t; } internal Type GetHandlerType(string type) { // HACKHACK: for now, let uncreatable types through and error later (for .soap factory) // This design should change - developers will want to know immediately // when they misspell a type Type t = BuildManager.GetType(type, true /*throwOnFail*/, false /*ignoreCase*/); HttpRuntime.FailIfNoAPTCABit(t, null, null); // throw for bad types in deferred case if (!ConfigUtil.IsTypeHandlerOrFactory(t)) throw new ConfigurationErrorsException(SR.GetString(SR.Type_not_factory_or_handler, type)); return t; } internal object Create(string type) { // HACKHACK: for now, let uncreatable types through and error later (for .soap factory) // This design should change - developers will want to know immediately // when they misspell a type return HttpRuntime.CreateNonPublicInstance(GetHandlerType(type)); } } } // 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
- Matrix3D.cs
- IncrementalReadDecoders.cs
- BufferedResponseStream.cs
- DataList.cs
- ImageSource.cs
- EntityClassGenerator.cs
- MetadataItem.cs
- OlePropertyStructs.cs
- PropertyMapper.cs
- PropertyChangingEventArgs.cs
- TableItemPattern.cs
- XmlAtomicValue.cs
- mediapermission.cs
- MergeFailedEvent.cs
- XPathBuilder.cs
- TransactionsSectionGroup.cs
- DataGridViewSelectedRowCollection.cs
- InputScopeNameConverter.cs
- OdbcParameterCollection.cs
- Geometry3D.cs
- EntityTemplateFactory.cs
- ServicePointManagerElement.cs
- DataGridHeaderBorder.cs
- WindowPatternIdentifiers.cs
- FormsIdentity.cs
- TrackBarRenderer.cs
- ToolStripPanelRenderEventArgs.cs
- ContentPathSegment.cs
- ZoneIdentityPermission.cs
- LinkedResourceCollection.cs
- MetadataUtil.cs
- FrameworkTextComposition.cs
- DynamicFilter.cs
- ConfigurationStrings.cs
- Stroke2.cs
- InteropBitmapSource.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- HtmlPageAdapter.cs
- AppDomainShutdownMonitor.cs
- ToolStripOverflowButton.cs
- PatternMatcher.cs
- Literal.cs
- TypeLibConverter.cs
- GlyphInfoList.cs
- TextViewSelectionProcessor.cs
- FontFamilyValueSerializer.cs
- MergablePropertyAttribute.cs
- Debug.cs
- AssemblyUtil.cs
- GroupedContextMenuStrip.cs
- KeyboardEventArgs.cs
- TextDecorationUnitValidation.cs
- Screen.cs
- Helpers.cs
- XsdCachingReader.cs
- EventHandlerList.cs
- XmlChoiceIdentifierAttribute.cs
- MultipartContentParser.cs
- MinMaxParagraphWidth.cs
- XmlArrayAttribute.cs
- ObjectCacheSettings.cs
- PolicyException.cs
- GPRECT.cs
- SelectedDatesCollection.cs
- PeerToPeerException.cs
- UIAgentAsyncEndRequest.cs
- ChangePassword.cs
- WindowsListBox.cs
- XmlSchemaImporter.cs
- UnionCqlBlock.cs
- X509CertificateCollection.cs
- HttpDigestClientElement.cs
- ToolStripPanelCell.cs
- LinkUtilities.cs
- FixedSOMLineCollection.cs
- HttpHandlerActionCollection.cs
- InputProviderSite.cs
- ViewBox.cs
- EndpointBehaviorElement.cs
- DataErrorValidationRule.cs
- CompositionAdorner.cs
- ElementFactory.cs
- ByteAnimationBase.cs
- TypeRestriction.cs
- NativeObjectSecurity.cs
- RelationalExpressions.cs
- DeclarationUpdate.cs
- OrderedDictionary.cs
- WeakEventManager.cs
- NullableConverter.cs
- TreeNodeBinding.cs
- Marshal.cs
- SafeSecurityHandles.cs
- CodeTypeMember.cs
- Blend.cs
- DbProviderConfigurationHandler.cs
- TextEffect.cs
- BinaryWriter.cs
- SHA1CryptoServiceProvider.cs
- DashStyle.cs