Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move relative to absolute docs path #2949

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/snippets/Microsoft.Data.Sql/SqlDataSourceEnumerator.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<remarks>
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.
</remarks>
<seealso href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/enumerate-instances-sql-server">
Enumerating Instances of SQL Server
</seealso>
</SqlDataSourceEnumerator>
Expand Down Expand Up @@ -98,7 +98,7 @@
}
</code>
</example>
<seealso href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/enumerate-instances-sql-server">
Enumerating Instances of SQL Server
</seealso>
</GetDataSources>
Expand Down Expand Up @@ -179,7 +179,7 @@
}
</code>
</example>
<seealso href="/dotnet/framework/data/adonet/sql/enumerating-instances-of-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/enumerate-instances-sql-server">
Enumerating Instances of SQL Server
</seealso>
</Instance>
Expand Down
12 changes: 6 additions & 6 deletions doc/snippets/Microsoft.Data.Sql/SqlNotificationRequest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<remarks>
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.
</remarks>
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
Using Query Notifications
</seealso>
</SqlNotificationRequest>
Expand All @@ -18,7 +18,7 @@
<remarks>
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" />.
</remarks>
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
Using Query Notifications
</seealso>
</ctor1>
Expand All @@ -44,7 +44,7 @@
<exception cref="T:System.ArgumentOutOfRangeException">
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.
</exception>
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
Using Query Notifications
</seealso>
</ctor2>
Expand Down Expand Up @@ -78,7 +78,7 @@
<exception cref="T:System.ArgumentException">
The value is longer than <see cref="F:System.UInt16.MaxValue" />.
</exception>
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
Using Query Notifications
</seealso>
</Options>
Expand All @@ -95,7 +95,7 @@
<exception cref="T:System.ArgumentOutOfRangeException">
The value is less than zero.
</exception>
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
Using Query Notifications
</seealso>
</Timeout>
Expand All @@ -112,7 +112,7 @@
<exception cref="T:System.ArgumentException">
The value is longer than <see cref="F:System.UInt16.MaxValue" />.
</exception>
<seealso href="/sql/connect/ado-net/sql/query-notifications-sql-server">
<seealso href="https://learn.microsoft.com/sql/connect/ado-net/sql/query-notifications-sql-server">
Using Query Notifications
</seealso>
</UserData>
Expand Down
20 changes: 10 additions & 10 deletions doc/snippets/Microsoft.Data.SqlClient.Server/SqlMetaData.xml
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@
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.
</summary>
<remarks>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</remarks>
</ctorNameDbTypeUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
<ctorNameDbTypeMaxLengthUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
Expand Down Expand Up @@ -644,7 +644,7 @@
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.
</summary>
<remarks>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</remarks>
</ctorNameDbTypeMaxLengthUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
<ctorNameDbTypePrecisionScaleUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
Expand Down Expand Up @@ -676,7 +676,7 @@
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.
</summary>
<remarks>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</remarks>
</ctorNameDbTypePrecisionScaleUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
<ctorNameDbTypeMaxLengthPrecisionScaleLocaleCompareOptionsUserDefinedType>
Expand Down Expand Up @@ -931,7 +931,7 @@
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.
</summary>
<remarks>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</remarks>
</ctorNameDbTypeUserDefinedTypeServerTypeNameUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
<ctorNameDbTypeMaxLengthLocaleCompareOptionsUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
Expand Down Expand Up @@ -966,7 +966,7 @@
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.
</summary>
<remarks>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</remarks>
</ctorNameDbTypeMaxLengthLocaleCompareOptionsUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
<ctorNameDbTypeDatabaseOwningSchemaObjectNameUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
Expand Down Expand Up @@ -1001,7 +1001,7 @@
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.
</summary>
<remarks>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</remarks>
</ctorNameDbTypeDatabaseOwningSchemaObjectNameUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
<ctorNameDbTypeMaxLengthPrecisionScaleLocaleCompareOptionsUserDefinedTypeUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
Expand Down Expand Up @@ -1045,7 +1045,7 @@
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.
</summary>
<remarks>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</remarks>
</ctorNameDbTypeMaxLengthPrecisionScaleLocaleCompareOptionsUserDefinedTypeUseServerDefaultIsUniqueKeyColumnSortOrderSortOrdinal>
<Adjust>
Expand Down Expand Up @@ -1505,7 +1505,7 @@
This property can only be set in one of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> constructors.
</para>
<para>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</para>
</remarks>
</IsUniqueKey>
Expand Down Expand Up @@ -1597,7 +1597,7 @@
This property can only be set in one of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> constructors.
</para>
<para>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</para>
</remarks>
</SortOrder>
Expand All @@ -1616,7 +1616,7 @@
This property can only be set in one of the <see cref="T:Microsoft.Data.SqlClient.Server.SqlMetaData" /> constructors.
</para>
<para>
For more information, see <see href="/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
For more information, see <see href="https://learn.microsoft.com/sql/connect/ado-net/sql/table-valued-parameters">Table-Valued Parameters</see>.
</para>
</remarks>
</SortOrdinal>
Expand Down
6 changes: 3 additions & 3 deletions doc/snippets/Microsoft.Data.SqlClient/SqlBatch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
<returns>A task representing the asynchronous operation.</returns>
<remarks>
<para>
For more information about asynchronous programming, see <see href="/dotnet/framework/data/adonet/asynchronous-programming">Asynchronous Programming</see>.
For more information about asynchronous programming, see <see href="https://learn.microsoft.com/sql/connect/ado-net/asynchronous-programming">Asynchronous Programming</see>.
</para>
<para>
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)" />.
Expand Down Expand Up @@ -365,7 +365,7 @@
<returns>A task representing the asynchronous operation.</returns>
<remarks>
<para>
For more information about asynchronous programming, see <see href="/dotnet/framework/data/adonet/asynchronous-programming">Asynchronous Programming</see>.
For more information about asynchronous programming, see <see href="https://learn.microsoft.com/sql/connect/ado-net/asynchronous-programming">Asynchronous Programming</see>.
</para>
<para>
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.
Expand All @@ -375,7 +375,7 @@
</note>
</remarks>
<exception cref="T:Microsoft.Data.SqlClient.SqlException">An error occurred while executing the batch.</exception>
<related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related>
<related type="Article" href="https://learn.microsoft.com/sql/connect/ado-net/overview-sqlclient-driver">Overview of the SqlClient driver</related>
<exception cref="T:System.OperationCanceledException">
The cancellation token was canceled. This exception is stored into the returned task.
</exception>
Expand Down
4 changes: 2 additions & 2 deletions doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommand.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
A collection of <see cref="T:Microsoft.Data.SqlClient.SqlParameter" /> objects is used to create the <see cref="T:Microsoft.Data.SqlClient.SqlParameterCollection" />.
</param>
<param name="columnEncryptionSetting">
The encryption setting. For more information, see <see href="/sql/relational-databases/security/encryption/always-encrypted-database-engine">Always Encrypted</see>.
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>.
</param>
</ctor2>
<Parameters>
Expand All @@ -93,7 +93,7 @@
<ColumnEncryptionSetting>
<summary>
Not currently implemented.
The encryption setting. For more information, see <see href="/sql/relational-databases/security/encryption/always-encrypted-database-engine">Always Encrypted</see>.
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>.
</summary>
</ColumnEncryptionSetting>
<CreateParameter>
Expand Down
Loading