Skip to content

Commit 2bf93a7

Browse files
authored
Update IUdpClient.cs
1 parent a5a24c3 commit 2bf93a7

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-

2-
public interface IUdpClient
1+
namespace NetSdrClientApp.Networking
32
{
4-
event EventHandler<byte[]>? MessageReceived;
3+
public interface IUdpClient
4+
{
5+
event EventHandler<byte[]>? MessageReceived;
56

6-
Task StartListeningAsync();
7+
Task StartListeningAsync();
78

8-
void StopListening();
9-
void Exit();
10-
}
9+
void StopListening();
10+
11+
void Exit();
12+
}
13+
}

0 commit comments

Comments
 (0)