SqlConnectionPoolProviderInfo.cs 830 B

1234567891011121314151617181920212223242526
  1. //------------------------------------------------------------------------------
  2. // <copyright file="SqlConnectionPoolProviderInfo.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. //------------------------------------------------------------------------------
  7. namespace System.Data.SqlClient {
  8. using System;
  9. using System.Data.ProviderBase;
  10. using System.Diagnostics;
  11. internal sealed class SqlConnectionPoolProviderInfo : DbConnectionPoolProviderInfo {
  12. private string _instanceName;
  13. internal string InstanceName {
  14. get {
  15. return _instanceName;
  16. }
  17. set {
  18. _instanceName = value;
  19. }
  20. }
  21. }
  22. }