Mercurial > pub > bltoolkit
annotate Demo/WebServices/Client/WebClient/AsyncCallState.cs @ 2:79a04c6442bf
file name case fix
author | cin |
---|---|
date | Fri, 22 Aug 2014 13:41:57 +0400 |
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 } |