using System.Net;
namespace WebDAVSharp.Server.Adapters
{
///
/// This is an interface-version of the parts of
/// that
/// the
/// requires to operator.
///
///
/// The main purpose of this interface is to facilitate unit-testing.
///
public interface IHttpListenerContext : IAdapter
{
///
/// Gets the request adapter.
///
///
/// The request.
///
IHttpListenerRequest Request { get; }
///
/// Gets the response adapter.
///
///
/// The response.
///
IHttpListenerResponse Response { get; }
}
}