Ejemplo n.º 1
0
 public int Query(CSearchRequestPacket SearchRequest, out string result)
 {
     object[] results = this.Invoke("Query", new object[] {
         SearchRequest
     });
     result = ((string)(results[1]));
     return((int)(results[0]));
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void QueryAsync(CSearchRequestPacket SearchRequest, object userState)
 {
     if ((this.QueryOperationCompleted == null))
     {
         this.QueryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnQueryOperationCompleted);
     }
     this.InvokeAsync("Query", new object[] {
         SearchRequest
     }, this.QueryOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 /// <remarks/>
 public void QueryAsync(CSearchRequestPacket SearchRequest)
 {
     this.QueryAsync(SearchRequest, null);
 }