If there is a way to Upload file using rest via stream would there be also for "Download"? If yes, can you please tell me how? Thanks in advance!
Using the Code [DataContract] public class UploadedFile { [DataMember] public string FilePath { get; set; } [DataMember] public string FileLength { get; set; [DataMember] public string FileName { get; set; } //Other information.
A sample method i use to download the file from my REST service:
[WebGet(UriTemplate = "file/{id}")]
        public Stream GetPdfFile(string id)
        {
            WebOperationContext.Current.OutgoingResponse.ContentType = "application/txt";
            FileStream f = new FileStream("C:\\Test.txt", FileMode.Open);
            int length = (int)f.Length;
            WebOperationContext.Current.OutgoingResponse.ContentLength = length;
            byte[] buffer = new byte[length];
            int sum = 0;
            int count;
            while((count = f.Read(buffer, sum , length - sum)) > 0 )
            {
                sum += count;
            }
            f.Close();
            return new MemoryStream(buffer); 
        }
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With