init commit all code

This commit is contained in:
路 范
2021-12-20 17:17:49 +08:00
parent 66d48149a6
commit f60ad763ed
1325 changed files with 1744918 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using Getf.Service.Transfer.Client.WinService.HttpHandler;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Getf.Service.Transfer.Client.WinService.Test
{
class Program
{
static void Main(string[] args)
{
/*HttpService httpService = new HttpService();
var json = "{\"Head\":{\"A\":\"b\",\"C\":1}}";
var r = httpService.DoRequest("http://www.baidu.com", "post", JsonConvert.DeserializeObject<JObject>(json), out string msg);*/
/*ClientService clientService = new ClientService();
clientService.Start();*/
Service1 service1 = new Service1();
service1.Debug();
Console.ReadKey();
}
}
}