[Modify] Replace it

This commit is contained in:
sta 2021-05-03 21:21:04 +09:00
parent faebf0305f
commit 6ccf3c277f

View File

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