我尝试在httpNancy服务器中发送以下命令。现在我想检查一下是否可能发生500个HTTP拒绝错误。
有人可以指导我吗?

    public CommandModule(ICommandFetcher fetcher, ICommandBus commandBus)
    {
        Post["/"] = parameters =>
        {
            var commandRequest = this.Bind<MessageEnvelope>();
            var command = fetcher.FetchFrom(commandRequest);
            commandBus.Send((ICommand) command, commandRequest.MetaData);
            return HttpStatusCode.OK;
        };

    }

最佳答案

我认为您需要的是Wiki中记录的error handling application-level hooks

关于c# - 如何处理http 500错误?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20392837/

10-12 03:51