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 c002e46c12 Multipart Put now supports urlencoded keys 10 years ago
Minio.Client Multipart Put now supports urlencoded keys 10 years ago
Minio.ClientTests Multipart Put now supports urlencoded keys 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 Initial code commit with working MakeBucket and V4 signing 10 years ago
README.md Updating README.md with a simple example 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

TODO

Join The Community

  • Community hangout on Gitter Gitter
  • Ask questions on Quora Quora

Contribute

Contributors Guide