3 writes to Get
Microsoft.AspNetCore.Grpc.JsonTranscoding (1)
Internal\Json\MessageTypeInfoResolver.cs (1)
106propertyInfo.Get = (o) =>
Microsoft.AspNetCore.JsonPatch.SystemTextJson.Tests (2)
TestObjectModels\HeterogenousCollection.cs (2)
51property.Get = (obj) => ((Rectangle)obj).ShapeProperty; 56property.Get = (obj) => ((Rectangle)obj).RectangleProperty;
16 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);
Microsoft.Extensions.AI.Abstractions (2)
src\Shared\JsonSchemaExporter\JsonSchemaExporter.cs (2)
267if (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)
267if (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)
220if (property is { Get: null, Set: null } or { IsExtensionData: true })
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (6)
545if (Get == null && Set != null && !_isUserSpecifiedSetter) 554if (Get != null && Set == null && IgnoreReadOnlyMember && !_isUserSpecifiedShouldSerialize) 638Get != null && 652if (Get == null) 947object? value = Get!(state.Parent.ReturnValue); 984internal bool IsIgnored => _ignoreCondition is JsonIgnoreCondition.Always && Get is null && Set is null;