We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I get the return object from throw new SwaggerException (...) using TResult? I need the deserialized object in return
The text was updated successfully, but these errors were encountered:
My error and success return objects are of the same type
Sorry, something went wrong.
For example, in this way?
try { } catch (SwaggerException ex) { //if (ex.StatusCode != 200) // you can check statusCode return JsonConvert.DeserializeObject<TResult>(ex.Response, new JsonSerializerSettings()); }
or
try { } catch (SwaggerException<TResult> ex) { //if (ex.StatusCode != 200) // you can check statusCode return ex.Result; }
No branches or pull requests
How do I get the return object from throw new SwaggerException (...) using TResult?
I need the deserialized object in return
The text was updated successfully, but these errors were encountered: