Client udp service

This commit is contained in:
2025-05-03 21:43:02 +03:00
parent f62a4943b9
commit 4f18f41389
11 changed files with 143 additions and 15 deletions
+5
View File
@@ -8,6 +8,11 @@ namespace Example.Frontend
{
public class ClientBasedPrinter : IPrinter
{
public Task SomeoneIsApproaching(string humanName)
{
return Task.CompletedTask;
}
public void OnPrintExternal(IPage p0, RequestContext ro)
{
}
+2
View File
@@ -1,5 +1,6 @@
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
@@ -120,6 +121,7 @@ class Program
DemoCheck.Show();
Console.ReadKey();
//
// const int iterations = 10000;
// var timer = Stopwatch.StartNew();