2008-03-05 09:52:00 -05:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="ApplicationManager.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2008-11-17 18:29:00 -05:00
|
|
|
namespace System.Web.Hosting
|
|
|
|
{
|
2008-03-05 09:52:00 -05:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|