예제 #1
0
 public AsyncRequest <string> GetError()
 {
     return(EnumeratingAsyncRequest <string> .Start(this, GetError));
 }
예제 #2
0
 public AsyncRequest <int> ExampleGetInt()
 {
     return(EnumeratingAsyncRequest <int> .Start(this, GetInt));
 }
예제 #3
0
 public AsyncRequest ExampleSetInt(int i)
 {
     return(EnumeratingAsyncRequest.Start(this, SetInt(i)));
 }