minio-dotnet
minio-dotnet copied to clipboard
MinIO Client SDK for .NET
Currently API: ``` cs var args = new BucketExistsArgs() .WithBucket(bucketName); ``` I cannot read the `BucketName` property from `args` for logging, too. I prefer to use the C# object initializer...
This issue is related to [this discussion.](https://github.com/minio/minio/issues/18299) I'm using MinIO in conjunction with the .NET SDK to generate presigned URLs for object downloads. I have a specific requirement to include...
I'm trying to create an bucket without Versioning enabled. await _minioClient.MakeBucketAsync( new MakeBucketArgs() .WithObjectLock() .WithBucket(bucketName) //.WithObjectLock() .WithLocation(location)); Enables versioning. Try to suspend Versioning with: await _minioClient.SetVersioningAsync( new SetVersioningArgs() .WithBucket(bucketName) .WithVersioningSuspended());...
🐞 Issue: Local file remains locked after successful PutObjectAsync upload I'm using the MinIO .NET SDK to upload a file using PutObjectAsync. The upload completes successfully — I can see...
There are several issues with generating presigned url which do not fit in the title of this issue. So, let me try to explain my scenario and then write down...
I didn't find an API like `PresignedStatObject` in the API, but there is PresignedHeadObject in the Go SDK. Currently, this is the only way I can do it, ```csharp var...
I am using Minio 5.0. When I try to subscribe to bucket events with ListenBucketNotificationsAsync it only works for the last type of event. Example: `var events = new List...
Uploading large files to Cloudflare R2 will wait indefinitely
``` // This is the address and port that nginx listens on // Forward to minio api address 192.168.1.203:9000 var endpoint = "192.168.1.202:9000"; // using 192.168.1.202:80 forward success var accessKey...
I'm use Minio nuget version is 4.0.7.. When I uploaded an 80MB file, it was successful, but when I getthe file by ·getObjectStreamAsync·, I reported the following error.  “MinIO...