Skip to content

Commit 35c317b

Browse files
authored
Move relative to absolute docs path (#2949)
1 parent 737db36 commit 35c317b

37 files changed

+378
-378
lines changed

doc/snippets/Microsoft.Data.Sql/SqlDataSourceEnumerator.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<remarks>
88
SQL Server makes it possible for applications to determine the existence of its instances within the current network. The <see cref="T:Microsoft.Data.Sql.SqlDataSourceEnumerator" /> class exposes this information to the application developer, providing a <see cref="T: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 <c>Connection Properties</c> dialog box, expands the drop-down list containing all the available servers.
99
</remarks>
10-
<seealso href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">
10+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/enumerate-instances-sql-server">
1111
Enumerating Instances of SQL Server
1212
</seealso>
1313
</SqlDataSourceEnumerator>
@@ -98,7 +98,7 @@
9898
}
9999
</code>
100100
</example>
101-
<seealso href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">
101+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/enumerate-instances-sql-server">
102102
Enumerating Instances of SQL Server
103103
</seealso>
104104
</GetDataSources>
@@ -179,7 +179,7 @@
179179
}
180180
</code>
181181
</example>
182-
<seealso href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">
182+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/enumerate-instances-sql-server">
183183
Enumerating Instances of SQL Server
184184
</seealso>
185185
</Instance>

doc/snippets/Microsoft.Data.Sql/SqlNotificationRequest.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<remarks>
88
This class provides low-level access to the query notification services exposed by SQL Server 2005. For most applications the <see cref="T:Microsoft.Data.SqlClient.SqlDependency" /> class provides a simpler way of using query notifications. However, if you need fine control over when notifications occur, or you need to customize the message data returned as part of a notification, the <see cref="T:Microsoft.Data.Sql.SqlNotificationRequest" /> class is the one to use.
99
</remarks>
10-
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
10+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
1111
Using Query Notifications
1212
</seealso>
1313
</SqlNotificationRequest>
@@ -18,7 +18,7 @@
1818
<remarks>
1919
If the parameterless constructor is used to create a <see cref="T:Microsoft.Data.Sql.SqlNotificationRequest" /> object, that instance must have its <see cref="P:Microsoft.Data.Sql.SqlNotificationRequest.UserData" /> and <see cref="P:Microsoft.Data.Sql.SqlNotificationRequest.Options" /> properties initialized before assigning the object to a <see cref="T:Microsoft.Data.SqlClient.SqlCommand" /> object's <see cref="P:Microsoft.Data.SqlClient.SqlCommand.Notification" /> property. The default values used by the constructor are <see langword="null" /> (<c>Nothing</c> in Visual Basic) for the <see cref="P:Microsoft.Data.Sql.SqlNotificationRequest.UserData" />, an empty string for the <see cref="P:Microsoft.Data.Sql.SqlNotificationRequest.Options" />, and zero for the <see cref="P:Microsoft.Data.Sql.SqlNotificationRequest.Timeout" />.
2020
</remarks>
21-
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
21+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
2222
Using Query Notifications
2323
</seealso>
2424
</ctor1>
@@ -44,7 +44,7 @@
4444
<exception cref="T:System.ArgumentOutOfRangeException">
4545
The <paramref name="options" /> or <paramref name="userData" /> parameter is longer than <see cref="F:System.UInt16.MaxValue" /> or the value in the <paramref name="timeout" /> parameter is less than zero.
4646
</exception>
47-
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
47+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
4848
Using Query Notifications
4949
</seealso>
5050
</ctor2>
@@ -78,7 +78,7 @@
7878
<exception cref="T:System.ArgumentException">
7979
The value is longer than <see cref="F:System.UInt16.MaxValue" />.
8080
</exception>
81-
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
81+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
8282
Using Query Notifications
8383
</seealso>
8484
</Options>
@@ -95,7 +95,7 @@
9595
<exception cref="T:System.ArgumentOutOfRangeException">
9696
The value is less than zero.
9797
</exception>
98-
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
98+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
9999
Using Query Notifications
100100
</seealso>
101101
</Timeout>
@@ -112,7 +112,7 @@
112112
<exception cref="T:System.ArgumentException">
113113
The value is longer than <see cref="F:System.UInt16.MaxValue" />.
114114
</exception>
115-
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
115+
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
116116
Using Query Notifications
117117
</seealso>
118118
</UserData>

