3
votes
2answers
549 views
Does NetworkStream.DataAvailable see buffered data?
Does NetworkStream.DataAvialable know whether the sender's send buffer is empty? Or does it simply indicate whether the receiver's read buffer has data? My assumption is the latter …
2
votes
2answers
264 views
NetworkStream, is there something similar to DataReceived for a SerialPort? (C#)
Ok, so I'm a little confused as to why I can't find this anywhere, or if it doesn't exist then why have Microsoft not implemented it?
So here's my scenario, I have a NetworkStream …
2
votes
3answers
711 views
C# NetworkStream.Read()
I'd like to empty read buffer of the socket so I wrote follow code...
byte[] tempBuffer = new byte[1024];
int readCount = 0;
while ((readCount = tcpSocket.GetStream().Read(tempBuf …
2
votes
5answers
304 views
Counterpart of .NETs NetworkStream / SslStream in Delphi 7
I have written a secure TCP server in .NET. This was basically as simple as creating a TcpListener instance and wrapping the connected client's NetworkStreams with SslStreams.
Now …
2
votes
4answers
381 views
How do I determine when there is no more data to read in a NetworkStream?
I have a web app which connects to a server using a TCP connection and reads a binary document which it then writes to its response object. In other words it's transferring a file …
1
vote
3answers
70 views
[C#] What is the correct way to close a TCP connection
I have a TcpClient object which sends some data to server, using its underlying NetworkStream.Write().
Therefor, I have:
TcpClient server = new TcpClient(serverName, 50001);
/* . …
1
vote
1answer
27 views
networkStream.CanRead true but Buffer returning no value
I have a do while loop that reads a buffer from a NetworkStream object
the while condition is networkStream.CanRead so as long as it can read it should continue reading from the bu …
1
vote
2answers
196 views
StreamWriter won’t flush to NetworkStream
Using a StreamWriter to write to a NetworkStream, and a StreamReader to read the response. The app is sending commands and reading responses to a news server.
Simplified code (sa …
1
vote
2answers
287 views
How to check if TcpClient Connection is closed?
I'm playing around with the TcpClient and I'm trying to figure out how to make the Connected property say false when a connection is dropped.
I tried doing
NetworkStream ns = cli …
1
vote
2answers
184 views
How do you wait for a Network Stream to have data to read?
I have a worker thread in my application that is responsible for three different things. Requests for two of the jobs turn up in Queues that I have written, the other job is activa …
1
vote
2answers
97 views
Re-opening a closed NetworkStream?
Good morning,
I am in need of some advice, I am using a networkStream, which is streaming from a TcpClient, all was working fine, but then I required the some functionality elsewh …
1
vote
2answers
241 views
System.Net.Sockets.NetworkStream’s Async read callback
I'm may be just misunderstanding something fundamental here but...
Senario: I call System.Net.Sockets.NetworkStream's BeginRead method and my machine receives a response/request f …
1
vote
3answers
494 views
.NET NetworkStream Read slowness
I've got some network code to process an arbitary TCP connection.
It all seems to work as expected but seems slow. When i've profiled the code the it seems to spend a good 600 ms …
0
votes
0answers
9 views
How can I recreate an error where Network.CanRead is true and nothing is being sent
Related Question:
http://stackoverflow.com/questions/1746342/networkstream-canread-true-but-buffer-returning-no-value
I want to recreate a TCP server that doesn't send any data on …
0
votes
1answer
82 views
Running Async IO threads to completion in same order as received
Sorry, I am very new to all this multithreading stuff...
I'm working on a client/server app and I'm going to use System.Net.Sockets.NetworkStream's Async IO methods.
I'm aware …
