Advertisement
Advertisement
| 07.03.2008 at 07:07AM PDT, ID: 23536887 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: |
void CompleteOnSend(IAsyncResult result)
{
try
{
IDuplexSessionChannel channel = (IDuplexSessionChannel)result.AsyncState;
channel.EndSend(result);
// The message is now sent. Notify the user.
uiThread.Post(WriteText, "Client says: Sent order of " + order + Environment.NewLine);
uiThread.Post(WriteText, "Service will call back with updates" + Environment.NewLine);
}
catch (Exception e)
{
}
}
|