ZhiYeJianKang_PeiXun/cyqdata-master/DotNetCore/System/Web/IHttpModule.cs
2025-02-20 15:41:53 +08:00

17 lines
312 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}
}