我在 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)
提前致谢!