提供了故障狀態我有一個WCF服務,我打電話方式如下:爲WCF服務
MyService client = new MyService();
bool result = client.MyServiceMethod(param1, param2);
可變結果設置爲true或false指示成功或失敗。在成功的情況下,這是明確的,但在失敗的情況下,我需要得到一些失敗的細節。
從我的服務,我用
OutgoingWebResponseContext response = WebOperationContext.Current.OutgoingResponse;
response.StatusCode = HttpStatusCode.BadRequest;
response.StatusDescription = "Invalid parameter.";
return false;
我的問題是我如何檢索響應描述是正確的方式來提供故障反饋?
我該如何從調用程序中檢索細節? 對象結果= client.MyServiveMethod(param1,param2);將不起作用 – ElenaDBA
爲發佈添加了詳細信息。如果您有任何問題,請告訴我。 –