We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

donaldp's avatar
donaldp
Collaborator | Level 9
6 years ago

Getting "Stream does not support seeking" with GetContentAsStreamAsync

Hi,    I'm currently using a C#/.NET nuget which works as expected when printing from an embedded resource as a stream. The problem is that it's not working when I try to use a Dropbox stream instea...
  • donaldp's avatar
    6 years ago

    Well, I got it working! But not with native Dropbox API command, so I'm still itnerested if there's a way to do it with the API.

    Courtesy of this SO post https://stackoverflow.com/questions/23626965/this-stream-does-not-support-seek-operations-using-stream I got it working with this code...

    string fileToPrint=RootFolder+"Labels/A10697/111Z50066345EXP00001.pdf";
    Stream fileStream=await DataService.StreamFile(fileToPrint);
    MemoryStream ms=new MemoryStream();
    fileStream.CopyTo(ms);
    // then use ms in place of fileStream

    If there's a way to get around this with Dropbox API, then let me know and I can try it that way and mark your reply as answer, but if not we can mark this as answer.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,877 PostsLatest Activity: 12 months ago
325 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!