コード例 #1
0
ファイル: Reference.cs プロジェクト: ericzhc/pdale
 /// <remarks/>
 public void FindAddressAsync(FindAddressSpecification specification) {
     this.FindAddressAsync(specification, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: ericzhc/pdale
 /// <remarks/>
 public void FindAddressAsync(FindAddressSpecification specification, object userState) {
     if ((this.FindAddressOperationCompleted == null)) {
         this.FindAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFindAddressOperationCompleted);
     }
     this.InvokeAsync("FindAddress", new object[] {
                 specification}, this.FindAddressOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: ericzhc/pdale
 public FindResults FindAddress(FindAddressSpecification specification) {
     object[] results = this.Invoke("FindAddress", new object[] {
                 specification});
     return ((FindResults)(results[0]));
 }