update readme (#21797)
[mono-project.git] / mcs / class / System.Data / corefx / SqlConnection.cs
blob639084626e71e5c7b17b285d2c75e5488988825e
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.
5 using System;
6 using System.Collections;
7 using System.Data;
8 using System.Data.Common;
10 namespace System.Data.SqlClient
12 partial class SqlConnection : IDbConnection, ICloneable, IDisposable
14 [MonoTODO] //https://github.com/dotnet/corefx/issues/11542
15 public SqlCredential Credentials {
16 get => throw new NotImplementedException();
17 set => throw new NotImplementedException();
20 #if !MOBILE
21 [MonoTODO]
22 public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction)
24 throw new NotImplementedException();
26 #endif