クラスオブジェクトをシリアル化してxmlを文字列に格納しようとしていますが、「xmlドキュメントの生成中にエラーが発生しました」という例外メッセージが表示されるたびに
シリアル化しようとしているクラスオブジェクトは、次のクラスのものです。
[XmlRoot("FlowOfTask")]
public class Flow
{
int _CurrHop = 0;
[XmlElement("CurrentHop")]
public int CurrentHop
{
get { return _CurrHop; }
set { _CurrHop = value; }
}
int _TotalHops = 0;
[XmlElement("TotalHops")]
public int TotalHops
{
get { return _TotalHops; }
}
private List<tblTaskHop> _TaskHops;
[System.Xml.Serialization.XmlArrayItemAttribute(ElementName = "Hop",
IsNullable = false)]
public List<tblTaskHop> TaskHops
{
get { return _TaskHops; }
}
public Flow()
{
}
public Flow(Int64 TaskID, Int64 RoleID)
{
_TaskHops = HandleDB.tblTaskHopGetByTaskIDRoleID(TaskID, RoleID);
_TotalHops = TaskHops.Count;
}
}
この関数を使用してシリアル化しています。
public static string SerializeAnObject(object item)
{
try
{
string xmlText;
//Get the type of the object
Type objectType = item.GetType();
//create serializer object based on the object type
XmlSerializer xmlSerializer = new XmlSerializer(objectType);
//Create a memory stream handle the data
MemoryStream memoryStream = new MemoryStream();
//Create an XML Text writer to serialize data to
using (XmlTextWriter xmlTextWriter =
new XmlTextWriter(memoryStream, Encoding.UTF8) { Formatting = Formatting.Indented })
{
//convert the object to xml data
xmlSerializer.Serialize(xmlTextWriter, item);
//Get reference to memory stream
memoryStream = (MemoryStream)xmlTextWriter.BaseStream;
//Convert memory byte array into xml text
xmlText = new UTF8Encoding().GetString(memoryStream.ToArray());
//clean up memory stream
memoryStream.Dispose();
return xmlText;
}
}
catch (Exception e)
{
MessageBox.Show(e.Message);
return null;
}
}
このクラスオブジェクトをシリアル化できない理由を誰かに教えてもらえますか?