/// <summary>削除処理</summary> async private void button9_Click(object sender, RoutedEventArgs e) { // 引数1:コンテキスト string context = "User1"; // 引数2:アクションタイプ string actionType = ((ComboBoxItem)this.ddlDap.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlMode1.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlMode2.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlExRollback.SelectedItem).Value; // Soap & Bean の個別WebメソッドのWeb参照 SbServiceReference.ServiceForSbSoapClient client = new SbServiceReference.ServiceForSbSoapClient(); // 非同期呼出しを行う SbServiceReference.DeleteResponse response = await client.DeleteAsync(context, actionType, int.Parse(this.textBox1.Text)); if (response.Body.DeleteResult != "") { // 例外発生時 WSErrorInfo wse = new WSErrorInfo(response.Body.DeleteResult); this.labelMessage.Text = response.Body.DeleteResult + " , " + response.Body.returnValue + " , " + wse.MessageID + " , " + wse.Message + " , " + wse.Information; } else { // 結果(正常系) this.labelMessage.Text = response.Body.returnValue + "件削除"; } }
/// <summary>削除処理</summary> private void button9_Click(object sender, RoutedEventArgs e) { // 引数1:コンテキスト string context = "User1"; // 引数2:アクションタイプ string actionType = ((ComboBoxItem)this.ddlDap.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlMode1.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlMode2.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlExRollback.SelectedItem).Value; // Soap & Bean の個別WebメソッドのWeb参照 SbServiceReference.ServiceForSbSoapClient client = new SbServiceReference.ServiceForSbSoapClient(); // 呼び出しが完了した場合のイベントハンドラを設定する。 client.DeleteCompleted += new EventHandler <SbServiceReference.DeleteCompletedEventArgs>(client_Delete_CallCompleted); // 非同期呼出しを行う(Silverlightは非同期呼び出しのみサポートする)。 client.DeleteAsync(context, actionType, int.Parse(this.textBox1.Text)); }
/// <summary>削除処理</summary> private void button9_Click(object sender, RoutedEventArgs e) { // 引数1:コンテキスト string context = "User1"; // 引数2:アクションタイプ string actionType = ((ComboBoxItem)this.ddlDap.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlMode1.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlMode2.SelectedItem).Value + "%" + ((ComboBoxItem)this.ddlExRollback.SelectedItem).Value; // Soap & Bean の個別WebメソッドのWeb参照 SbServiceReference.ServiceForSbSoapClient client = new SbServiceReference.ServiceForSbSoapClient(); // 呼び出しが完了した場合のイベントハンドラを設定する。 client.DeleteCompleted += new EventHandler<SbServiceReference.DeleteCompletedEventArgs>(client_Delete_CallCompleted); // 非同期呼出しを行う(Silverlightは非同期呼び出しのみサポートする)。 client.DeleteAsync(context, actionType, int.Parse(this.textBox1.Text)); }