在代码中向端点行为添加行为扩展
我在 web.config 中添加行为扩展:
<extensions>
<behaviorExtensions>
<add name="WebAppBeaviourElement" type="WebApp.Extensions.CustomBehaviorExtensionElement, WebApp.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
</behaviorExtensions>
</extensions>
<behaviors>
<endpointBehaviors>
<behavior name="WebAppBeaviour">
<WebAppBeaviourElement />
</behavior>
</endpointBehaviors>
</behaviors>
但在 Visual Studio 2010 中存在错误 - WebAppBehaviourElement 在 Visual Studio 中不可见并出现错误:/
所以我认为可以将此扩展添加到代码中的 endpointBehaviours 中?什么时候在代码中我应该这样做?
I add behavior extension in web.config:
<extensions>
<behaviorExtensions>
<add name="WebAppBeaviourElement" type="WebApp.Extensions.CustomBehaviorExtensionElement, WebApp.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
</behaviorExtensions>
</extensions>
<behaviors>
<endpointBehaviors>
<behavior name="WebAppBeaviour">
<WebAppBeaviourElement />
</behavior>
</endpointBehaviors>
</behaviors>
But in Visual Studio 2010 is bug - WebAppBehaviourElement is not visible by visual studio and get error:/
So I think that it is possible to add this extension to endpointBehaviours in code ? And when in code I should do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以扩展主机工厂
public class ExtendedHostFactory : WebServiceHostFactory
然后,向主机添加行为
您可以在 config.xml 中添加主机。如果您也为此选择代码,请将其添加到 global.asax 中,如下所示
You can extend the host factory
public class ExtendedHostFactory : WebServiceHostFactory
Then, add behavior to the host
You can add the host in config. If you choose code for that too, add it in global.asax as below
Visual Studio 2010 根据 XSD 架构验证配置文件。
其中一个是在这里定义的 system.serviceModel没有您的自定义行为,但程序可以工作。
Visual Studio 2010 validate configuration file against XSD schemas.
One is defined for here system.serviceModel There is no yours custom behavior, but programms work.