You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to add support of async serializer?
System.Text.Json IAsyncEnumerable serialization
If you want to serialize IAsyncEnumerable in net6+ app you need to use JsonSerializer.SerializeAsync() method
IRestSerializer does not allow to await inside Serializer() as it's synchronious method.
Temporary solution - using GetAwaiter().GetResult() - but this approach doesn't offer "true" async support
The text was updated successfully, but these errors were encountered:
I tried to do it but getting full advantage of async serialisation requires reconsidering the way serialisation works in general in RestSharp. For example, SerializeAsync and DeserializeAsync of JsonSerializer work with streams, and RestSharp works with strings. So, the whole thing needs to be converted to work with streams instead of strings.
Of course, it is trivial to change the signature for interfaces and all the implementations. Would this help?
Would it be possible to add support of async serializer?
System.Text.Json IAsyncEnumerable serialization
If you want to serialize IAsyncEnumerable in net6+ app you need to use JsonSerializer.SerializeAsync() method
IRestSerializer does not allow to await inside Serializer() as it's synchronious method.
Temporary solution - using GetAwaiter().GetResult() - but this approach doesn't offer "true" async support
The text was updated successfully, but these errors were encountered: