| File: parent\Common\JsonSourceGenerationMode.cs | Web Access |
| Project: System.Text.Json.csproj (System.Text.Json) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Text.Json.Serialization { /// <summary> /// The generation mode for the System.Text.Json source generator. /// </summary> [Flags] public enum JsonSourceGenerationMode { /// <summary> /// When specified on <see cref="JsonSourceGenerationOptionsAttribute.GenerationMode"/>, indicates that both type-metadata initialization logic /// and optimized serialization logic should be generated for all types. When specified on <see cref="JsonSerializableAttribute.GenerationMode"/>, /// indicates that the setting on <see cref="JsonSourceGenerationOptionsAttribute.GenerationMode"/> should be used. /// </summary> Default = 0, /// <summary> /// Instructs the JSON source generator to generate type-metadata initialization logic. /// </summary> /// <remarks> /// This mode supports all <see cref="JsonSerializer"/> features. /// </remarks> Metadata = 1, /// <summary> /// Instructs the JSON source generator to generate optimized serialization logic. /// </summary> /// <remarks> /// This mode supports only a subset of <see cref="JsonSerializer"/> features. /// </remarks> Serialization = 2 } }