Browse Source

[Modify] Add it

To have access to the underlying TCP socket.
pull/298/merge
sta 5 months ago
parent
commit
f558f7f8d6
  1. 6
      websocket-sharp/Net/HttpConnection.cs

6
websocket-sharp/Net/HttpConnection.cs

@ -178,6 +178,12 @@ namespace WebSocketSharp.Net
}
}
public Socket Socket {
get {
return _socket;
}
}
public Stream Stream {
get {
return _stream;

Loading…
Cancel
Save