IJsonOnSerializing
Specifies that the type should have its OnSerializing method called before serialization occurs.
namespace System.Text.Json.Serialization
{
public interface IJsonOnSerializing
{
void OnSerializing();
}
}