How to read/parse Content from OkNegotiatedContentResult?
问题 In one of my API actions ( PostOrder ) I may be consuming another action in the API ( CancelOrder ). Both return a JSON formatted ResultOrderDTO type, set as a ResponseTypeAttribute for both actions, which looks like this: public class ResultOrderDTO { public int Id { get; set; } public OrderStatus StatusCode { get; set; } public string Status { get; set; } public string Description { get; set; } public string PaymentCode { get; set; } public List<string> Issues { get; set; } } What I need is