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
- TableAdapterManagerGenerator.cs
- OrderedDictionary.cs
- RouteCollection.cs
- CompositeFontFamily.cs
- MultiView.cs
- BooleanKeyFrameCollection.cs
- Switch.cs
- XmlBoundElement.cs
- ReceiveCompletedEventArgs.cs
- OrderedDictionary.cs
- SparseMemoryStream.cs
- HtmlTextArea.cs
- EditorAttribute.cs
- MiniCustomAttributeInfo.cs
- CompositeActivityMarkupSerializer.cs
- DataPagerCommandEventArgs.cs
- QilValidationVisitor.cs
- SectionRecord.cs
- NativeMethods.cs
- UnsafeNativeMethods.cs
- FormViewRow.cs
- MetadataCollection.cs
- QuotedPrintableStream.cs
- SafeHandles.cs
- DragEventArgs.cs
- SchemaImporterExtension.cs
- controlskin.cs
- DiscreteKeyFrames.cs
- MetabaseSettings.cs
- Pair.cs
- XmlAnyElementAttribute.cs
- TcpHostedTransportConfiguration.cs
- XmlSchemaAnyAttribute.cs
- ValidatorCollection.cs
- DbModificationCommandTree.cs
- HttpSocketManager.cs
- followingsibling.cs
- PasswordBoxAutomationPeer.cs
- WindowsListViewGroup.cs
- TraceData.cs
- HwndHostAutomationPeer.cs
- AtomicFile.cs
- NegotiateStream.cs
- ImageFormat.cs
- ModelServiceImpl.cs
- WorkflowInstanceTerminatedRecord.cs
- ColumnMapVisitor.cs
- TextParagraphProperties.cs
- TimeSpanOrInfiniteValidator.cs
- PostBackOptions.cs
- WebPartConnectionCollection.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- XamlLoadErrorInfo.cs
- TextOptions.cs
- PenContexts.cs
- DesignerActionPropertyItem.cs
- AuthorizationSection.cs
- latinshape.cs
- HtmlContainerControl.cs
- WriteableBitmap.cs
- SystemEvents.cs
- InvokeHandlers.cs
- ElementMarkupObject.cs
- LogEntry.cs
- ColumnMapTranslator.cs
- TextInfo.cs
- BatchWriter.cs
- DoubleStorage.cs
- FormViewModeEventArgs.cs
- TextBoxAutoCompleteSourceConverter.cs
- ZipIORawDataFileBlock.cs
- ToolStripItemBehavior.cs
- TypeResolver.cs
- WSSecurityPolicy.cs
- XmlSchemaInfo.cs
- ResolveNameEventArgs.cs
- ClientSession.cs
- ContainerFilterService.cs
- TypefaceMetricsCache.cs
- SimpleTableProvider.cs
- UIElement.cs
- TimeIntervalCollection.cs
- CatalogPartChrome.cs
- NavigationHelper.cs
- VirtualPathData.cs
- DataGridSortCommandEventArgs.cs
- UIAgentCrashedException.cs
- SplitContainer.cs
- _LazyAsyncResult.cs
- EventWaitHandleSecurity.cs
- SortedList.cs
- HandleExceptionArgs.cs
- DataGridCellEditEndingEventArgs.cs
- AsyncCodeActivity.cs
- SplitterEvent.cs
- SqlUtils.cs
- TextTreeUndoUnit.cs
- LambdaCompiler.Generated.cs
- ScrollBarRenderer.cs
- AttributeEmitter.cs