HttpSelfHostServer を使用している場合、セルフ ホスト サーバーには存在しないため、コードのこのセクションは HttpContext.Current で失敗します。
private Tuple<bool, string> IsJsonpRequest()
{
if(HttpContext.Current.Request.HttpMethod != "GET")
return new Tuple<bool, string>(false, null);
var callback = HttpContext.Current.Request.QueryString[CallbackQueryParameter];
return new Tuple<bool, string>(!string.IsNullOrEmpty(callback), callback);
}
ただし、このオーバーライドを介してセルフホストの「コンテキスト」を傍受できます。
public override MediaTypeFormatter GetPerRequestFormatterInstance(Type type, HttpRequestMessage request, MediaTypeHeaderValue mediaType)
{
_method = request.Method;
_callbackMethodName =
request.GetQueryNameValuePairs()
.Where(x => x.Key == CallbackQueryParameter)
.Select(x => x.Value)
.FirstOrDefault();
return base.GetPerRequestFormatterInstance(type, request, mediaType);
}
request.Method は「GET」、「POST」などを提供し、GetQueryNameValuePairs は ?callback パラメータを取得できます。したがって、私の修正されたコードは次のようになります。
private Tuple<bool, string> IsJsonpRequest()
{
if (_method.Method != "GET")
return new Tuple<bool, string>(false, null);
return new Tuple<bool, string>(!string.IsNullOrEmpty(_callbackMethodName), _callbackMethodName);
}
これがあなたの何人かを助けることを願っています。この方法では、必ずしも HttpContext shim は必要ありません。
C.