Mercurial > pub > bltoolkit
annotate Demo/WebServices/Client/WebClient/AsyncCallState.cs @ 9:1e85f66cf767 default tip
update bltoolkit
| author | nickolay |
|---|---|
| date | Thu, 05 Apr 2018 20:53:26 +0300 |
| parents | f990fcb411a9 |
| 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 } |
