What is the BeginReceive method?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is the BeginReceive method?
Rating:
The BeginReceive method is used to initiate an asynchronous receive operation. This is done by allowing the
| BeginReceive() | It is used to initiate an asynchronous receive operation. This operation has no time-out. The operation is incomplete until a message becomes available in the queue. |
| BeginReceive (TimeSpan) | It is used to initiate an asynchronous receive operation. This operation has a specified time-out. The operation is incomplete until either a message becomes available in the queue or the time-out occurs. |
| BeginReceive (TimeSpan, Object) | It is used to initiate an asynchronous receive operation. This operation has a specified time-out and a specified state object. It provides associated information throughout the lifetime of the operation. The operation is incomplete until either a message becomes available in the queue or the time-out occurs. |
| BeginReceive (TimeSpan, Object, AsyncCallback) | It is used to initiate an asynchronous receive operation. This operation has a specified time-out, a specified state object, and a specified AsyncCallback object. It provides associated information throughout the lifetime of the operation. The operation is incomplete until either a message becomes available in the queue or the time-out occurs. |
| BeginReceive (TimeSpan, Cursor, ReceiveAction, Object, AsyncCallback) | It is used to initiate an asynchronous receive operation. This operation has a specified time-out, a specified cursor, a specified receives action, and a specified state object. The state object provides information throughout the lifetime of the operation. It receives notification, through a callback. The operation is incomplete until either a message becomes available in the queue or the time-out occurs. |
Rating:
Was this information helpful?
Other articles
- What are Rules and Triggers?
- What is the SoapDocumentMethodAttribute class?
- What is the Launch Conditions Editor?
- What is a COM+ transaction?
- What is the Web service security?