Example #1
0
 /// <remarks/>
 public void FindByIDAsync(FindByIDSpecification specification) {
     this.FindByIDAsync(specification, null);
 }
Example #2
0
 /// <remarks/>
 public void FindByIDAsync(FindByIDSpecification specification, object userState) {
     if ((this.FindByIDOperationCompleted == null)) {
         this.FindByIDOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFindByIDOperationCompleted);
     }
     this.InvokeAsync("FindByID", new object[] {
                 specification}, this.FindByIDOperationCompleted, userState);
 }
Example #3
0
 public FindResults FindByID(FindByIDSpecification specification) {
     object[] results = this.Invoke("FindByID", new object[] {
                 specification});
     return ((FindResults)(results[0]));
 }