3 writes to _untypedSet
System.Text.Json (3)
System\Text\Json\Serialization\Metadata\JsonPropertyInfoOfT.cs (3)
67
_untypedSet
= null;
72
_untypedSet
= setter is Action<object, object?> untypedSet ? untypedSet : (obj, value) => typedSetter(obj, (T)value!);
78
_untypedSet
= untypedSet;
2 references to _untypedSet
System.Text.Json (2)
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (2)
90
get =>
_untypedSet
;
747
internal bool HasSetter =>
_untypedSet
is not null;