[Modify] Polish it

This commit is contained in:
sta 2019-01-21 21:16:44 +09:00
parent 8d8d49d91d
commit ae9bc48258

View File

@ -764,12 +764,6 @@ namespace WebSocketSharp.Net
if (response == null || response.Length == 0) if (response == null || response.Length == 0)
return null; return null;
if (credentialsFinder == null)
return null;
if (!(scheme == AuthenticationSchemes.Basic || scheme == AuthenticationSchemes.Digest))
return null;
if (scheme == AuthenticationSchemes.Digest) { if (scheme == AuthenticationSchemes.Digest) {
if (realm == null || realm.Length == 0) if (realm == null || realm.Length == 0)
return null; return null;
@ -777,6 +771,13 @@ namespace WebSocketSharp.Net
if (method == null || method.Length == 0) if (method == null || method.Length == 0)
return null; return null;
} }
else {
if (scheme != AuthenticationSchemes.Basic)
return null;
}
if (credentialsFinder == null)
return null;
if (!response.StartsWith (scheme.ToString (), StringComparison.OrdinalIgnoreCase)) if (!response.StartsWith (scheme.ToString (), StringComparison.OrdinalIgnoreCase))
return null; return null;