コード例 #1
0
ファイル: Reference.cs プロジェクト: Lmaslanka75/3342
 /// <remarks/>
 public void AddCustomerAsync(Customer customer) {
     this.AddCustomerAsync(customer, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: Lmaslanka75/3342
 /// <remarks/>
 public void AddCustomerAsync(Customer customer, object userState) {
     if ((this.AddCustomerOperationCompleted == null)) {
         this.AddCustomerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddCustomerOperationCompleted);
     }
     this.InvokeAsync("AddCustomer", new object[] {
                 customer}, this.AddCustomerOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: Lmaslanka75/3342
 public void AddCustomer(Customer customer) {
     this.Invoke("AddCustomer", new object[] {
                 customer});
 }