示例#1
0
 /// <remarks/>
 public void DocumentReferenceUpdateAsync(UpdateReferenceDocArguments arg, string documentId, object userState)
 {
     if ((this.DocumentReferenceUpdateOperationCompleted == null)) {
         this.DocumentReferenceUpdateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDocumentReferenceUpdateOperationCompleted);
     }
     this.InvokeAsync("DocumentReferenceUpdate", new object[] {
                 arg,
                 documentId}, this.DocumentReferenceUpdateOperationCompleted, userState);
 }
示例#2
0
 public ExecResult DocumentReferenceUpdate(UpdateReferenceDocArguments arg, string documentId)
 {
     object[] results = this.Invoke("DocumentReferenceUpdate", new object[] {
                 arg,
                 documentId});
     return ((ExecResult)(results[0]));
 }
示例#3
0
 /// <remarks/>
 public void DocumentReferenceUpdateAsync(UpdateReferenceDocArguments arg, string documentId)
 {
     this.DocumentReferenceUpdateAsync(arg, documentId, null);
 }
示例#4
0
 /// <remarks/>
 public System.IAsyncResult BeginDocumentReferenceUpdate(UpdateReferenceDocArguments arg, string documentId, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("DocumentReferenceUpdate", new object[] {
                 arg,
                 documentId}, callback, asyncState);
 }