gpt4 book ai didi

c# - ServiceStack ServiceExceptionHandler.Add 方法不存在?

转载 作者:太空宇宙 更新时间:2023-11-03 20:03:52 25 4
gpt4 key购买 nike

我正在使用 ServiceStack 版本 3.9.71,但找不到“添加”方法。是关于 wiki 的文档吗?过时?我应该怎么做才能让它发挥作用?

public override void Configure(Container container)
{
this.ServiceExceptionHandler.Add((httpReq, request, exception) => {
return DtoUtils.CreateErrorResponse(request, exception);
});
}

最佳答案

您正在查看 v4 文档。你需要 v3 documentation .

//Handle Exceptions occurring in Services:
this.ServiceExceptionHandler = (httpReq, request, exception) => {
//log your exceptions here
...
//call default exception handler or prepare your own custom response
return DtoUtils.HandleException(this, request, exception);
};

注意 url 中的 v3:https://github.com/ServiceStackv3/ServiceStackv3/wiki

关于c# - ServiceStack ServiceExceptionHandler.Add 方法不存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25283422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com