WCF 4.0 - Returning JSON WebFaultException with REST Service Template

后端 未结 3 851
名媛妹妹
名媛妹妹 2021-02-02 03:34

I am using the WCF REST Service Template 40(CS). I am throwing WebFaultExceptions as such:

throw new WebFaultException(\"Error Message\", HttpStatu         


        
3条回答
  •  时光取名叫无心
    2021-02-02 04:25

    for those still having this issue. This worked for me

    WebOperationContext.Current.OutgoingResponse.ContentType = "application/json";
    throw new System.ServiceModel.Web.WebFaultException(
              new Response(false,"was not found", ""),System.Net.HttpStatusCode.BadRequest);
    

提交回复
热议问题