チェーンの最後に単純な OWIN ミドルウェアがあり、サーバー ヘッダー値を次のように設定しています。
myiowincontext.Response.Headers.Remove("Server");
myiowincontext.Response.Headers.Set("Server" ,"owin");
return myiowincontext.Response.WriteAsync( "hello world" );
しかし、それはヘッダーを変更するだけのようです
Server: Microsoft-HTTPAPI/2.0
に
Server: owin Microsoft-HTTPAPI/2.0`
「Microsoft-HTTPAPI/2.0」部分を含めずに、サーバーヘッダー値をカスタムに設定する適切な方法は何ですか?
ありがとう。