You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
10 years ago | |
---|---|---|
Minio.Client | 10 years ago | |
Minio.ClientTests | 10 years ago | |
.gitattributes | 10 years ago | |
.gitignore | 10 years ago | |
LICENSE | 10 years ago | |
Minio.Client.sln | 10 years ago | |
README.md | 10 years ago |
README.md
Minimal object storage library for the .NET Platform 
Install from NuGet
To install Json.NET, run the following command in the Package Manager Console
PM> Install-Package Minio
Example
private static ObjectStorageClient client = ObjectStorageClient.GetClient("https://s3-us-west-2.amazonaws.com", "Access Key", "Secret Key");
var buckets = client.ListBuckets();
foreach (Bucket bucket in buckets)
{
Console.Out.WriteLine(bucket.Name + " " + bucket.CreationDate);
}
Additional Examples
- ExamplePutObject.cs
- ExampleGetObject.cs
- ExampleGetPartialObject.cs
- ExampleListBuckets.cs
- ExampleListObjects.cs
- ExampleMakeBucket.cs
- ExampleRemoveBucket.cs