singrdk/base/Libraries/WebApps/IWebApp.cs

21 lines
549 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Note: The interface implemented by web applications under Singularity
//
//
// This interface is the base class for web applications, whether or not
// they are run in-process or out-of-process.
//
namespace Microsoft.Singularity.WebApps
{
public interface IWebApp
{
void ProcessRequest(IHttpRequest! request);
}
}