how do i upload the pdf directly from array bytes?
Dim jsonResult As Dictionary(Of String, String)
Dim helper As New PdfViewerHelper()
Dim docBytes = System.IO.File.ReadAllBytes(HttpContext.Current.Server.MapPath("~/TmpF/uno.pdf"))
Dim docBase64 As String = Convert.ToBase64String(docBytes)
Dim byteArray() As Byte = Convert.FromBase64String(docBase64)
Dim stream As New MemoryStream(byteArray)
helper.Load(stream)
Return JsonConvert.SerializeObject(helper.ProcessPdf(jsonResult))