-
-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
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 to use handler / interceptor while (de)serializing the json content? #90
Comments
You can start checking here https://github.com/proyecto26/RestClient/blob/master/src/Proyecto26.RestClient/Helpers/HttpBase.cs#L81 |
I'm confused a little bit. Do you suggest me to edit source code directly or a technique to override this method I'm not aware of? |
Any pull request is always welcome mate, this is a community plugin 🙂 |
Thanks for your support. I'll do if I make it worked.. |
You don't need to close this, anyone could do this task in their spare time, that's Open Source :) |
@coldfish do you have any example with C#? |
I'd like to write an interceptor to manipulate the body content of HTTP calls. Before sending, it's needed to be converted to Encrypted data as byte[] and after receiving, deserialize the object as well. I don't want to make this manipulation for each web requests and finally, I need them to get as pure T Request/Response classes.
Is there any way to handle the http calls in one-place for requests/responses?
The text was updated successfully, but these errors were encountered: