minio-dotnet icon indicating copy to clipboard operation
minio-dotnet copied to clipboard

MinIO Client SDK for .NET

Results 188 minio-dotnet issues
Sort by recently updated
recently updated
newest added

var args = new PutObjectArgs().WithBucket(buckName).WithObject(objectName).WithStreamData(stream).WithObjectSize(stream.Length); await minio.PutObjectAsync(args); is exception: One or more errors occurred. (Object reference not set to an instance of an object.) --------------- var args = new PutObjectArgs().WithBucket(buckName).WithObject(objectName).WithFileName(filefullname).WithObjectSize(stream.Length).WithContentType("application/octet-stream");...

I'm having an issue with retrieving the "next 1000" items that exist in a bucket. Basically my use case is that my minio buckets can have folders where the count...

There are a number of parameter checks where the length check looks for `> 512` but the error in the exception says 1024. For example https://github.com/minio/minio-dotnet/blob/bb2d0943552114d37e59bf8194b384aad129d765/Minio/Helper/utils.cs#L78-L79 https://github.com/minio/minio-dotnet/blob/bb2d0943552114d37e59bf8194b384aad129d765/Minio/Helper/utils.cs#L84-L85

Hi, settings like: ` SetBucketLifecycleArgs args = new SetBucketLifecycleArgs() .WithBucket(bucketName) .WithLifecycleConfiguration( new LifecycleConfiguration(new List(new[] { new LifecycleRule { AbortIncompleteMultipartUploadObject = null, ID = "Delete imagines after 31 days", Expiration =...

hi! i've tried use s3-zip extension and pass x-minio-extract header with GetObjectAsync, but it use inside StatObjectAsync, which cut all my headers. ![image](https://user-images.githubusercontent.com/1768256/179555931-7a0083f7-cf7e-40f5-b5e8-75f4007dd8ef.png)

priority: medium

> { > IObservable observable = minio.ListObjectsAsync(listArgs); > IDisposable subscription = observable.Subscribe( > item => bucketList.Add(item.Key), > ex => Debug.LogError(ex), > () => Debug.Log("Listed all objects in bucket " +...

I encounter a new issue when upgrading to latest version. And I found this: https://github.com/minio/minio-dotnet/blob/master/Minio/DataModel/ObjectOperationsArgs.cs#L1765 internal override void Validate() { base.Validate(); // Check atleast one of filename or stream are...

Hi, I'm using the sdk in long running project. Memory management is a big topic. Rider IDE (Jetbrains) is warning me about LOH allocation - in internal method `ReadFullAsync`. Recommendations...

How to find the compose_object api(like python) in dotnet sdk?

priority: medium
community

using dependency-check still have following security issues: CVE-2018-1000538](http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-1000538) CVE-2020-11012](http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-11012)