SerializationObjectManager.RaiseOnSerializedEvent Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.