ZhiYeJianKang_PeiXun/cyqdata-master/DotNetCore/System/Web/IHttpHandler.cs

26 lines
513 B
C#
Raw Permalink Normal View History

2025-02-20 15:41:53 +08:00
namespace System.Web
{
public interface IHttpHandler
{
bool IsReusable { get; }
void ProcessRequest(HttpContext context);
}
internal class DefaultHttpHandler : IHttpHandler
{
public static readonly DefaultHttpHandler Instance = new DefaultHttpHandler();
public bool IsReusable
{
get
{
return false;
}
}
public void ProcessRequest(HttpContext context)
{
}
}
}