[Modify] Replace it

This commit is contained in:
sta 2021-04-29 19:34:07 +09:00
parent 0e550b860e
commit 31d1496ffc

View File

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