System.ServiceModel.Description.ServiceEndpoint
namespace System.ServiceModel.Description
{
public class ServiceEndpoint
{
public EndpointAddress Address { get; set; }
public KeyedCollection<Type, IEndpointBehavior> EndpointBehaviors { get; }
public KeyedByTypeCollection<IEndpointBehavior> Behaviors { get; }
public Binding Binding { get; set; }
public ContractDescription Contract { get; set; }
public bool IsSystemEndpoint { get; set; }
public string Name { get; set; }
public Uri ListenUri { get; set; }
public ListenUriMode ListenUriMode { get; set; }
public ServiceEndpoint(ContractDescription contract);
public ServiceEndpoint(ContractDescription contract, Binding binding, EndpointAddress address);
}
}