Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 508 Bytes

File metadata and controls

21 lines (20 loc) · 508 Bytes

Mixdrop API

This library is used to communicate with the mixdrop server in C#.

Login to your account

Mixdrop mixdrop = new("email", "key");

List folders and files

Collection collection = mixdrop.FolderList();

Upload File

string fileName = "hello_world.nbt";
Stream stream = File.Open(fileName, FileMode.Open);
string fileref = mixdrop.Upload(fileName, stream);

Remote Upload

FileStatus fileStatus = mixdrop.RemoteUpload("http://127.0.0.1:8080/FTL.mp4");