Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Hosting / PreloadHost.cs / 1305376 / PreloadHost.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Hosting { using System; using System.Web; using System.Web.Util; using System.Configuration; internal sealed class PreloadHost : MarshalByRefObject, IRegisteredObject { public PreloadHost() { HostingEnvironment.RegisterObject(this); } public void CreateIProcessHostPreloadClientInstanceAndCallPreload(string preloadObjTypeName, string[] paramsForStartupObj) { using (new ApplicationImpersonationContext()) { // Check the type Type preloadObjType = null; try { preloadObjType = Type.GetType(preloadObjTypeName, true); } catch (Exception e) { throw new InvalidOperationException ( Misc.FormatExceptionMessage(e, new string[]{ SR.GetString(SR.Failure_Create_Application_Preload_Provider_Type, preloadObjTypeName)} )); } if (!typeof(IProcessHostPreloadClient).IsAssignableFrom(preloadObjType)) { throw new ConfigurationErrorsException(SR.GetString(SR.Invalid_Application_Preload_Provider_Type, preloadObjTypeName)); } // Let all other exceptons fall through to the default AppDomain IProcessHostPreloadClient preloadClient = (IProcessHostPreloadClient)Activator.CreateInstance(preloadObjType); preloadClient.Preload(paramsForStartupObj); } } internal Exception InitializationException { get { return HttpRuntime.InitializationException; } } void IRegisteredObject.Stop(bool immediate) { HostingEnvironment.UnregisterObject(this); } public override Object InitializeLifetimeService() { return null; // never expire lease } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Hosting { using System; using System.Web; using System.Web.Util; using System.Configuration; internal sealed class PreloadHost : MarshalByRefObject, IRegisteredObject { public PreloadHost() { HostingEnvironment.RegisterObject(this); } public void CreateIProcessHostPreloadClientInstanceAndCallPreload(string preloadObjTypeName, string[] paramsForStartupObj) { using (new ApplicationImpersonationContext()) { // Check the type Type preloadObjType = null; try { preloadObjType = Type.GetType(preloadObjTypeName, true); } catch (Exception e) { throw new InvalidOperationException ( Misc.FormatExceptionMessage(e, new string[]{ SR.GetString(SR.Failure_Create_Application_Preload_Provider_Type, preloadObjTypeName)} )); } if (!typeof(IProcessHostPreloadClient).IsAssignableFrom(preloadObjType)) { throw new ConfigurationErrorsException(SR.GetString(SR.Invalid_Application_Preload_Provider_Type, preloadObjTypeName)); } // Let all other exceptons fall through to the default AppDomain IProcessHostPreloadClient preloadClient = (IProcessHostPreloadClient)Activator.CreateInstance(preloadObjType); preloadClient.Preload(paramsForStartupObj); } } internal Exception InitializationException { get { return HttpRuntime.InitializationException; } } void IRegisteredObject.Stop(bool immediate) { HostingEnvironment.UnregisterObject(this); } public override Object InitializeLifetimeService() { return null; // never expire lease } } } // 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
- MarkupObject.cs
- cookie.cs
- StylusShape.cs
- FieldMetadata.cs
- OracleLob.cs
- BridgeDataReader.cs
- ResourceExpressionBuilder.cs
- ScaleTransform.cs
- IdnMapping.cs
- JavaScriptObjectDeserializer.cs
- TailCallAnalyzer.cs
- X509LogoTypeExtension.cs
- DbParameterHelper.cs
- UniqueIdentifierService.cs
- ValueConversionAttribute.cs
- GlyphsSerializer.cs
- QueryRewriter.cs
- FrugalMap.cs
- AlignmentXValidation.cs
- QualifiedCellIdBoolean.cs
- Span.cs
- COMException.cs
- EventDescriptor.cs
- CategoryAttribute.cs
- DbParameterCollection.cs
- GeometryDrawing.cs
- Pen.cs
- updateconfighost.cs
- TdsParserSessionPool.cs
- WebServiceErrorEvent.cs
- DocumentPage.cs
- DrawingServices.cs
- ComplexPropertyEntry.cs
- DataColumnMapping.cs
- ReferenceTypeElement.cs
- OleAutBinder.cs
- GridViewRowPresenterBase.cs
- ControlType.cs
- configsystem.cs
- LZCodec.cs
- DeviceSpecificChoice.cs
- TrackBarDesigner.cs
- WebAdminConfigurationHelper.cs
- StatusBarPanelClickEvent.cs
- PackageStore.cs
- RuleSettingsCollection.cs
- XmlSerializer.cs
- DPTypeDescriptorContext.cs
- Literal.cs
- MethodRental.cs
- FixedLineResult.cs
- oledbmetadatacollectionnames.cs
- XmlSchemaComplexContent.cs
- FaultImportOptions.cs
- Registration.cs
- FullTextState.cs
- String.cs
- CfgParser.cs
- ApplicationFileCodeDomTreeGenerator.cs
- PageVisual.cs
- DBCommand.cs
- AncillaryOps.cs
- OleDbReferenceCollection.cs
- COM2ComponentEditor.cs
- TextSelectionHelper.cs
- ProfileServiceManager.cs
- BasicHttpMessageSecurityElement.cs
- BuildManagerHost.cs
- OperatingSystem.cs
- XmlReflectionImporter.cs
- Listen.cs
- _HelperAsyncResults.cs
- ResourceAssociationSet.cs
- PlatformCulture.cs
- StringDictionary.cs
- FieldCollectionEditor.cs
- updateconfighost.cs
- Parameter.cs
- XmlLoader.cs
- InvalidContentTypeException.cs
- SingleObjectCollection.cs
- MetaModel.cs
- HttpDebugHandler.cs
- WithStatement.cs
- PnrpPermission.cs
- WebPartDescriptionCollection.cs
- PartialArray.cs
- EventSourceCreationData.cs
- StructuredCompositeActivityDesigner.cs
- InlineUIContainer.cs
- DrawingImage.cs
- DescendantBaseQuery.cs
- CodeNamespaceCollection.cs
- ReadOnlyMetadataCollection.cs
- BinaryParser.cs
- ApplicationHost.cs
- RightsManagementInformation.cs
- InkPresenterAutomationPeer.cs
- StringBuilder.cs
- TextInfo.cs