Tagged Questions
2
votes
1answer
121 views
What is the best way to read the uploaded files from Request.Files, StreamReader or BinaryReader or BufferedStream?
I have a form where the user can upload multiple files. I am using MVC 2.0 and in my controller I need to call a webservice that is a common import interface requires the files to passed in as byte[].
...
2
votes
3answers
6k views
C# - StreamReader.ReadLine does not work properly!
Simply I have been trying to implement what BufferedStreamReader does in Java. I have a socket stream open and just want to read it in a line-oriented fashion - line by line.
I have the following ...
1
vote
2answers
1k views
Are there an alternative to System.IO.BufferedStream in C#?
I receive the follow exception:
System.NotSupportedException : This stream does not support seek operations.
at System.Net.Sockets.NetworkStream.Seek(Int64 offset, SeekOrigin origin)
at ...