WCF 数据契约 GetCustomDataToExport
我试图获取引用我的 WCF WSDL 的客户端的默认行为,以在导入的 DataContracts 上将 IsReference 设置为 true。看起来我应该能够使用 IDataContractSurrogate 和 GetCustomDataToExport 来完成此操作...这具体意味着将以下内容添加到与 WSDL 关联的 xsd 中生成的 ComplexType 中:
<xs:attribute ref="ser:Id" />
<xs:attribute ref="ser:Ref" />
当然,我无法从 MS 找到可用的文档关于如何使用这个方法。 MSDN 页面说它应该返回一个对象...但根本没有指出这应该是什么类型的对象...多么无用...
在我为此进行反射之前,有没有人知道如何使用这个方法?
谢谢。
I'm trying to get the default behavior for a client referencing my WCF WSDL to set IsReference to true on the imported DataContracts. It looks like I should be able to use an IDataContractSurrogate with GetCustomDataToExport to accomplish this...which specifcally means adding the following to the generated ComplexType in the xsd associated with the WSDL:
<xs:attribute ref="ser:Id" />
<xs:attribute ref="ser:Ref" />
There is, of course no usable documentation I can find from MS about how to use this method. The MSDN page says it should return an object...but does not indicate at all what type of object this should be....how useless...
Before I go reflector'ing for this, does anyone out there know how to use this method?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最终仅使用 IWsdlExportExtension,如下所示:
生成 WSDL 时甚至从未调用 GetCustomDataToExport。干得好,再次,女士。
Ended up just using an IWsdlExportExtension as follows:
GetCustomDataToExport is never even called when the WSDL is generated. Great job, yet again, MS.