HttpSelfHostServer kullananlarınız için bu kod bölümü HttpContext.Current üzerinde başarısız olacaktır, çünkü kendi kendine sunucuda bulunmaz.
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);
}
Ancak bu geçersiz kılma yoluyla kendi ana bilgisayar "bağlamını" kesebilirsiniz.
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 size "GET", "POST" vb. Bilgileri verir ve GetQueryNameValuePairs? Callback parametresini alabilir. Böylece gözden geçirilmiş kodum şöyle görünür:
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);
}
Umarım bu bazılarınıza yardımcı olur. Bu şekilde mutlaka bir HttpContext şimine ihtiyacınız yoktur.
C.