Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / HandlerFactoryCache.cs / 2 / 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)); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HotSpot.cs
- DataListItem.cs
- LocationUpdates.cs
- RelationshipSet.cs
- ReferentialConstraint.cs
- recordstatescratchpad.cs
- FixedSOMContainer.cs
- XmlEncodedRawTextWriter.cs
- WindowInteropHelper.cs
- ping.cs
- SamlDoNotCacheCondition.cs
- RecordsAffectedEventArgs.cs
- SQLBoolean.cs
- FontFamilyValueSerializer.cs
- ContentPathSegment.cs
- WorkflowViewStateService.cs
- PropertyValueChangedEvent.cs
- DataViewSettingCollection.cs
- Int32Storage.cs
- SmiContextFactory.cs
- SchemaMerger.cs
- FlowStep.cs
- DesignerTransactionCloseEvent.cs
- BitmapEffectInput.cs
- StateItem.cs
- SuppressMessageAttribute.cs
- AudioFormatConverter.cs
- CompositeControl.cs
- QueryOutputWriter.cs
- LayeredChannelFactory.cs
- TypeUtil.cs
- ContentElement.cs
- Helpers.cs
- X509ChainElement.cs
- PersonalizationEntry.cs
- SafeCryptoHandles.cs
- ThreadStartException.cs
- BasePattern.cs
- AccessViolationException.cs
- RawStylusInputReport.cs
- HttpCacheVaryByContentEncodings.cs
- Visual.cs
- BadImageFormatException.cs
- TokenBasedSet.cs
- ClientTargetSection.cs
- ObjectSpanRewriter.cs
- ThreadAbortException.cs
- UnsafeNativeMethods.cs
- httpserverutility.cs
- Logging.cs
- ApplicationServicesHostFactory.cs
- ProviderCollection.cs
- CryptoApi.cs
- RoleService.cs
- FactoryId.cs
- HitTestDrawingContextWalker.cs
- ToolboxControl.cs
- LayoutManager.cs
- PermissionSetTriple.cs
- DataAdapter.cs
- FragmentQueryKB.cs
- IxmlLineInfo.cs
- JsonEnumDataContract.cs
- Point3DCollection.cs
- TemplateControl.cs
- RemotingConfiguration.cs
- ToolboxDataAttribute.cs
- DrawingContextDrawingContextWalker.cs
- TypeGeneratedEventArgs.cs
- WebPartAuthorizationEventArgs.cs
- ViewGenResults.cs
- SwitchLevelAttribute.cs
- RemoteHelper.cs
- Matrix3DValueSerializer.cs
- RegexCompiler.cs
- MeasurementDCInfo.cs
- GridViewCancelEditEventArgs.cs
- WindowsToolbarAsMenu.cs
- Geometry3D.cs
- DigitShape.cs
- SqlDataSourceSelectingEventArgs.cs
- XamlVector3DCollectionSerializer.cs
- OdbcCommandBuilder.cs
- OneWayBindingElement.cs
- SynchronizedDispatch.cs
- LoadedOrUnloadedOperation.cs
- QueryResponse.cs
- SafeMILHandleMemoryPressure.cs
- InputLanguageEventArgs.cs
- SmtpNegotiateAuthenticationModule.cs
- ImageSourceValueSerializer.cs
- XD.cs
- HtmlUtf8RawTextWriter.cs
- DockProviderWrapper.cs
- cookiecontainer.cs
- ExpandoClass.cs
- TextTrailingCharacterEllipsis.cs
- WebUtil.cs
- RootDesignerSerializerAttribute.cs
- SmtpMail.cs