我的主机库中有这段代码“配置:
ExceptionHandler = (httpReq, httpRes, operationName, ex) =>
{
try
{
string req = httpReq.ToJsv();
}
catch
{
}
};
序列化 httpReq 的尝试只是终止服务,尽管它被包装在 try/catch 中。
知道为什么会这样吗?