public OutputInfoModel PostBytes2(InputBytes byteInfo)
 {
     return(new OutputInfoModel
     {
         Filename = byteInfo.Filename,
         MimeType = byteInfo.ContentType,
         Length = byteInfo.Length,
         Data = Encoding.UTF8.GetString(byteInfo.Data)
     });
 }
Exemple #2
0
 public void InputBytesRequest(InputBytes inputBytes)
 {
 }