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

17 lines
312 B
C#
Raw Permalink Normal View History

2025-02-20 15:41:53 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace System.Web
{
/// <summary>
/// 兼容MVCTaurus、Aries而存在以下都是。
/// </summary>
public interface IHttpModule
{
void Dispose();
void Init(HttpApplication context);
}
}