Skip to content

harshavardhana/minio-dotnet

 
 

Repository files navigation

Minimal object storage library for the .NET Platform Gitter

Install from NuGet Build Status

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

About

Minimal object storage library for the .NET platform

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%