using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HslCommunication.Enthernet;
using HslCommunication.BasicFramework;
using CommonLibrary;
namespace ClientsLibrary
{
//====================================================================================================
// 模版说明:
//====================================================================================================
///
/// 一个通用的用户客户端类
///
public class UserClient
{
public static JsonSettings JsonSettings = new JsonSettings();
///
/// 本软件的当前版本,用来验证更新的关键依据
///
public static SystemVersion CurrentVersion { get; } = new SystemVersion("1.0.0");
///
/// 服务器的IP地址,默认为127.0.0.1,可用于单机调试
///
public static string ServerIp { get; } = "127.0.0.1";
///
/// 所有版本更新信息的对象
///
public static List HistoryVersions { get; } = new List
{
//写入所有的历史版本信息,这样就能在更新日志的界面查看到信息
new VersionInfo()
{
VersionNum=new SystemVersion("1.0.0"),
ReleaseDate=new DateTime(2017,1,1),//该版本发布的日期
UpdateDetails=new StringBuilder("1.本系统第一版本正式发布使用。"+Environment.NewLine+
"2.提供了多客户端用时在线的功能。"+Environment.NewLine+
"3.需要用户自行添加"),
},
};
///
/// 设置或获取系统的公告
///
public static string Announcement { get; set; } = "";
///
/// 当前系统的登录账户
///
public static UserAccount UserAccount { get; set; } = new UserAccount();
///
/// 服务器的时间,该时间与服务器同步,每隔10秒钟,防止客户端串改单机时间,可以作为各种时间条件判定
///
public static DateTime DateTimeServer { get; set; } = DateTime.Now;
///
/// 用于访问服务器数据的网络对象类,必须修改这个端口参数,否则运行失败
///
public static Net_Simplify_Client Net_simplify_client = new Net_Simplify_Client(
new System.Net.IPEndPoint(System.Net.IPAddress.Parse(ServerIp),
CommonLibrary.CommonLibrary.Port_Second_Net))
{
KeyToken = CommonHeadCode.KeyToken,
ConnectTimeout = 5000,
};
///
/// 用于使用udp向服务器进行发送即时可丢失数据的对象
///
public static Net_Udp_Client Net_Udp_Client = new Net_Udp_Client(
new System.Net.IPEndPoint(System.Net.IPAddress.Parse(ServerIp),
CommonLibrary.CommonLibrary.Port_Udp_Server))
{
KeyToken = CommonHeadCode.KeyToken,
};
}
}