singrdk/base/Libraries/System.Web/Hosting/IApplicationHost.cs

22 lines
744 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
//------------------------------------------------------------------------------
// <copyright file="ApplicationManager.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
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();
}
}