[Modify] Replace it

This commit is contained in:
sta 2021-05-05 20:35:35 +09:00
parent 44446ca8e1
commit 8c425331f6

View File

@ -467,7 +467,9 @@ namespace WebSocketSharp.Net
/// </exception>
public Func<IIdentity, NetworkCredential> UserCredentialsFinder {
get {
CheckDisposed ();
if (_disposed)
throw new ObjectDisposedException (_objectName);
return _userCredFinder;
}