0
是否有可能得到RestSharp反序列化這個Xml代碼片段,到一個類,而不是兩個類?RestSharp如何反序列化此Xml?
<shippingInfo>
<shippingServiceCost currencyId="AUD">58.02</shippingServiceCost>
<shippingType>Flat</shippingType>
<shipToLocations>Worldwide</shipToLocations>
</shippingInfo>
注意第一個元素shippingServiceCost
?它在那裏有一個屬性。通常,我會創建一個名爲ShippingServiceCost
的子類,並在其中添加兩個屬性:CurrentId
和Value
。
但它有可能有一個屬性中的CurrencyId值,在主類ShippingInfo
?