从网络组件更新,准备修改在线用户模型,v1.6.7
This commit is contained in:
@@ -36,7 +36,7 @@ namespace ClientsLibrary
|
||||
/// <summary>
|
||||
/// 本软件的当前版本,用来验证更新的关键依据
|
||||
/// </summary>
|
||||
public static SystemVersion CurrentVersion { get; } = new SystemVersion("1.0.0.171008");
|
||||
public static SystemVersion CurrentVersion { get; } = new SystemVersion("1.0.0.171009");
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -45,7 +45,7 @@ namespace CommonLibrary
|
||||
*
|
||||
**************************************************************************/
|
||||
|
||||
SoftBasic.FrameworkVersion = new SystemVersion("1.6.6");
|
||||
SoftBasic.FrameworkVersion = new SystemVersion("1.6.7");
|
||||
|
||||
}
|
||||
|
||||
|
||||
Binary file not shown.
@@ -1327,7 +1327,7 @@
|
||||
</member>
|
||||
<member name="M:HslCommunication.BasicFramework.SystemVersion.ToString">
|
||||
<summary>
|
||||
获取版本号的字符串形式
|
||||
获取版本号的字符串形式,如果内部版本号为0,则显示时不携带
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
@@ -2887,6 +2887,11 @@
|
||||
心跳验证的时间点
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:HslCommunication.Enthernet.AsyncStateOne.ClientType">
|
||||
<summary>
|
||||
客户端的类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:HslCommunication.Enthernet.AsyncStateOne.UdpEndPoint">
|
||||
<summary>
|
||||
UDP通信中的远程端
|
||||
|
||||
@@ -413,7 +413,7 @@ namespace 软件系统客户端Wpf
|
||||
net_socket_client.EndPointServer = new System.Net.IPEndPoint(
|
||||
System.Net.IPAddress.Parse(UserClient.ServerIp),
|
||||
CommonProtocol.Port_Main_Net);
|
||||
net_socket_client.ClientAlias = $"{UserClient.UserAccount.UserName} ({UserClient.UserAccount.Factory})";//标记客户端在线的名称
|
||||
net_socket_client.ClientAlias = UserClient.UserAccount.UserName; // 传入账户名
|
||||
net_socket_client.ClientStart();
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
@@ -355,12 +355,12 @@ namespace 软件系统客户端模版
|
||||
{
|
||||
try
|
||||
{
|
||||
net_socket_client.KeyToken = CommonProtocol.KeyToken;// 新增的身份令牌
|
||||
net_socket_client.KeyToken = CommonProtocol.KeyToken; // 新增的身份令牌
|
||||
net_socket_client.LogNet = UserClient.LogNet;
|
||||
net_socket_client.EndPointServer = new System.Net.IPEndPoint(
|
||||
System.Net.IPAddress.Parse(UserClient.ServerIp),
|
||||
CommonProtocol.Port_Main_Net);
|
||||
net_socket_client.ClientAlias = $"{UserClient.UserAccount.UserName} ({UserClient.UserAccount.Factory})";//标记客户端在线的名称
|
||||
net_socket_client.ClientAlias = UserClient.UserAccount.UserName; // 传入账户名
|
||||
net_socket_client.ClientStart();
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
Reference in New Issue
Block a user