1 write to Get
Microsoft.AspNetCore.Grpc.JsonTranscoding (1)
Internal\Json\MessageTypeInfoResolver.cs (1)
122propertyInfo.Get = (o) =>
13 references to Get
Microsoft.AspNetCore.JsonPatch.SystemTextJson (5)
Internal\PocoAdapter.cs (5)
60if (jsonProperty.Get == null) 67value = jsonProperty.Get(target); 149if (jsonProperty.Get == null) 161var currentValue = jsonProperty.Get(target); 188value = jsonProperty.Get(target);
System.Text.Json (8)
System\Text\Json\Schema\JsonSchemaExporter.cs (1)
241if (property is { Get: null, Set: null } or { IsExtensionData: true })
System\Text\Json\Serialization\Metadata\JsonMetadataServices.Helpers.cs (1)
184if (jsonPropertyInfo.Get is null && jsonPropertyInfo.Set is null)
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (6)
540if (Get is null && Set is not null && !_isUserSpecifiedSetter) 549if (Get is not null && Set is null && IgnoreReadOnlyMember && !_isUserSpecifiedShouldSerialize) 633Get is not null && 647if (Get is null) 962object? value = Get!(state.Parent.ReturnValue); 999internal bool IsIgnored => _ignoreCondition is JsonIgnoreCondition.Always && Get is null && Set is null;