NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ObjectManager Deserialization Event

Occurs when when deserialization is complete.

The following declaration shows the syntax for a method that handles the Deserialization event.

[Visual Basic]
Private Sub ObjectManagerName_Deserialization( _
   ByVal sender As Object, _
   ByVal e As DeserializationEventArgs _
)
[C#]
private void ObjectManagerName_Deserialization(
   object sender,
   DeserializationEventArgs e
);
[C++]
private: void ObjectManagerName_Deserialization(
   Object* sender,
   DeserializationEventArgs* e
);
[JScript]
private ObjectManagerName_Deserialization(
   sender : Object,
   e : DeserializationEventArgs
);

Parameters

sender
The source of the event.
e
A DeserializationEventArgs that contains the event data.

See Also

ObjectManager Class | ObjectManager MembersTopic | System.Runtime.Serialization Namespace