namespace Apewer.Web { /// 中间件。 public interface IApiMiddleware { /// 执行中间件。 /// 调用 方法可继续处理请求;若不调用则终止请求。 void Invoke(ApiContext context); } }