asp.net mvc4 webapi フレームワークから servicestack フレームワークに移行しようとしています。webapi に delegatingHandler がありますが、これは servicestack でこれに相当しますか?
ここでリクエストを検証し、それ以上先に進むことなくカスタム レスポンスを返します。
私の委譲ハンドラー
public class xyzDH : DelegatingHandler
{
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
int maxLengthAllowed = 200;
long? contentLen = request.Content.Headers.ContentLength;
if (contentLen > maxLengthAllowed)
{
var defaultResponse = ResponseHelper.GetBaseResponse("Content Lenght Issue", true, UploadLogSizeIssue);
return Task<HttpResponseMessage>.Factory.StartNew(() =>
{
var response = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent(defaultResponse.ToString(), Encoding.UTF8, "message/http")
};
return response;
});
}
return base.SendAsync(request, cancellationToken);
}
}