SqlConnection.cs 774 B

12345678910111213141516171819202122232425262728
  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. using System;
  5. using System.Collections;
  6. using System.Data;
  7. using System.Data.Common;
  8. namespace System.Data.SqlClient
  9. {
  10. partial class SqlConnection : IDbConnection, ICloneable, IDisposable
  11. {
  12. [MonoTODO] //https://github.com/dotnet/corefx/issues/11542
  13. public SqlCredential Credentials {
  14. get => throw new NotImplementedException();
  15. set => throw new NotImplementedException();
  16. }
  17. #if !MOBILE
  18. [MonoTODO]
  19. public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction)
  20. {
  21. throw new NotImplementedException();
  22. }
  23. #endif
  24. }
  25. }