Closed pauliusg closed 9 years ago
Generated
public virtual async Task<HttpResponseMessage> UpdateProcessedImageFlagAsync(Int32 imageId,Boolean processedImage) { return await HttpClient.PutAsJsonAsync("api/UpdateProcessedImage?imageId=" + imageId + "&processedImage=" + processedImage); }
I fixed manually like this and it works:
public virtual async Task<HttpResponseMessage> UpdateProcessedImageFlagAsync(Int32 imageId,Boolean processedImage) { return await HttpClient.PutAsJsonAsync("api/UpdateProcessedImage?imageId=" + imageId + "&processedImage=" + processedImage, string.Empty); }
@pauliusg This has been resolved. It will add default(HttpResponseMessage) instead of string.Empty if no body is specified.
default(HttpResponseMessage)
string.Empty
Thanks for quick fix!
You're welcome 😊
Generated
I fixed manually like this and it works: