Uploading an Object
If you have any questions during development, post them on the Issues page of GitHub. For details about parameters and usage of each API, see the API Reference
Sample code:
PutObjectRequest request = new PutObjectRequest
{
BucketName = "bucketname",
ObjectKey = "objectname",
InputStream = new MemoryStream(Encoding.UTF8.GetBytes("Hello OBS"))
};
client.PutObject(request);
Last Article: Creating a Bucket
Next Article: Downloading an Object

Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.