📝

YetAnotherHttpHandlerでHTTP versionエラーが出た

に公開

HttpRequestException: request has unsupported HTTP version

これを

var handler = new YetAnotherHttpHandler();

こうする

var handler = new YetAnotherHttpHandler();
handler.Http2Only = true;

HTTP/2のみサポートしているということをサーバに知らせる

Discussion