コード例 #1
0
ファイル: Form1.cs プロジェクト: nitgood07/MyProjects
 private void btnGetMessage_Click(object sender, EventArgs e)
 {
     HelloService.HelloServiceClient client = new HelloService.HelloServiceClient("NetTcpBinding_IHelloService");
     lblMessage.Text = client.sendMessage(txtEnterName.Text);
 }
コード例 #2
0
 public Form1()
 {
     InitializeComponent();
     client = new HelloService.HelloServiceClient();
 }
コード例 #3
0
 private void Button_Click(object sender, RoutedEventArgs e)
 {
     HelloService.HelloServiceClient client = new HelloService.HelloServiceClient();
     lblResult.Text = client.GetMessage(txtName.Text);
 }
コード例 #4
0
 public MainWindow()
 {
     InitializeComponent();
     client = new HelloService.HelloServiceClient();
 }