我正在为 WCF 添加一个自定义 behaviorExtensionElement,并希望添加一个在读取配置的元素时可以读取的属性,例如
<system.serviceModel>
<extensions>
<behaviorExtensions>
<add name="myExtension"
type="Bar.FooBarElement, Bar"/>
</behaviorExtensions>
</extensions>
<behaviors>
<serviceBehaviors>
<behavior>
<myExtension myAttribute="Foo" />
但是,我收到错误“无法识别的属性‘myAttribute’。请注意,属性名称区分大小写。”
我怎样才能避免这种情况?如何读取代码中的 myAttribute 值?