Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanmosemsft <danmose@microsoft.com>2017-04-05 09:55:24 +0300
committerdanmosemsft <danmose@microsoft.com>2017-04-05 09:55:24 +0300
commitb1c673ca0817539ca647061a763ba1ae647e7245 (patch)
tree41239d83e1bedf7350feec4c9240e019b6e97940 /src/System.Data.SqlClient
parent6d584aa1fb5c4b66805d65f98dae4ce45c73b361 (diff)
Dead SqlClient files
Diffstat (limited to 'src/System.Data.SqlClient')
-rw-r--r--src/System.Data.SqlClient/tests/Tools/TDS/TDS/TDSPacketTokenType.cs34
-rw-r--r--src/System.Data.SqlClient/tests/Tools/TDS/TDS/TDSPacketType.cs25
2 files changed, 0 insertions, 59 deletions
diff --git a/src/System.Data.SqlClient/tests/Tools/TDS/TDS/TDSPacketTokenType.cs b/src/System.Data.SqlClient/tests/Tools/TDS/TDS/TDSPacketTokenType.cs
deleted file mode 100644
index 7f002157e7..0000000000
--- a/src/System.Data.SqlClient/tests/Tools/TDS/TDS/TDSPacketTokenType.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-using System;
-
-namespace Microsoft.SqlServer.TDS
-{
- /// <summary>
- /// Types of the tokens in data buffer of the packet
- /// </summary>
- public enum TDSPacketTokenType
- {
- AlternativeMetadata = 088,
- AlternativeRow = 0xD3,
- ColumnMetadata = 0x81,
- ColumnInfo = 0xA5,
- Done = 0xFD,
- DoneProcedure = 0xFE,
- DoneInProc = 0xFF,
- EnvironmentChange = 0xE3,
- Error = 0xAA,
- Info = 0xAB,
- LoginAcknowledgement = 0xAD,
- NBCRow = 0xD2,
- Offset = 0x78,
- Order = 0xA9,
- ReturnStatus = 0x79,
- ReturnValue = 0xAC,
- Row = 0xD1,
- SSPI = 0xED,
- TabbleName = 0xA4
- }
-}
diff --git a/src/System.Data.SqlClient/tests/Tools/TDS/TDS/TDSPacketType.cs b/src/System.Data.SqlClient/tests/Tools/TDS/TDS/TDSPacketType.cs
deleted file mode 100644
index 7e0cfe8f0a..0000000000
--- a/src/System.Data.SqlClient/tests/Tools/TDS/TDS/TDSPacketType.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-using System;
-
-namespace Microsoft.SqlServer.TDS
-{
- /// <summary>
- /// Type of TDS packet
- /// </summary>
- public enum TDSPacketType: byte
- {
- SQLBatch = 1,
- PreTDS7Login = 2,
- RPC = 3,
- Response = 4,
- Attention = 6,
- BulkLoad = 7,
- TransactionManager = 14,
- TDS7Login = 16,
- SSPI = 17,
- PreLogin = 18
- }
-}