10 overrides of HandleNull
Microsoft.AspNetCore.Grpc.JsonTranscoding (2)
Internal\Json\NullValueConverter.cs (1)
13public override bool HandleNull => true;
Internal\Json\ValueConverter.cs (1)
13public override bool HandleNull => true;
System.Text.Json (8)
System\Text\Json\Serialization\Converters\CastingConverter.cs (1)
19public override bool HandleNull { get; }
System\Text\Json\Serialization\Converters\FSharp\FSharpOptionConverter.cs (1)
16public override bool HandleNull => true;
System\Text\Json\Serialization\Converters\FSharp\FSharpValueOptionConverter.cs (1)
16public override bool HandleNull => true;
System\Text\Json\Serialization\Converters\Value\JsonDocumentConverter.cs (1)
8public override bool HandleNull => true;
System\Text\Json\Serialization\Converters\Value\MemoryByteConverter.cs (1)
8public override bool HandleNull => true;
System\Text\Json\Serialization\Converters\Value\NullableConverter.cs (1)
11public override bool HandleNull => true;
System\Text\Json\Serialization\Converters\Value\ReadOnlyMemoryByteConverter.cs (1)
8public override bool HandleNull => true;
System\Text\Json\Serialization\JsonResumableConverterOfT.cs (1)
15public override bool HandleNull => false;
4 references to HandleNull
System.Text.Json (4)
System\Text\Json\Serialization\JsonConverterOfT.cs (4)
24if (HandleNull) 149/// <remarks>Note that the value of <seealso cref="HandleNull"/> determines if the converter handles null JSON tokens.</remarks> 574/// <param name="value">The value to convert. Note that the value of <seealso cref="HandleNull"/> determines if the converter handles <see langword="null" /> values.</param> 621/// <param name="value">The value to convert. Note that the value of <seealso cref="HandleNull"/> determines if the converter handles <see langword="null" /> values.</param>