//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.Hosting { using System; using System.Collections; using System.Web; public interface IApplicationHost { String GetVirtualPath(); String GetPhysicalPath(); //IConfigMapPathFactory GetConfigMapPathFactory(); IntPtr GetConfigToken(); String GetSiteName(); void MessageReceived(); bool IsHostProcessMultiInstance(); } }