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!

Dictionary.OnDeserialization

Implements the ISerializable interface and raises the deserialization event when the deserialization is complete.

[Visual Basic]
Overridable Public Sub OnDeserialization( _
   ByVal sender As Object, _
   ByVal dsEvent As DeserializationEvent _
)
[C#]
public virtual void OnDeserialization(
   object sender,
   DeserializationEvent dsEvent
);
[C++]
public: virtual void OnDeserialization(
   Object* sender,
   DeserializationEvent* dsEvent
);
[JScript]
public function OnDeserialization(
   sender : Object,
   dsEvent : DeserializationEvent
);

Parameters

sender
The source of the deserialization event.
dsEvent
A DeserializationEvent object that contains the event data.

Return Value

None.

Remarks

This method can be overridden by a derived class.

See Also

Dictionary Class | Dictionary Members | System.Collections Namespace | ISerializable | DeserializationEvent | GetObjectData