Tagged Questions
The beginreceive tag has no wiki summary.
6
votes
1answer
498 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
1answer
793 views
.NET asynchronous MSMQ
I don't understand where this is going wrong. Basically, I have a program which receives from a message queue and processes the messages. The program can be stopped at any time, in which case the ...
2
votes
3answers
444 views
What happens with TCP packets between two Socket.BeginReceive calls?
I have a doubt about socket programming. I am developing a TCP packet sniffer. I am using Socket.BeginAccept, Socket.BeginReceive to capture every packet, but when a packet is received I have to ...
2
votes
5answers
10k views
C# Socket.BeginReceive/EndReceive
In what order is the Socket.BeginReceive/EndReceive functions called?
For instance, I call BeginReceive twice, once to get the message length and the second time to get the message itself. Now the ...
1
vote
4answers
2k views
How to use UdpClient.BeginReceive in a loop
I want to do this
for (int i = 0; i < 100; i++ )
{
Byte[] receiveBytes = receivingUdpClient.Receive(ref RemoteIpEndPoint);
}
But instead of using UdpClient.Receive, i have to use ...
1
vote
3answers
3k views
Catch unhandled SocketException during asynchronous HttpWebResponse read
All the asynchronous calls to HttpWebRequest.BeginGetResponse/EndGetResponse and HttpWebResponse.GetResponseStream().BeginRead/EndRead are made from try/catch blocks, however, these exceptions ...
1
vote
1answer
698 views
Is Socket.BeginReceive(IList<ArraySegment<byte>> buffers.. Not Asynchronous?
I have been looking to implement a custom class of :
IList<ArraySegment<byte>>
this will be passed to a socket, and used as the buffer to receive data from that Socket.
...
0
votes
1answer
193 views
MessageQueue BeginReceive() method called twice
What will happen if I call the BeginReceive() method twice (one after the other)?
Example:
MessageQueue mq = new MessageQueue("strQueueConnectionhere");
mq.BeginReceive(); // first call
...
0
votes
1answer
171 views
Problems with WebClient.Upload and Socket.BeginReceive
I'm currently writing a simple web server and some clients to use it. My customer wants to be able to extend the functionality of the upcoming solution to include web clients but we need to have ...