We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
public interface IMyApi { [Multipart] [Put("")] Task<BaseResponse> UploadFileAsync([Url] string dynamicUrl, StreamPart stream, CancellationToken cancellationToken = default); }
await api.UploadFileAsync( presignedUrl, new StreamPart(new MemoryStream(fileContent), request.FileName), cancellationToken).ConfigureAwait(false);
When I set the attribute [Put("")], when running the program it does not automatically pass the dynamic url in to replace it. it doesn't seem to work
Base address of IMyApi: https://example.com presignedUrl: https://s3.amazon.com/xyz/abc...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I set the attribute [Put("")], when running the program it does not automatically pass the dynamic url in to replace it.
it doesn't seem to work
Base address of IMyApi: https://example.com
presignedUrl: https://s3.amazon.com/xyz/abc...
The text was updated successfully, but these errors were encountered: