예제 #1
0
파일: Reference.cs 프로젝트: ericzhc/pdale
 /// <remarks/>
 public void FindByPropertyAsync(FindByPropertySpecification specification) {
     this.FindByPropertyAsync(specification, null);
 }
예제 #2
0
파일: Reference.cs 프로젝트: ericzhc/pdale
 /// <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);
 }
예제 #3
0
파일: Reference.cs 프로젝트: ericzhc/pdale
 public FindResults FindByProperty(FindByPropertySpecification specification) {
     object[] results = this.Invoke("FindByProperty", new object[] {
                 specification});
     return ((FindResults)(results[0]));
 }