WebServiceRequestBase<TResponse>.HandleResponseCoreAsync method

Called to handle the response.

protected abstract Task<bool> HandleResponseCoreAsync(WebServiceResponseHandlerInfo<TResponse> info)
parameter description
info The info.

Return Value

True if the response was handled and info.Response should be returned. False if the response was not handled and an exception should be thrown.

Remarks

The following types of exceptions will be safely wrapped by a WebServiceException: InvalidDataException, IOException, WebException, and ObjectDisposedException.

See Also