File: System\Runtime\Serialization\SerializationOption.cs
Web Access
Project: src\src\libraries\System.Private.DataContractSerialization\src\System.Private.DataContractSerialization.csproj (System.Private.DataContractSerialization)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Runtime.Serialization
{
    internal enum SerializationOption
    {
        CodeGenOnly = 0,
        ReflectionOnly = 1,
        ReflectionAsBackup = 2
    }
}