gpt4 book ai didi

wcf - 如何使用 System.ServiceModel 在关联的配置文件中启用智能感知

转载 作者:行者123 更新时间:2023-12-03 17:58:45 28 4
gpt4 key购买 nike

我发现的所有与智能感知相关的问题似乎都与自定义配置设置有关。我正在尝试在已从 web.config 移出到 service.config 的 .net 标准部分上获得智能感知。

有办法吗?

最佳答案

首先你需要有 Visual 2012 或更高版本。这是确保您安装了最新的架构文件和引用。

但主要是关于如何创建根 web.config 或 app.config 文件。

在您的根配置 (app.config/web.config) 中,您需要像这样指定 WCF 服务模型关联的配置文件

  <system.serviceModel>
<behaviors configSource="Configuration\behaviors.config"/>
<bindings configSource="Configuration\bindings.config" />
<client configSource="Configuration\client.config"/>
<services configSource="Configuration\services.config" />
</system.serviceModel>

然后确保您的 bindings.config 文件以行为节点开头
<bindings>
<basicHttpBinding>
<binding name="HoHo" messageEncoding="Text">
<security mode="None"/>
</binding>
</basicHttpBinding>
</bindings>

使用 configSource 确实可以帮助保持配置文件的可读性。

关于wcf - 如何使用 System.ServiceModel 在关联的配置文件中启用智能感知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6738875/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com