The beginread tag has no wiki summary.
6
votes
1answer
517 views
BeginReceive / BeginRead timeouts
I'm using a NetworkStream & TcpClient to asynchronously receive data using BeginRead. I need to apply a time-out to this operation, such that after a specified amount of time the read will be ...
4
votes
2answers
291 views
Stopping an asynchronous stream outside of the AsyncCallback function
I've got a Stream object and I am using BeginRead to begin reading (obviously) into a buffer; the AsyncCallback function is called once the reading is complete. Within this function I can check if the ...
2
votes
1answer
2k views
.NET cancel stream BeginRead
I have not been able to find a way to cancel/terminate asynchronous read operation after successful HttpWebRequest. There is no way to set timeout, ThreadPool.RegisterWaitForSingleObject is not ...
1
vote
1answer
1k views
Is TcpClient BeginRead/Send thread safe?
Using a dotNET TcpClient if I have called an asynchronous BeginRead() on the associated network stream can I still call Write() on that stream on another thread?
Or do I have to lock() the TcpClient ...
0
votes
0answers
222 views
Is it possible to abort/cancel a FileStream.Beginread asynchronous read operation
I want to control a STM32 microcontroller using the USB interface. Jan Axelson (http://www.lvr.com/hidpage.htm#MyExampleCode) has created some applications to show the usage of the USB HID class which ...
0
votes
2answers
371 views
Stop Stream.BeginRead()
i need to read data from my virtual com port and detect the message "Dreq". Once i press the connect button, it connects to my COM8 port and begins reading in a new thread. I also have a disconnect ...
0
votes
0answers
161 views
Calling several BeginRead on same NetworkStream (before EndRead) - should I restrict access?
I have a Bluetooth connection to a Printer (in .NET Compact Framework) and I use InTheHand DLL to connect to the printer.
Now, I used to do sync calls for reading magnetic cards aswell as checking ...
0
votes
1answer
88 views
How can you tell the source of the data when using the Stream.BeginRead Method?
When using the Stream.BeginRead Method, and you are reading from a stream into a memory, how is it determined where you are reading the data from?
See:
...