doc/snippets/Microsoft.Data.SqlClient.Server/SqlMetaData.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@
615615
Initializes a new instance of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> class with the specified column name, and default server. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.
616616
</summary>
617617
<remarks>
618-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
618+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
619619
</remarks>
620620
</ctorNameDbTypeUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
621621
<ctorNameDbTypeMaxLengthUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
@@ -644,7 +644,7 @@
644644
Initializes a new instance of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> class with the specified column name, type, maximum length, and server default. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.
645645
</summary>
646646
<remarks>
647-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
647+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
648648
</remarks>
649649
</ctorNameDbTypeMaxLengthUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
650650
<ctorNameDbTypePrecisionScaleUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
@@ -676,7 +676,7 @@
676676
Initializes a new instance of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> class with the specified column name, type, precision, scale, and server default. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.
677677
</summary>
678678
<remarks>
679-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
679+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
680680
</remarks>
681681
</ctorNameDbTypePrecisionScaleUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
682682
<ctorNameDbTypeMaxLengthPrecisionScaleLocaleCompareOptionsUserDefinedType>
@@ -931,7 +931,7 @@
931931
Initializes a new instance of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> class with the specified column name, type, user-defined type, SQL Server type, and server default. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.
932932
</summary>
933933
<remarks>
934-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
934+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
935935
</remarks>
936936
</ctorNameDbTypeUserDefinedTypeServerTypeNameUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
937937
<ctorNameDbTypeMaxLengthLocaleCompareOptionsUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
@@ -966,7 +966,7 @@
966966
Initializes a new instance of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> class with the specified column name, type, maximum length, locale, compare options, and server default. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.
967967
</summary>
968968
<remarks>
969-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
969+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
970970
</remarks>
971971
</ctorNameDbTypeMaxLengthLocaleCompareOptionsUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
972972
<ctorNameDbTypeDatabaseOwningSchemaObjectNameUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
@@ -1001,7 +1001,7 @@
10011001
Initializes a new instance of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> class with the specified column name, database name, owning schema, object name, and default server. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.
10021002
</summary>
10031003
<remarks>
1004-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
1004+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
10051005
</remarks>
10061006
</ctorNameDbTypeDatabaseOwningSchemaObjectNameUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
10071007
<ctorNameDbTypeMaxLengthPrecisionScaleLocaleCompareOptionsUserDefinedTypeUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
@@ -1045,7 +1045,7 @@
10451045
Initializes a new instance of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> class with the specified column name, type, maximum length, precision, scale, locale ID, compare options, and user-defined type (UDT). This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.
10461046
</summary>
10471047
<remarks>
1048-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
1048+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
10491049
</remarks>
10501050
</ctorNameDbTypeMaxLengthPrecisionScaleLocaleCompareOptionsUserDefinedTypeUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
10511051
<Adjust>
@@ -1505,7 +1505,7 @@
15051505
This property can only be set in one of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> constructors.
15061506
</para>
15071507
<para>
1508-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
1508+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
15091509
</para>
15101510
</remarks>
15111511
</IsUniqueKey>
@@ -1597,7 +1597,7 @@
15971597
This property can only be set in one of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> constructors.
15981598
</para>
15991599
<para>
1600-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
1600+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
16011601
</para>
16021602
</remarks>
16031603
</SortOrder>
@@ -1616,7 +1616,7 @@
16161616
This property can only be set in one of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> constructors.
16171617
</para>
16181618
<para>
1619-
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
1619+
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
16201620
</para>
16211621
</remarks>
16221622
</SortOrdinal>

doc/snippets/Microsoft.Data.SqlClient/SqlBatch.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@
330330
<returns>A task representing the asynchronous operation.</returns>
331331
<remarks>
332332
<para>
333-
For more information about asynchronous programming, see <see href="/dotnet/framework/data/adonet/asynchronous-programming">Asynchronous Programming</see>.
333+
For more information about asynchronous programming, see <see href="https://learn.microsoft.com/sql/connect/ado-net/asynchronous-programming">Asynchronous Programming</see>.
334334
</para>
335335
<para>
336336
This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as <see cref="T:System.ArgumentException" />, are still thrown synchronously. For the stored exceptions, see the exceptions thrown by <see cref="M:System.Data.Common.DbBatch.ExecuteDbDataReader(System.Data.CommandBehavior)" />.
@@ -365,7 +365,7 @@
365365
<returns>A task representing the asynchronous operation.</returns>
366366
<remarks>
367367
<para>
368-
For more information about asynchronous programming, see <see href="/dotnet/framework/data/adonet/asynchronous-programming">Asynchronous Programming</see>.
368+
For more information about asynchronous programming, see <see href="https://learn.microsoft.com/sql/connect/ado-net/asynchronous-programming">Asynchronous Programming</see>.
369369
</para>
370370
<para>
371371
If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as <see cref="T:System.ArgumentException" />, are still thrown synchronously.
@@ -375,7 +375,7 @@
375375
</note>
376376
</remarks>
377377
<exception cref="T:Microsoft.Data.SqlClient.SqlException">An error occurred while executing the batch.</exception>
378-
<related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related>
378+
<related type="Article" href="https://learn.microsoft.com/sql/connect/ado-net/overview-sqlclient-driver">Overview of the SqlClient driver</related>
379379
<exception cref="T:System.OperationCanceledException">
380380
The cancellation token was canceled. This exception is stored into the returned task.
381381
</exception>

doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommand.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
A collection of <see cref="T:Microsoft.Data.SqlClient.SqlParameter" /> objects is used to create the <see cref="T:Microsoft.Data.SqlClient.SqlParameterCollection" />.
7575
</param>
7676
<param name="columnEncryptionSetting">
77-
The encryption setting. For more information, see <see href="/sql/relational-databases/security/encryption/always-encrypted-database-engine">Always Encrypted</see>.
77+
The encryption setting. For more information, see <see href="https://learn.microsoft.com/sql/relational-databases/security/encryption/always-encrypted-database-engine">Always Encrypted</see>.
7878
</param>
7979
</ctor2>
8080
<Parameters>
@@ -93,7 +93,7 @@
9393
<ColumnEncryptionSetting>
9494
<summary>
9595
Not currently implemented.
96-
The encryption setting. For more information, see <see href="/sql/relational-databases/security/encryption/always-encrypted-database-engine">Always Encrypted</see>.
96+
The encryption setting. For more information, see <see href="https://learn.microsoft.com/sql/relational-databases/security/encryption/always-encrypted-database-engine">Always Encrypted</see>.
9797
</summary>
9898
</ColumnEncryptionSetting>
9999
<CreateParameter>

0 commit comments

Comments
 (0)