/AlphaRest

Simple upload and save file with api in .net standard

Primary LanguageC#MIT LicenseMIT

AlphaRest

Simple upload and save file with api in .net standard

How to use :

Install-Package AlphaRest 

Upload File :

await AlphaRest.Api.SendFileAsync(file,new List<string>() {"png","jpg" },(2*1024),"yourAdress");

Save File with uniqName:

await AlphaRest.Files.SaveFileAsync(file, "yourpath", new List<string>() { "png", "jpg" });

Save File with CustomName:

await AlphaRest.Files.SaveFileAsync(file,"YourCustomeName", "yourpath", new List<string>() { "png", "jpg" });