Stack Overflow コミュニティの皆様、この質問をする必要はないと思っていましたが、シリアル化またはその使用法に問題があるようです。
シリアル化する必要があるクラスがあります:
[Serializable]
public class Device : ISerializable, IDisposable
{
public delegate void ListChangedEventHandler(object sender, ListChangedEventArgs e);
public string Name { get; set; }
public string Description { get; set; }
public string IPAddress { get; set; }
[Browsable(false)]
public ThreadSafeBindingList<Item> Items { get; set; }
[Browsable(false)]
public MibEntity AssociatedMibEntity { get; set; }
//methods etc.
}
少し説明:
ThreadSafeBindingList は System.ComponentModel.BindingList から継承されます MibEntity は SharpSNMP ライブラリのクラスです ( http://sharpsnmplib.codeplex.com/ )
問題: オブジェクトをデシリアライズしようとすると、MibEntity が常に null になります。他のプロパティは問題ありません。MibEntity クラスは、Device クラスが存在するプロジェクトで参照する外部 dll にあります。
これはその内容です:
[Serializable]
public class MibEntity
{
public MibEntity()
{
Children = new List<MibEntity>();
}
[Browsable(false)]
public List<MibEntity> Children { get; set; }
[Browsable(true)]
[Category("General")]
public string OID { get; set; }
private string _name;
[Browsable(true)]
[Category("General")]
public string Name
{
get { return _name; }
set { _name = value; }
}
[Browsable(true)]
public string Description { get; set; }
[Browsable(false)]
public int Value { get; set; }
[Browsable(true)]
public AccessType AccessType { get; set; } //this is enum from SharpSNMP library
[Browsable(true)]
public Status Status { get; set; } //this is enum from same assembly as this class
[Browsable(true)]
public string Syntax { get; set; }
[Browsable(true)]
public bool IsTableEntry { get; set; }
[Browsable(true)]
public IDefinition IDefinition { get; set; } //this is interface from SharpSNMP library
}
シリアル化と逆シリアル化には BinaryFormatter を使用します。ご協力ありがとうございました!