11// Licensed to the .NET Foundation under one or more agreements.
22// The .NET Foundation licenses this file to you under the MIT license.
33// See the LICENSE file in the project root for more information.
4-
4+ [ assembly : System . CLSCompliant ( true ) ]
55namespace Microsoft . Data
66{
77 /// <include file='..\..\..\..\doc\snippets\Microsoft.Data\OperationAbortedException.xml' path='docs/members[@name="OperationAbortedException"]/OperationAbortedException/*' />
8+ [ System . Serializable ]
89 public sealed partial class OperationAbortedException : System . SystemException
910 {
1011 internal OperationAbortedException ( ) { }
12+
13+ private OperationAbortedException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context ) { }
14+
1115 }
1216}
1317namespace Microsoft . Data . Sql
@@ -27,6 +31,7 @@ public SqlNotificationRequest(string userData, string options, int timeout) { }
2731 public string UserData { get { throw null ; } set { } }
2832 }
2933}
34+
3035namespace Microsoft . Data . SqlClient
3136{
3237 /// <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) { }
13151320 public System . Collections . IEnumerator GetEnumerator ( ) { throw null ; }
13161321 }
13171322 /// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient/SqlException.xml' path='docs/members[@name="SqlException"]/SqlException/*'/>
1323+ [ System . Serializable ]
13181324 public sealed partial class SqlException : System . Data . Common . DbException
13191325 {
13201326 internal SqlException ( ) { }
1327+ private SqlException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context ) { }
1328+
13211329 /// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient/SqlException.xml' path='docs/members[@name="SqlException"]/Class/*'/>
13221330 public byte Class { get { throw null ; } }
13231331 /// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient/SqlException.xml' path='docs/members[@name="SqlException"]/ClientConnectionId/*'/>
@@ -1708,10 +1716,14 @@ public interface IBinarySerialize
17081716 /// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient.Server/IBinarySerialize.xml' path='docs/members[@name="IBinarySerialize"]/Write/*'/>
17091717 void Write ( System . IO . BinaryWriter w ) ;
17101718 }
1719+
17111720 /// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient.Server/InvalidUdtException.xml' path='docs/members[@name="InvalidUdtException"]/InvalidUdtException/*'/>
1721+ [ System . Serializable ]
17121722 public sealed partial class InvalidUdtException : System . SystemException
17131723 {
17141724 internal InvalidUdtException ( ) { }
1725+ private InvalidUdtException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context ) { }
1726+
17151727 }
17161728 /// <include file='../../../../doc/snippets/Microsoft.Data.SqlClient.Server/SqlDataRecord.xml' path='docs/members[@name="SqlDataRecord"]/SqlDataRecord/*'/>
17171729 public partial class SqlDataRecord : System . Data . IDataRecord
0 commit comments