You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using AKS.EnterpriseLibrary.WebBrowser;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Net.Sockets;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace AksWebBrowser
|
|
|
|
{
|
|
|
|
public class Parame
|
|
|
|
{
|
|
|
|
public static TcpClient tcpClient { get; set; }
|
|
|
|
public static CusWebBrowser webBrowser { get; set; }
|
|
|
|
public static List<Func> FuncObject { get; set; }
|
|
|
|
//接口地址
|
|
|
|
public static string apiUrl = "http://192.168.0.34:92";
|
|
|
|
//授权key
|
|
|
|
public static string key = "1";
|
|
|
|
//硬件Ip
|
|
|
|
public static string Ip = "192.168.1.166";
|
|
|
|
//高拍仪url
|
|
|
|
public static string gpyUrl = "http://127.0.0.1:6543";
|
|
|
|
}
|
|
|
|
public struct Func
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Platform { get; set; }
|
|
|
|
public string Interfaceaddress { get; set; }
|
|
|
|
};
|
|
|
|
}
|