1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace Microsoft.SqlServer.TDS.PreLogin
6 {
7     /// <summary>
8     /// Types of the tokens in TDS prelogin packet
9     /// </summary>
10     public enum TDSPreLoginTokenOptionType : byte
11     {
12         Version = 0x00,
13         Encryption = 0x01,
14         Instance = 0x02,
15         ThreadID = 0x03,
16         Mars = 0x04,
17         TraceID = 0x05,
18         FederatedAuthenticationRequired = 0x06,
19         NonceOption = 0x07,
20         Terminator = 0xff
21     }
22 }
23