9 lines
205 B
C#
9 lines
205 B
C#
|
using System.Net;
|
||
|
|
||
|
namespace SharpChat.Connections;
|
||
|
|
||
|
public interface Connection {
|
||
|
IPEndPoint RemoteEndPoint { get; }
|
||
|
void Close(ConnectionCloseReason reason = ConnectionCloseReason.Unexpected);
|
||
|
}
|