3 writes to Get
Microsoft.AspNetCore.Grpc.JsonTranscoding (1)
Internal\Json\MessageTypeInfoResolver.cs (1)
106
propertyInfo.
Get
= (o) =>
Microsoft.AspNetCore.JsonPatch.SystemTextJson.Tests (2)
TestObjectModels\HeterogenousCollection.cs (2)
51
property.
Get
= (obj) => ((Rectangle)obj).ShapeProperty;
56
property.
Get
= (obj) => ((Rectangle)obj).RectangleProperty;
16 references to Get
Microsoft.AspNetCore.JsonPatch.SystemTextJson (5)
Internal\PocoAdapter.cs (5)
60
if (jsonProperty.
Get
== null)
67
value = jsonProperty.
Get
(target);
149
if (jsonProperty.
Get
== null)
161
var currentValue = jsonProperty.
Get
(target);
188
value = jsonProperty.
Get
(target);
Microsoft.Extensions.AI.Abstractions (2)
src\Shared\JsonSchemaExporter\JsonSchemaExporter.cs (2)
267
if (property is {
Get
: null, Set: null } or { IsExtensionData: true })
284
(property.
Get
is null || nullabilityInfo.ReadState is NullabilityState.NotNull) &&
Shared (2)
JsonSchemaExporter\JsonSchemaExporter.cs (2)
267
if (property is {
Get
: null, Set: null } or { IsExtensionData: true })
284
(property.
Get
is null || nullabilityInfo.ReadState is NullabilityState.NotNull) &&
System.Text.Json (7)
System\Text\Json\Schema\JsonSchemaExporter.cs (1)
220
if (property is {
Get
: null, Set: null } or { IsExtensionData: true })
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (6)
545
if (
Get
== null && Set != null && !_isUserSpecifiedSetter)
554
if (
Get
!= null && Set == null && IgnoreReadOnlyMember && !_isUserSpecifiedShouldSerialize)
638
Get
!= null &&
652
if (
Get
== null)
947
object? value =
Get
!(state.Parent.ReturnValue);
984
internal bool IsIgnored => _ignoreCondition is JsonIgnoreCondition.Always &&
Get
is null && Set is null;