3 instantiations of JsonObjectCreationHandlingAttribute
dotnet (3)
Commands\Run\VirtualProjectBuildingCommand.cs (3)
1309[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)] 1315[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)] 1327[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)]
8 references to JsonObjectCreationHandlingAttribute
System.Text.Json (8)
System\Text\Json\Serialization\Attributes\JsonObjectCreationHandlingAttribute.cs (2)
20/// For example when <see cref="JsonObjectCreationHandlingAttribute"/> with <see cref="JsonObjectCreationHandling.Populate"/> is placed on a class 40/// Initializes a new instance of <see cref="JsonObjectCreationHandlingAttribute"/>.
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Helpers.cs (4)
319JsonObjectCreationHandlingAttribute? creationHandlingAttribute = type.GetUniqueCustomAttribute<JsonObjectCreationHandlingAttribute>(inherit: false); 451JsonObjectCreationHandlingAttribute? objectCreationHandlingAttr = memberInfo.GetCustomAttribute<JsonObjectCreationHandlingAttribute>(inherit: false);
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (1)
197/// Initial value for this property is based on the presence of <see cref="JsonObjectCreationHandlingAttribute"/> attribute on the property.
System\Text\Json\Serialization\Metadata\JsonTypeInfo.cs (1)
833/// the value of this callback will be mapped from <see cref="JsonObjectCreationHandlingAttribute"/> annotations on types.