以下の例外契約があります。HTTPクライアント経由でWeb APIからビジネス例外を投げる方法
public class AdminBusinessException : Exception
{
/// <summary>
/// Gets or Sets Exception Code.
/// </summary>
public string ExceptionCode { get; set; }
/// <summary>
/// Gets or Sets Description.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Initiates here.
/// </summary>
/// <param name="exceptionCode"></param>
/// <param name="description"></param>
public AdminBusinessException(string exceptionCode, string description)
{
this.ExceptionCode = exceptionCode;
this.Description = description;
}
}
だから私は、例外コードだけでなく、私のHTTPクライアントに説明をスローします。 いずれか1つ私にこれを助けてください。
私はこれにstrucking午前:(:(
可能な複製の[Web APIをクライアントに戻るカスタム例外をスロー](http://stackoverflow.com/questions/26718868/web-api-throw-custom-exception-back-to-client) –