예제 #1
0
파일: Reference.cs 프로젝트: jklhdd/DotNET
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(StudentServiceClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_IStudentService));
 }
예제 #2
0
파일: Reference.cs 프로젝트: jklhdd/DotNET
 public StudentServiceClient(EndpointConfiguration endpointConfiguration) :
     base(StudentServiceClient.GetBindingForEndpoint(endpointConfiguration), StudentServiceClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }