annotate Demo/WebServices/Client/WebClient/AsyncCallState.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
author |
cin |
date |
Wed, 29 Nov 2017 12:43: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 } |