WCF list all client endpoints that implement a certain contract
Is there a way to list all the WCF client endpoints in an application config file?
I need to establish multiple client connections to different servers and want to find a way to still maintain all the client connection infor开发者_StackOverflow社区mation in the application config file.
Try this:
// using System.ServiceModel.Configuration;
ServiceModelSectionGroup serviceModelSectionGroup =
ServiceModelSectionGroup.GetSectionGroup(
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None));
foreach (ServiceElement serviceElement in
serviceModelSectionGroup.Services.Services.OfType<ServiceElement>())
{
// do stuff
}
精彩评论