Exemple #1
0
 /// <remarks/>
 public System.IAsyncResult BeginPost(OperationRequest request, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("Post", new object[] {
                 request}, callback, asyncState);
 }
Exemple #2
0
 /// <remarks/>
 public void PostAsync(OperationRequest request)
 {
     this.PostAsync(request, null);
 }
Exemple #3
0
 /// <remarks/>
 public void PostAsync(OperationRequest request, object userState)
 {
     if ((this.PostOperationCompleted == null)) {
         this.PostOperationCompleted = new System.Threading.SendOrPostCallback(this.OnPostOperationCompleted);
     }
     this.InvokeAsync("Post", new object[] {
                 request}, this.PostOperationCompleted, userState);
 }
Exemple #4
0
 public OperationResponse Post(OperationRequest request)
 {
     object[] results = this.Invoke("Post", new object[] {
                 request});
     return ((OperationResponse)(results[0]));
 }