We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5a24c3 commit 2bf93a7Copy full SHA for 2bf93a7
1 file changed
NetSdrClientApp/Networking/IUdpClient.cs
@@ -1,10 +1,13 @@
1
-
2
-public interface IUdpClient
+namespace NetSdrClientApp.Networking
3
{
4
- event EventHandler<byte[]>? MessageReceived;
+ public interface IUdpClient
+ {
5
+ event EventHandler<byte[]>? MessageReceived;
6
- Task StartListeningAsync();
7
+ Task StartListeningAsync();
8
- void StopListening();
9
- void Exit();
10
-}
+ void StopListening();
+
11
+ void Exit();
12
+ }
13
+}
0 commit comments