有没有办法向对象发出成功反序列化的信号?
我正在使用 NetDataContractSerializer。成功反序列化一个对象后,有没有办法告诉该对象完成其构造?我的想法是:
[DataContract]
class Foo
{
[DataMember]
int i;
[SerializationCompletedEvent]
void SerializationCompleted ()
{
i = i + 7;
}
}
I'm using NetDataContractSerializer
. After successfully deserializing an object, is there a way to tell the object to finish its construction? I'm thinking along the lines of:
[DataContract]
class Foo
{
[DataMember]
int i;
[SerializationCompletedEvent]
void SerializationCompleted ()
{
i = i + 7;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己现在已经发现了。
http://msdn.microsoft.com/en- us/library/system.runtime.serialization.ondeserializedattribute.aspx
我猜有人错过了简单的 15 点?
Found it out myself by now.
http://msdn.microsoft.com/en-us/library/system.runtime.serialization.ondeserializedattribute.aspx
Someone missed an easy 15 points I guess?