[Modify] Replace it

This commit is contained in:
sta 2021-04-27 19:52:21 +09:00
parent 600c5389d0
commit c3a5680f94

View File

@ -147,7 +147,9 @@ namespace WebSocketSharp.Net
/// </exception>
public AuthenticationSchemes AuthenticationSchemes {
get {
CheckDisposed ();
if (_disposed)
throw new ObjectDisposedException (_objectName);
return _authSchemes;
}