You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove unnecessary mentions of SQL Server 2000 and 2005
- Update SQL Server versions list with currently supported versions
- Replaced msdn links with relative docs links
Copy file name to clipboardExpand all lines: xml/System.Data.Sql/SqlDataSourceEnumerator.xml
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,11 @@
21
21
<formattype="text/markdown"><![CDATA[
22
22
23
23
## Remarks
24
-
Both SQL Server 2000 and SQL Server 2005 make it possible for applications to determine the existence of SQL Server instances within the current network. The <xref:System.Data.Sql.SqlDataSourceEnumerator> class exposes this information to the application developer, providing a <xref:System.Data.DataTable> containing information about all the available servers. This returned table contains a list of server instances that matches the list provided when a user attempts to create a new connection, and on the `Connection Properties` dialog box, expands the drop-down list containing all the available servers.
24
+
SQL Server makes it possible for applications to determine the existence of its instances within the current network. The <xref:System.Data.Sql.SqlDataSourceEnumerator> class exposes this information to the application developer, providing a <xref:System.Data.DataTable> containing information about all the available servers. This returned table contains a list of server instances that matches the list provided when a user attempts to create a new connection, and on the `Connection Properties` dialog box, expands the drop-down list containing all the available servers.
25
25
26
26
]]></format>
27
27
</remarks>
28
-
<relatedtype="Article"href="https://msdn.microsoft.com/library/ddf1c83c-9d40-45e6-b04d-9828c6cbbfdc">Enumerating Instances of SQL Server</related>
28
+
<relatedtype="Article"href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">Enumerating Instances of SQL Server</related>
29
29
</Docs>
30
30
<Members>
31
31
<MemberMemberName="GetDataSources">
@@ -47,7 +47,7 @@
47
47
</ReturnValue>
48
48
<Parameters />
49
49
<Docs>
50
-
<summary>Retrieves a <seecref="T:System.Data.DataTable" /> containing information about all visible SQL Server 2000 or SQL Server 2005 instances.</summary>
50
+
<summary>Retrieves a <seecref="T:System.Data.DataTable" /> containing information about all visible SQL Server instances.</summary>
51
51
<returns>A <seecref="T:System.Data.DataTable" /> containing information about the visible SQL Server instances.</returns>
52
52
<remarks>
53
53
<formattype="text/markdown"><![CDATA[
@@ -60,7 +60,7 @@
60
60
|**ServerName**|Name of the server.|
61
61
|**InstanceName**|Name of the server instance. Blank if the server is running as the default instance.|
62
62
|**IsClustered**|Indicates whether the server is part of a cluster.|
63
-
|**Version**|Version of the server (8.00.x for SQL Server 2000, and 9.00.x for SQL Server 2005).|
63
+
|**Version**|Version of the server:<br /><br />10.0.xx for SQL Server 2008<br />10.50.x for SQL Server 2008 R2<br />11.0.xx for SQL Server 2012<br />12.0.xx for SQL Server 2014<br />13.0.xx for SQL Server 2016<br />14.0.xx for SQL Server 2017|
64
64
65
65
> [!NOTE]
66
66
> Due to the nature of the mechanism used by <xref:System.Data.Sql.SqlDataSourceEnumerator> to locate data sources on a network, the method will not always return a complete list of the available servers, and the list might not be the same on every call. If you plan to use this function to let users select a server from a list, make sure that you always also supply an option to type in a name that is not in the list, in case the server enumeration does not return all the available servers. In addition, this method may take a significant amount of time to execute, so be careful about calling it when performance is critical.
@@ -133,7 +133,7 @@ class Program
133
133
134
134
]]></format>
135
135
</remarks>
136
-
<relatedtype="Article"href="https://msdn.microsoft.com/library/ddf1c83c-9d40-45e6-b04d-9828c6cbbfdc">Enumerating Instances of SQL Server</related>
136
+
<relatedtype="Article"href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">Enumerating Instances of SQL Server</related>
137
137
</Docs>
138
138
</Member>
139
139
<MemberMemberName="Instance">
@@ -216,8 +216,8 @@ class Program
216
216
217
217
]]></format>
218
218
</remarks>
219
-
<relatedtype="Article"href="https://msdn.microsoft.com/library/ddf1c83c-9d40-45e6-b04d-9828c6cbbfdc">Enumerating Instances of SQL Server</related>
219
+
<relatedtype="Article"href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">Enumerating Instances of SQL Server</related>
0 commit comments