예제 #1
0
파일: Oyster.cs 프로젝트: CarverLab/Oyster
 public bool UploadFileToOysterServer(string sFile,out string EncryptedFileName)
 {
     OCL.Functions F = new Functions();
     return F.UploadFile(sFile,out EncryptedFileName);
 }
예제 #2
0
파일: Oyster.cs 프로젝트: CarverLab/Oyster
 public bool UploadFileToOysterServer(string sFile)
 {
     OCL.Functions F = new Functions();
     return F.UploadFile(sFile);
 }