开发者

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
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