annotate Demo/WebServices/Client/WebClient/AsyncCallState.cs @ 6:11b6da379593
Исправлена странная ошибка при использовании OfType<...>().Where(...)
author |
cin |
date |
Mon, 05 Dec 2016 05:50:52 +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 } |