Serialize Object
Posted
by Mark Pearl
on Stack Overflow
See other posts from Stack Overflow
or by Mark Pearl
Published on 2010-05-01T06:27:16Z
Indexed on
2010/05/01
6:37 UTC
Read the original article
Hit count: 328
c#
Hi.. I am new to serialization and I cannot for the life of me figure out how to fix this exception I am getting...
I have an object that has the following structure
[XmlRoot("MaxCut2")]
public class MaxCut2File : IFile
{
public MaxCut2File()
{
MyJob = new Job();
Job.Reference = "MyRef";
}
[XmlElement("JobDetails", typeof(Job))]
public IJob MyJob
{
get;
set;
}
}
An inteferface...
public interface IJob
{
string Reference { get; set; }
}
And an class
[Serializable()]
public class Job : IJob
{
[XmlElement("Reference")]
public string Reference { get; set; }
}
When I try to serialize an instance of the MaxCut2File object I get an error
{"Cannot serialize member 'MaxCut2File.MaxCut2File.MyJob' of type 'MaxCut2BL.Interfaces.IJob', see inner exception for more details."} "There was an error reflecting type 'MaxCut2File.MaxCut2File'."
However if I change my property MyJob from the IJob type to the Job type it works fine...
Any ideas?
© Stack Overflow or respective owner