Beispiel #1
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);
 }
Beispiel #2
0
 /// <remarks/>
 public System.IAsyncResult BeginFindByProperty(FindByPropertySpecification specification, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("FindByProperty", new object[] {
                 specification}, callback, asyncState);
 }
Beispiel #3
0
 /// <remarks/>
 public void FindByPropertyAsync(FindByPropertySpecification specification) {
     this.FindByPropertyAsync(specification, null);
 }
Beispiel #4
0
 public FindResults FindByProperty(FindByPropertySpecification specification) {
     object[] results = this.Invoke("FindByProperty", new object[] {
                 specification});
     return ((FindResults)(results[0]));
 }