[Modify] Replace it

This commit is contained in:
sta 2021-05-03 21:24:51 +09:00
parent d1912f4ae6
commit af9f135637

View File

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