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.
45 lines
1.1 KiB
45 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Net.Sockets; |
|
using System.Net; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
using System.Timers; |
|
using static System.Collections.Specialized.BitVector32; |
|
using System.Security.Cryptography; |
|
using System.Text.Json; |
|
using Newtonsoft.Json.Linq; |
|
using Newtonsoft.Json; |
|
using System.IO; |
|
using System.Runtime.Serialization.Formatters.Binary; |
|
using Guidaoji.Camera; |
|
using Guidaoji.Common; |
|
|
|
namespace Emergency_platform |
|
{ |
|
public class Program |
|
{ |
|
|
|
|
|
static void Main(string[] args) |
|
{ |
|
|
|
TCP tcp = new TCP(); |
|
Patrol patrol = new Patrol(); |
|
//IP |
|
string sIP = "192.168.10.102"; |
|
//端口号 |
|
string sPassword = "tschkj88"; |
|
//连接轨道机服务器 |
|
//TcpClientWrapper.Socket("192.168.10.104", 20000); |
|
//tcp.Socket(); |
|
//patrol.PatrolD(); |
|
Console.WriteLine("InitSuccess"); |
|
//登录摄像头 |
|
//CHNetHelp.CameraInit(sIP, sPassword); |
|
} |
|
|
|
|
|
} |
|
}
|
|
|