Exemple #1
0
 public string GetPublicServiceClient()
 {
     CompanyService.MyCompanyPublicServiceClient client1
         = new CompanyService.MyCompanyPublicServiceClient(
               "BasicHttpBinding_IMyCompanyPublicService");
     return(client1.GetPublicInformation());
 }
Exemple #2
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     CompanyService.MyCompanyPublicServiceClient pClient = new
                                                           CompanyService.MyCompanyPublicServiceClient("BasicHttpBinding_IMyCompanyPublicService");
     Label1.Text = pClient.GetPublicInformation();
 }