Ejemplo n.º 1
0
 /// <remarks/>
 public void FindByPropertyAsync(FindByPropertySpecification specification) {
     this.FindByPropertyAsync(specification, null);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void FindByPropertyAsync(FindByPropertySpecification specification, object userState) {
     if ((this.FindByPropertyOperationCompleted == null)) {
         this.FindByPropertyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFindByPropertyOperationCompleted);
     }
     this.InvokeAsync("FindByProperty", new object[] {
                 specification}, this.FindByPropertyOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 public FindResults FindByProperty(FindByPropertySpecification specification) {
     object[] results = this.Invoke("FindByProperty", new object[] {
                 specification});
     return ((FindResults)(results[0]));
 }