annotate Demo/WebServices/Client/WebClient/AsyncCallState.cs @ 0:f990fcb411a9
Копия текущей версии из github
author |
cin |
date |
Thu, 27 Mar 2014 21:46:09 +0400 (2014-03-27) |
parents |
|
children |
|
rev |
line source |
0
|
1 namespace Demo.WebServices.Client.WebClient
|
|
2 {
|
|
3 /// <summary>
|
|
4 /// Async call handle holder class.
|
|
5 /// </summary>
|
|
6 public class AsyncCallState
|
|
7 {
|
|
8 /// <summary>
|
|
9 /// Async call handle if call is in progress, null otherwise.
|
|
10 /// </summary>
|
|
11 public object PendingCall;
|
|
12 }
|
|
13 } |