[Modify] Add it

This commit is contained in:
sta 2019-07-15 22:05:09 +09:00
parent d5f45e5767
commit f7378d8049

View File

@ -69,6 +69,12 @@ namespace WebSocketSharp
_clean = clean;
}
internal CloseEventArgs (ushort code, string reason, bool clean)
{
_payloadData = new PayloadData (code, reason);
_clean = clean;
}
#endregion
#region Public Properties