I have a XML from third-party service:
<formula>
<name>
<parts>
<variable/>
<variable/>
<constant/>
<function/>
</parts>
</formula>
and i want to handle this in my code like single collection, because fields of are the same, only name of part is differ.
I used this code, to test serialization first:
[DataContract]
public class Formula
{
[DataMember(Name = "format")]
public string Format { get; set; }
[DataMember(Name = "uses")]
public BindingList<FormulaPart> Uses { get; set; }
}
[DataContract]
[KnownType(typeof(Indicator))]
[KnownType(typeof(Constant))]
public class FormulaPart
{
[DataMember(Name = "id")]
public int Id { get; set; }
[DataMember(Name = "name")]
public string Name { get; set; }
}
[DataContract(Name = "indicator")]
public class Indicator : FormulaPart
{
//code omitted
}
[DataContract(Name = "constant")]
public class Constant : FormulaPart
{
//code omitted
}
[DataContract(Name = "indicator")]
public class ApiIndicator
{
[DataMember(Name = "formula")]
public Formula Formula { get; set; }
}
and got this response:
<indicator xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataContractsTest">
<formula>
<format i:nil="true" />
<uses>
<FormulaPart i:type="indicator">
<id>0</id>
<name i:nil="true" />
</FormulaPart>
<FormulaPart i:type="constant">
<id>0</id>
<name i:nil="true" />
</FormulaPart>
</uses>
</formula>
</indicator>
Looks like that i very close to the answer, but how to set the name of collection objects?
UPD: what i want to get after serialization
<indicator xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataContractsTest">
<formula>
<format> [123] + [45] </format>
<uses>
<indicator>
<id>123</id>
<name>Time billed</name>
</indicator>
<constant>
<id>45</id>
<name>Hourly rate</name>
</constant>
</uses>
</formula>
</indicator>