[Modify] Add it

This commit is contained in:
sta 2021-05-23 22:16:52 +09:00
parent 05d24f72d2
commit 40abc9b7f2

View File

@ -80,6 +80,16 @@ namespace WebSocketSharp.Net
#region Internal Properties
internal HttpListenerContext Context
{
get {
if (_exception != null)
throw _exception;
return _context;
}
}
internal bool EndCalled {
get {
return _endCalled;