1 write to Set
Microsoft.AspNetCore.Grpc.JsonTranscoding (1)
Internal\Json\MessageTypeInfoResolver.cs (1)
118propertyInfo.Set = GetSetMethod(field);
12 references to Set
Microsoft.AspNetCore.OpenApi (1)
Schemas\JsonSchemaMapper\JsonSchemaMapper.cs (1)
420if (property is { Get: null, Set: null }
System.Text.Json (11)
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.cs (2)
217Debug.Assert(jsonPropertyInfo.Set != null); 221jsonPropertyInfo.Set(obj, propValue);
System\Text\Json\Serialization\JsonSerializer.Read.HandlePropertyName.cs (2)
149Debug.Assert(jsonPropertyInfo.Set != null); 150jsonPropertyInfo.Set(obj, extensionData);
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (7)
445if (Get == null && Set != null && !_isUserSpecifiedSetter) 454if (Get != null && Set == null && IgnoreReadOnlyMember && !_isUserSpecifiedShouldSerialize) 539(!PropertyType.IsValueType || Set != null) && 541!(Set == null && IgnoreReadOnlyMember); 557if (PropertyType.IsValueType && Set == null) 569if (Set == null && IgnoreReadOnlyMember) 906internal bool IsIgnored => _ignoreCondition is JsonIgnoreCondition.Always && Get is null && Set is null;