1
1
// Licensed to the .NET Foundation under one or more agreements.
2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
// See the LICENSE file in the project root for more information.
4
-
4
+ [ assembly : System . CLSCompliant ( true ) ]
5
5
namespace Microsoft . Data
6
6
{
7
7
/// <include file='..\..\..\..\doc\snippets\Microsoft.Data\OperationAbortedException.xml' path='docs/members[@name="OperationAbortedException"]/OperationAbortedException/*' />
8
+ [ System . Serializable ]
8
9
public sealed partial class OperationAbortedException : System . SystemException
9
10
{
10
11
internal OperationAbortedException ( ) { }
12
+
13
+ private OperationAbortedException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context ) { }
14
+
11
15
}
12
16
}
13
17
namespace Microsoft . Data . Sql
@@ -27,6 +31,7 @@ public SqlNotificationRequest(string userData, string options, int timeout) { }
27
31
public string UserData { get { throw null ; } set { } }
28
32
}
29
33
}
34
+
30
35
namespace Microsoft . Data . SqlClient
31
36
{
32
37
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient/ApplicationIntent.xml' path='docs/members[@name="ApplicationIntent"]/ApplicationIntent/*'/>
@@ -1315,9 +1320,12 @@ public void CopyTo(Microsoft.Data.SqlClient.SqlError[] array, int index) { }
1315
1320
public System . Collections . IEnumerator GetEnumerator ( ) { throw null ; }
1316
1321
}
1317
1322
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient/SqlException.xml' path='docs/members[@name="SqlException"]/SqlException/*'/>
1323
+ [ System . Serializable ]
1318
1324
public sealed partial class SqlException : System . Data . Common . DbException
1319
1325
{
1320
1326
internal SqlException ( ) { }
1327
+ private SqlException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context ) { }
1328
+
1321
1329
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient/SqlException.xml' path='docs/members[@name="SqlException"]/Class/*'/>
1322
1330
public byte Class { get { throw null ; } }
1323
1331
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient/SqlException.xml' path='docs/members[@name="SqlException"]/ClientConnectionId/*'/>
@@ -1708,10 +1716,14 @@ public interface IBinarySerialize
1708
1716
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient.Server/IBinarySerialize.xml' path='docs/members[@name="IBinarySerialize"]/Write/*'/>
1709
1717
void Write ( System . IO . BinaryWriter w ) ;
1710
1718
}
1719
+
1711
1720
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient.Server/InvalidUdtException.xml' path='docs/members[@name="InvalidUdtException"]/InvalidUdtException/*'/>
1721
+ [ System . Serializable ]
1712
1722
public sealed partial class InvalidUdtException : System . SystemException
1713
1723
{
1714
1724
internal InvalidUdtException ( ) { }
1725
+ private InvalidUdtException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context ) { }
1726
+
1715
1727
}
1716
1728
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient.Server/SqlDataRecord.xml' path='docs/members[@name="SqlDataRecord"]/SqlDataRecord/*'/>
1717
1729
public partial class SqlDataRecord : System . Data . IDataRecord
0 commit comments