34 references to JsonSourceGenerationOptionsAttribute
System.Text.Json.SourceGeneration (34)
JsonSourceGenerator.Parser.cs (27)
368case nameof(JsonSourceGenerationOptionsAttribute.AllowOutOfOrderMetadataProperties): 372case nameof(JsonSourceGenerationOptionsAttribute.AllowTrailingCommas): 376case nameof(JsonSourceGenerationOptionsAttribute.Converters): 390case nameof(JsonSourceGenerationOptionsAttribute.DefaultBufferSize): 394case nameof(JsonSourceGenerationOptionsAttribute.DefaultIgnoreCondition): 398case nameof(JsonSourceGenerationOptionsAttribute.DictionaryKeyPolicy): 402case nameof(JsonSourceGenerationOptionsAttribute.RespectNullableAnnotations): 406case nameof(JsonSourceGenerationOptionsAttribute.RespectRequiredConstructorParameters): 410case nameof(JsonSourceGenerationOptionsAttribute.IgnoreReadOnlyFields): 414case nameof(JsonSourceGenerationOptionsAttribute.IgnoreReadOnlyProperties): 418case nameof(JsonSourceGenerationOptionsAttribute.IncludeFields): 422case nameof(JsonSourceGenerationOptionsAttribute.MaxDepth): 426case nameof(JsonSourceGenerationOptionsAttribute.NewLine): 430case nameof(JsonSourceGenerationOptionsAttribute.NumberHandling): 434case nameof(JsonSourceGenerationOptionsAttribute.PreferredObjectCreationHandling): 438case nameof(JsonSourceGenerationOptionsAttribute.PropertyNameCaseInsensitive): 442case nameof(JsonSourceGenerationOptionsAttribute.PropertyNamingPolicy): 446case nameof(JsonSourceGenerationOptionsAttribute.ReadCommentHandling): 450case nameof(JsonSourceGenerationOptionsAttribute.ReferenceHandler): 454case nameof(JsonSourceGenerationOptionsAttribute.UnknownTypeHandling): 458case nameof(JsonSourceGenerationOptionsAttribute.UnmappedMemberHandling): 462case nameof(JsonSourceGenerationOptionsAttribute.UseStringEnumConverter): 466case nameof(JsonSourceGenerationOptionsAttribute.WriteIndented): 470case nameof(JsonSourceGenerationOptionsAttribute.IndentCharacter): 474case nameof(JsonSourceGenerationOptionsAttribute.IndentSize): 478case nameof(JsonSourceGenerationOptionsAttribute.GenerationMode): 482case nameof(JsonSourceGenerationOptionsAttribute.AllowDuplicateProperties):
Model\PropertyGenerationSpec.cs (1)
58/// specified ahead-of-time via <see cref="JsonSourceGenerationOptionsAttribute"/>.
Model\SourceGenerationOptionsSpec.cs (1)
10/// Models compile-time configuration of <see cref="JsonSourceGenerationOptionsAttribute"/>.
src\libraries\System.Text.Json\Common\JsonSerializableAttribute.cs (1)
42/// then the setting specified on <see cref="JsonSourceGenerationOptionsAttribute.GenerationMode"/> will be used.
src\libraries\System.Text.Json\Common\JsonSourceGenerationMode.cs (2)
13/// When specified on <see cref="JsonSourceGenerationOptionsAttribute.GenerationMode"/>, indicates that both type-metadata initialization logic 15/// indicates that the setting on <see cref="JsonSourceGenerationOptionsAttribute.GenerationMode"/> should be used.
src\libraries\System.Text.Json\Common\JsonSourceGenerationOptionsAttribute.cs (2)
18/// Constructs a new <see cref="JsonSourceGenerationOptionsAttribute"/> instance. 23/// Constructs a new <see cref="JsonSourceGenerationOptionsAttribute"/> instance with a predefined set of options determined by the specified <see cref="JsonSerializerDefaults"/>.