diff --git a/.hgtags b/.hgtags
index 1891e30..fb16787 100644
--- a/.hgtags
+++ b/.hgtags
@@ -18,3 +18,4 @@ f150e831c44117ebfab063a8121a97f8efc667ee V-03-00-01
9979bdac13a88cd8ed67ab56f793deac9a3b4768 V-05-00-00
3b5b83a1e4e210ab9d22d8e6b2af5ff1fe8c3b6b V-05-00-01
365bb963a44c414ee88d1b436f8098572441e91d V-05-00-02
+51cb3e91355d1f808315600566987a205dfc8c30 V-05-01-00
diff --git a/CodeArtEng.Tcp/CodeArtEng.Tcp.csproj b/CodeArtEng.Tcp/CodeArtEng.Tcp.csproj
index 1a09d84..5570ece 100644
--- a/CodeArtEng.Tcp/CodeArtEng.Tcp.csproj
+++ b/CodeArtEng.Tcp/CodeArtEng.Tcp.csproj
@@ -5,24 +5,45 @@
Code Artist
Code Art Engineering
TCP Server and Client. TCP App Server and Client.
-Support .NET Framework 4.5, .NET 5.0 and .NET 6.0 (Preview)
+Support .NET Framework 4.8, .NET 6.0
Copyright © Code Art Engineering 2021
MIT
CAELogoSmall.png
https://github.com/Code-Artist/CodeArtEng.Tcp
GitHub
- Support .NET 5.0 and .NET 6.0 (Preview), separated WinForms components to CodeArtEng.Tcp.Winforms
- 5.0.2
+
+ 5.1.0
true
https://github.com/Code-Artist/CodeArtEng.Tcp
- 5.0.2.0
- 5.0.2.0
+
+
+ True
DEBUG;TRACE
+
+ $(WarningsAsErrors);NU1605
+ 1701;1702
+
+
+
+ $(WarningsAsErrors);NU1605
+ 1701;1702
+
+
+
+ $(WarningsAsErrors);NU1605
+ 1701;1702
+
+
+
+ $(WarningsAsErrors);NU1605
+ 1701;1702
+
+
diff --git a/CodeArtEng.Tcp/TcpServer.cs b/CodeArtEng.Tcp/TcpServer.cs
index 0f5b405..0e95f4e 100644
--- a/CodeArtEng.Tcp/TcpServer.cs
+++ b/CodeArtEng.Tcp/TcpServer.cs
@@ -92,6 +92,9 @@ public class TcpServer : IDisposable
/// Default value is 100ms
///
public int InterMessageTimeout { get; set; } = 100;
+ ///
+ /// Message receive mode. See
+ ///
public TcpServerMessageEndMode MessageReceivedEndMode { get; set; } = TcpServerMessageEndMode.Delimiter;
private readonly List ActiveConnections = new List();