Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ByteStorage.cs
- FieldBuilder.cs
- ObjectStateFormatter.cs
- Matrix3DConverter.cs
- LockCookie.cs
- unsafenativemethodsother.cs
- EncoderFallback.cs
- SmiEventSink_DeferedProcessing.cs
- ResourceSetExpression.cs
- RegisteredHiddenField.cs
- ExpressionUtilities.cs
- LongPath.cs
- DataTableMappingCollection.cs
- ConstraintConverter.cs
- LinkLabel.cs
- RemotingAttributes.cs
- StatusBar.cs
- XmlRawWriterWrapper.cs
- LayoutManager.cs
- QueryOutputWriter.cs
- SystemMulticastIPAddressInformation.cs
- TemplateColumn.cs
- LiteralControl.cs
- BamlRecordHelper.cs
- SmtpSection.cs
- InlineObject.cs
- PointAnimationUsingPath.cs
- DynamicPropertyHolder.cs
- UnsafeNativeMethods.cs
- XmlSchemaAnyAttribute.cs
- _SecureChannel.cs
- StateChangeEvent.cs
- ThicknessKeyFrameCollection.cs
- MulticastOption.cs
- HtmlInputHidden.cs
- UnSafeCharBuffer.cs
- PointValueSerializer.cs
- PageAsyncTask.cs
- NavigationProperty.cs
- LoginCancelEventArgs.cs
- SqlDataSourceCache.cs
- XmlReflectionMember.cs
- StructuredType.cs
- IPeerNeighbor.cs
- PassportAuthentication.cs
- Message.cs
- CodePageEncoding.cs
- TreeViewImageGenerator.cs
- NumberFormatter.cs
- HttpValueCollection.cs
- HttpCachePolicyElement.cs
- MoveSizeWinEventHandler.cs
- DecodeHelper.cs
- TemplatedWizardStep.cs
- DefaultTextStoreTextComposition.cs
- NotImplementedException.cs
- SHA1CryptoServiceProvider.cs
- ArglessEventHandlerProxy.cs
- ThicknessAnimation.cs
- Crc32.cs
- ToolBar.cs
- PersianCalendar.cs
- CustomErrorCollection.cs
- FormatConvertedBitmap.cs
- ScrollableControlDesigner.cs
- SemaphoreSecurity.cs
- TextInfo.cs
- EnumerableCollectionView.cs
- OdbcEnvironment.cs
- UnsafeNativeMethods.cs
- LocalizationCodeDomSerializer.cs
- dtdvalidator.cs
- SelectionItemPattern.cs
- MatrixTransform.cs
- XmlDownloadManager.cs
- RoleManagerSection.cs
- QilLoop.cs
- Bits.cs
- SqlAggregateChecker.cs
- GACIdentityPermission.cs
- SoapTransportImporter.cs
- GregorianCalendar.cs
- ForeignKeyConstraint.cs
- PipelineModuleStepContainer.cs
- TemplateBamlRecordReader.cs
- MaskedTextProvider.cs
- XmlAttributeCache.cs
- BroadcastEventHelper.cs
- CustomAttributeFormatException.cs
- EventProviderWriter.cs
- UrlMappingsModule.cs
- WrapPanel.cs
- DataAdapter.cs
- ArraySortHelper.cs
- SqlClientMetaDataCollectionNames.cs
- UrlMappingCollection.cs
- Form.cs
- FeatureSupport.cs
- IODescriptionAttribute.cs
- ListBindingHelper.cs