Skip to content

Commit

Permalink
Updated README with build status and new functions
Browse files Browse the repository at this point in the history
  • Loading branch information
gpailler committed Apr 26, 2015
1 parent 5cb494a commit 181a838
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
MegaApiClient
=============

[![Build Status](https://travis-ci.org/gpailler/MegaApiClient.svg?branch=develop)](https://travis-ci.org/gpailler/MegaApiClient)

C# library to access http://mega.co.nz API

This library is based on highly valuable articles from http://julien-marchand.fr
Expand Down Expand Up @@ -34,16 +36,19 @@ void LoginAnonymous()
void Logout()
IEnumerable<Node> GetNodes()
IEnumerable<Node> GetNodes(Node parent)
Node CreateFolder(string name, Node parent)
void Delete(Node node, bool moveToTrash = true)
Node Move(Node node, Node destinationParentNode)
Uri GetDownloadLink(Node node)
void DownloadFile(Node node, string outputFile)
void DownloadFile(Uri uri, string outputFile)
Stream Download(Node node)
Stream Download(Uri uri)
Node Upload(string filename, Node parent)
Node Upload(Stream stream, string name, Node parent)
static AuthInfos GenerateAuthInfos(string email, string password)
```
```

0 comments on commit 181a838

Please sign in to comment.