使用RestSharp序列化时如何忽略属性

时间:2013-11-06 01:35:57

标签: c# rest attributes xamarin restsharp

我正在寻找这样的事情:

...
public string FirstName { get; set; }
public string LastName { get; set; }

[Ignore]
public string FullName { get { return FirstName + " " + LastName; } }
...

但是,似乎无法挖掘任何东西。

环境:在Mac上运行的Xamarin Studio,C#,Android Project

1 个答案:

答案 0 :(得分:0)

这取决于您使用的序列化程序:

我无法肯定地回答您在使用XmlSerializer时应使用哪个属性,但我怀疑它应该是[NonSerialized][ScriptIgnore][XmlIgnore]。< / p>

文档: