BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Code Snippet:
private Stream DownloadPdfStream(string URL)
{
//Initialize WebClient
WebClient webClient = new WebClient();
// Initialize Uri
var uri = new System.Uri(URL);
//Returns the PDF document stream from the given URL
return webClient.OpenRead(uri);
} |
Thank you for your response. I wonder how big the file it can load because when I tried to load a pdf file having 100 pages it shows nothing and app becomes ANR.