Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / HandlerFactoryCache.cs / 4 / 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
- SectionUpdates.cs
- PrimitiveType.cs
- EmptyControlCollection.cs
- TextParentUndoUnit.cs
- RepeatBehavior.cs
- LineProperties.cs
- ADMembershipProvider.cs
- SystemResourceHost.cs
- BaseTemplateParser.cs
- RightsManagementEncryptedStream.cs
- ComboBox.cs
- HtmlInputReset.cs
- UpdatePanelControlTrigger.cs
- EntityDataSourceWizardForm.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- RightsManagementPermission.cs
- Switch.cs
- LogRestartAreaEnumerator.cs
- InvokePattern.cs
- InvalidPrinterException.cs
- NestedContainer.cs
- CacheVirtualItemsEvent.cs
- DecimalKeyFrameCollection.cs
- TimeSpanValidatorAttribute.cs
- DeviceContext2.cs
- ReplyAdapterChannelListener.cs
- basenumberconverter.cs
- TextDecorationUnitValidation.cs
- EntitySqlQueryState.cs
- ToolStripTemplateNode.cs
- ReadOnlyAttribute.cs
- TextSchema.cs
- FrameDimension.cs
- OdbcReferenceCollection.cs
- Condition.cs
- NullReferenceException.cs
- TypeDelegator.cs
- PartitionedStreamMerger.cs
- TextBox.cs
- CodeTryCatchFinallyStatement.cs
- FormsAuthenticationUserCollection.cs
- TreeIterators.cs
- HashMembershipCondition.cs
- HiddenFieldPageStatePersister.cs
- InfiniteIntConverter.cs
- Model3DCollection.cs
- GeneralTransformGroup.cs
- ListItemConverter.cs
- WebPartsPersonalization.cs
- Event.cs
- _Connection.cs
- DiscoveryClientDocuments.cs
- ScrollItemPatternIdentifiers.cs
- ZipIOCentralDirectoryBlock.cs
- ParserContext.cs
- WindowProviderWrapper.cs
- SchemaAttDef.cs
- ProfileGroupSettingsCollection.cs
- WizardPanelChangingEventArgs.cs
- NamespaceMapping.cs
- UserInitiatedNavigationPermission.cs
- DefaultEventAttribute.cs
- HtmlContainerControl.cs
- ReceiveSecurityHeader.cs
- RecoverInstanceLocksCommand.cs
- MdiWindowListStrip.cs
- XPathNodeIterator.cs
- Selector.cs
- AuthStoreRoleProvider.cs
- SingleObjectCollection.cs
- WriteableOnDemandPackagePart.cs
- DashStyle.cs
- SecurityRuntime.cs
- DeploymentSection.cs
- OrderedEnumerableRowCollection.cs
- EditorAttributeInfo.cs
- DiscardableAttribute.cs
- SortQueryOperator.cs
- EntityConnectionStringBuilder.cs
- WithStatement.cs
- PersonalizationProviderCollection.cs
- ApplicationGesture.cs
- TrackingProfileSerializer.cs
- CompositeTypefaceMetrics.cs
- TraceSection.cs
- Context.cs
- Scheduling.cs
- TrustManagerPromptUI.cs
- RelOps.cs
- TransactionBridge.cs
- SqlBulkCopy.cs
- SizeConverter.cs
- TextTreeInsertUndoUnit.cs
- Thumb.cs
- OracleString.cs
- TrackBarDesigner.cs
- DataBoundLiteralControl.cs
- ModelItemKeyValuePair.cs
- AssemblyName.cs
- StylusCollection.cs