2 instantiations of PocoWithCustomConverter
Shared.Tests (2)
JsonSchemaExporter\TestTypes.cs (2)
406yield return new TestData<PocoWithCustomConverter>(new() { Value = 42 }, "true"); 961new PocoWithCustomConverter { Value = reader.GetInt32() };
4 references to PocoWithCustomConverter
Shared.Tests (4)
JsonSchemaExporter\TestTypes.cs (4)
406yield return new TestData<PocoWithCustomConverter>(new() { Value = 42 }, "true"); 958public class CustomConverter : JsonConverter<PocoWithCustomConverter> 960public override PocoWithCustomConverter Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) => 963public override void Write(Utf8JsonWriter writer, PocoWithCustomConverter value, JsonSerializerOptions options) =>