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.
Frederick F. Kautz IV 28012a08c7 Bumping to 0.0.1 10 years ago
Minio.Client Bumping to 0.0.1 10 years ago
Minio.ClientTests Handle 405 and 501. 10 years ago
.gitattributes Initial code commit with working MakeBucket and V4 signing 10 years ago
.gitignore Initial code commit with working MakeBucket and V4 signing 10 years ago
LICENSE Initial Commit 10 years ago
Minio.Client.sln Bumping to 0.0.1 10 years ago
README.md Update README.md 10 years ago

README.md

Minimal object storage library for the .NET Platform Gitter

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

Contribute

Contributors Guide