从网络组件更新,准备修改在线用户模型,v1.6.7

This commit is contained in:
dathlin
2017-10-09 14:13:45 +08:00
parent a162e65a07
commit 8252e4d356
6 changed files with 11 additions and 6 deletions

View File

@@ -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>

View File

@@ -45,7 +45,7 @@ namespace CommonLibrary
*
**************************************************************************/
SoftBasic.FrameworkVersion = new SystemVersion("1.6.6");
SoftBasic.FrameworkVersion = new SystemVersion("1.6.7");
}

Binary file not shown.

View File

@@ -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通信中的远程端

View File

@@ -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)

View File

@@ -360,7 +360,7 @@ namespace 软件系统客户端模版
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)