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
With the current code, You cannot create an endpoint which can return a 201 with a response body and a 204.
The getter will check, if the first success response has the same type as any following success responses which will lead to an expection, if the server responds with any other than the first response code.
IMHO, HttpUtilities.IsSuccessStatusCode(StatusCode) should always ne the correct call here.
Sadly, we cannot bypass this problem with a custom template
The text was updated successfully, but these errors were encountered:
With the current code, You cannot create an endpoint which can return a 201 with a response body and a 204.
The getter will check, if the first success response has the same type as any following success responses which will lead to an expection, if the server responds with any other than the first response code.
IMHO,
HttpUtilities.IsSuccessStatusCode(StatusCode)
should always ne the correct call here.Sadly, we cannot bypass this problem with a custom template
The text was updated successfully, but these errors were encountered: