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
I require the ability to submit binary files as part of a request body for testing.
I can't use .File() because this converts the request to a multipart/form - which my server does not expect.
The current implementation of Body() in RA/src/SetupContext.cs line 159 uses JsonConvert.Deserialize() but I need a way to prevent it from converting everything to json and use the correct serializer for whatever I pass in.
@DayneD89 - I know you're working on this at the moment, could you possibly look into this?
Thanks.
The text was updated successfully, but these errors were encountered:
I require the ability to submit binary files as part of a request body for testing.
I can't use .File() because this converts the request to a multipart/form - which my server does not expect.
The current implementation of Body() in RA/src/SetupContext.cs line 159 uses JsonConvert.Deserialize() but I need a way to prevent it from converting everything to json and use the correct serializer for whatever I pass in.
@DayneD89 - I know you're working on this at the moment, could you possibly look into this?
Thanks.
The text was updated successfully, but these errors were encountered: