SqlConnectionStringBuilder.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 SqlConnectionStringBuilder
  11. {
  12. [Obsolete("This property is ignored beginning in .NET Framework 4.5." +
  13. "For more information about SqlClient support for asynchronous programming, see" +
  14. "https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/asynchronous-programming")]
  15. public bool AsynchronousProcessing { get; set; }
  16. [Obsolete("ConnectionReset has been deprecated. SqlConnection will ignore the 'connection reset'" +
  17. "keyword and always reset the connection")]
  18. public bool ConnectionReset { get; set; }
  19. [MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
  20. public SqlAuthenticationMethod Authentication {
  21. get => throw new NotImplementedException();
  22. set => throw new NotImplementedException();
  23. }
  24. [MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
  25. public bool ContextConnection {
  26. get => throw new NotImplementedException();
  27. set => throw new NotImplementedException();
  28. }
  29. [MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
  30. public string NetworkLibrary {
  31. get => throw new NotImplementedException();
  32. set => throw new NotImplementedException();
  33. }
  34. [MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
  35. public PoolBlockingPeriod PoolBlockingPeriod {
  36. get => throw new NotImplementedException();
  37. set => throw new NotImplementedException();
  38. }
  39. [MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
  40. public bool TransparentNetworkIPResolution {
  41. get => throw new NotImplementedException();
  42. set => throw new NotImplementedException();
  43. }
  44. [MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
  45. public SqlConnectionColumnEncryptionSetting ColumnEncryptionSetting {
  46. get => throw new NotImplementedException();
  47. set => throw new NotImplementedException();
  48. }
  49. }
  50. }