コード例 #1
0
ファイル: Reference.cs プロジェクト: xxjeng/nuxleus
 /// <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);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: xxjeng/nuxleus
 /// <remarks/>
 public System.IAsyncResult BeginFindByProperty(FindByPropertySpecification specification, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("FindByProperty", new object[] {
                 specification}, callback, asyncState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: xxjeng/nuxleus
 /// <remarks/>
 public void FindByPropertyAsync(FindByPropertySpecification specification) {
     this.FindByPropertyAsync(specification, null);
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: xxjeng/nuxleus
 public FindResults FindByProperty(FindByPropertySpecification specification) {
     object[] results = this.Invoke("FindByProperty", new object[] {
                 specification});
     return ((FindResults)(results[0]));
 }