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