3

我在 wcf 中生成的代理类有问题。我注意到 MessageContract 包含在我的肥皂消息中,但我需要将其删除。不幸的是,我无法解析 MessageContract 属性的 IsWrapped 属性。

(我想向我的便携式库添加服务引用,使用 MVVMCross)MSDN:http: //msdn.microsoft.com/en-us/library/ms750528.aspx

[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
[System.ServiceModel.MessageContract(IsWrapped = false)] //Cannot resolve symbol 'IsWrapped' (default value is true and i cannot change it)

提前致谢!

4

1 回答 1

0

我发现在 PCL 程序集中这是不可能的,因为 WCF 实现不是跨平台的并且在 PCL 库中可用。我已经使用了IsWrapped要在 MonoTouch 项目中实现的属性。我没有使用 MonoDroid 和 WCF 的经验。

于 2014-04-30T13:01:09.250 回答