using System; using HDL_ON; using HDL_ON.DAL; using HDL_ON.DAL.Server; namespace HDL_ON.Common { public class ApiUtlis { public ApiUtlis() { } static HttpServerRequest httpRequest; public static HttpServerRequest HttpRequest { get { if(httpRequest == null) { httpRequest = new HttpServerRequest(); } return httpRequest; } } /// /// 校验网关是否在线 /// public bool GatewayOnlineVerification() { bool result = return } } }