14 references to Failure
System.Data.Services.Client (14)
System\Data\Services\Client\BaseAsyncResult.cs (7)
248if (null != result.Failure) 250if (Util.IsKnownClientExcption(result.Failure)) 252throw result.Failure; 255throw Error.InvalidOperation(Strings.DataServiceException_GeneralError, result.Failure); 339if (!Util.DoNotHandleException(this.Failure)) 371if ((null != this.userCallback) && !(this.Failure is System.Threading.ThreadAbortException) && !(this.Failure is System.StackOverflowException))
System\Data\Services\Client\DataServiceRequest.cs (1)
227throw new DataServiceQueryException(Strings.DataServiceRequest_FailGetCount, response.Failure);
System\Data\Services\Client\GetReadStreamResult.cs (3)
132if (null != this.Failure) 134throw this.Failure; 144Debug.Assert(null != this.response || null != this.Failure, "should have response or exception");
System\Data\Services\Client\QueryResult.cs (3)
273if (null != this.Failure) 275throw this.Failure; 379Debug.Assert(null != this.httpWebResponse || null != this.Failure, "should have response or exception");