ServiceResponse.withSoapFault constructor
ServiceResponse.withSoapFault(
- SoapFaultDetails soapFaultDetails
Implementation
ServiceResponse.withSoapFault(SoapFaultDetails soapFaultDetails) {
this._result = ServiceResult.Error;
this._errorCode = soapFaultDetails.ResponseCode;
this._errorMessage = soapFaultDetails.FaultString;
this._errorDetails = soapFaultDetails.ErrorDetails;
}