Esempio n. 1
0
 /// <remarks/>
 public void updatePageAsync(string in0, RemotePage in1, RemotePageUpdateOptions in2) {
     this.updatePageAsync(in0, in1, in2, null);
 }
Esempio n. 2
0
 /// <remarks/>
 public void updatePageAsync(string in0, RemotePage in1, RemotePageUpdateOptions in2, object userState) {
     if ((this.updatePageOperationCompleted == null)) {
         this.updatePageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdatePageOperationCompleted);
     }
     this.InvokeAsync("updatePage", new object[] {
                 in0,
                 in1,
                 in2}, this.updatePageOperationCompleted, userState);
 }
Esempio n. 3
0
 public RemotePage updatePage(string in0, RemotePage in1, RemotePageUpdateOptions in2) {
     object[] results = this.Invoke("updatePage", new object[] {
                 in0,
                 in1,
                 in2});
     return ((RemotePage)(results[0]));
 }