我从服务器获得的 webresponse 显示如下。我能够反序列化几个值。但我不知道如何将可用性转换为数组。
<AvailRateChartRS Version="1">
<SoldMessage>sold</SoldMessage>
<RoomTypes>
<RoomType>
<RoomTypeId>1</RoomTypeId>
<SubPropertyId>1</SubPropertyId>
<Name>Villa</Name>
<MaxOccupancy>4</MaxOccupancy>
<BookingRangeAvailable>false</BookingRangeAvailable>
<Availability Id="1" Date="2012-10-16" Available="false" NoOfRoomsAvailable="0" />
<Availability Id="2" Date="2012-10-17" Available="false" NoOfRoomsAvailable="0" />
<Availability Id="3" Date="2012-10-18" Available="false" NoOfRoomsAvailable="0" />
<Availability Id="4" Date="2012-10-19" Available="false" NoOfRoomsAvailable="0" />
<Availability Id="5" Date="2012-10-20" Available="false" NoOfRoomsAvailable="0" />
<Availability Id="6" Date="2012-10-21" Available="false" NoOfRoomsAvailable="0" />
</RoomType>
</RoomTypes>
</AvailRateChartRS>
序列化的类现在是这样的。
namespace Classes
{
[Serializable()]
public class RoomType
{
[XmlElement("RoomTypeId")]
public string RoomTypeId { get; set; }
[XmlElement("SubPropertyId")]
public string SubPropertyId { get; set; }
[XmlElement("Name")]
public string Name { get; set; }
[XmlElement("MaxOccupancy")]
public string MaxOccupancy { get; set; }
[XmlElement("BookingRangeAvailable")]
public string BookingRangeAvailable { get; set; }
[XmlElement("Availability")]
public string Availability { get; set; }
}
[Serializable()]
[System.Xml.Serialization.XmlRoot("AvailRateChartRS")]
public class RoomTypes
{
[XmlArray("RoomTypes")]
[XmlArrayItem("RoomType", typeof(RoomType))]
public RoomType[] RoomType { get; set; }
}
}
我是否需要找到任何正则表达式并将可用性放入 . 或者有没有直接的方法。这只是一个开始,我期待更多这样的问题。网络响应没有彻底标准化,并且经常得到一些疯狂的响应。