wei
2020-12-22 46cfc3decb9f162129e2dd6fad85aada638a9a3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
            }
        }
        /// <summary>
        /// 校验网关是否在线
        /// </summary>
        public bool GatewayOnlineVerification()
        {
            bool result =
 
            return 
        }
    }
}