SerializationObjectManager.RaiseOnSerializedEvent Method

Definition

Invokes the OnSerializing callback event if the type of the object has one; and registers the object for raising the OnSerialized event if the type of the object has one.

public:
 void RaiseOnSerializedEvent();
public void RaiseOnSerializedEvent ();
member this.RaiseOnSerializedEvent : unit -> unit
Public Sub RaiseOnSerializedEvent ()

Remarks

The OnSerializing callback event is created by applying the OnSerializingAttribute attribute to a method on the registered object. Similarly, the OnSerialized event is created by applying the OnSerializedAttribute attribute to a method on the registered object.

Applies to