Skip to content

Commit efb52fc

Browse files
authored
Use full docs links for IntelliSense (dotnet#8045)
1 parent 85c7725 commit efb52fc

File tree

68 files changed

+457
-457
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+457
-457
lines changed

xml/Microsoft.Extensions.Configuration/ConfigurationExtensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@
276276
<Docs>
277277
<param name="configuration">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> to enumerate.</param>
278278
<param name="makePathsRelative">
279-
<see langword="true" /> to trim the the current configuration's Path from the child keys returned; otherwise, <see langword="false" />.</param>
279+
<see langword="true" /> to trim the current configuration's Path from the child keys returned; otherwise, <see langword="false" />.</param>
280280
<summary>Gets the enumeration of key-value pairs within the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" />.</summary>
281281
<returns>An enumeration of key-value pairs.</returns>
282282
<remarks>To be added.</remarks>

xml/Microsoft.Extensions.Configuration/ConfigurationManager.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
<Parameters />
184184
<Docs>
185185
<summary>Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken" /> that can be used to observe when this configuration is reloaded.</summary>
186-
<returns>A token that can be used to observe the the configuration is reloaded.</returns>
186+
<returns>A token that can be used to observe when the configuration is reloaded.</returns>
187187
<remarks>To be added.</remarks>
188188
</Docs>
189189
</Member>

xml/System.CodeDom/CodeNamespace.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
5050
The <xref:System.CodeDom.CodeNamespace.Name%2A> property specifies the name of the namespace. The <xref:System.CodeDom.CodeNamespace.Imports%2A> property contains the namespace import directives for the namespace. The <xref:System.CodeDom.CodeNamespace.Types%2A> property contains the type declarations for the namespace. The <xref:System.CodeDom.CodeNamespace.Comments%2A> property contains the comments that apply at the namespace level.
5151
52-
In some languages, a namespace can function as a container for type declarations; all types in the same namespace are accessible without using fully-qualified type references, if the there is no conflict between type names.
52+
In some languages, a namespace can function as a container for type declarations; all types in the same namespace are accessible without using fully-qualified type references, if there is no conflict between type names.
5353
5454
> [!NOTE]
55-
> Use fully qualified type references to avoid potential ambiguity.
55+
> Use fully qualified type references to avoid potential ambiguity.
5656
5757
5858

xml/System.Data.SqlClient/SqlError.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
</ReturnValue>
207207
<Docs>
208208
<summary>Gets the text describing the error.</summary>
209-
<value>The text describing the error. For more information on errors generated by SQL Server, see <see href="/sql/relational-databases/errors-events/database-engine-events-and-errors">Database Engine Events and Errors</see>.</value>
209+
<value>The text describing the error. For more information on errors generated by SQL Server, see <see href="https://docs.microsoft.com/sql/relational-databases/errors-events/database-engine-events-and-errors">Database Engine Events and Errors</see>.</value>
210210
<remarks>
211211
<format type="text/markdown"><![CDATA[
212212
@@ -320,7 +320,7 @@
320320
</ReturnValue>
321321
<Docs>
322322
<summary>Gets the name of the stored procedure or remote procedure call (RPC) that generated the error.</summary>
323-
<value>The name of the stored procedure or RPC. For more information on errors generated by SQL Server, see <see href="/sql/relational-databases/errors-events/database-engine-events-and-errors">Database Engine Events and Errors</see>.</value>
323+
<value>The name of the stored procedure or RPC. For more information on errors generated by SQL Server, see <see href="https://docs.microsoft.com/sql/relational-databases/errors-events/database-engine-events-and-errors">Database Engine Events and Errors</see>.</value>
324324
<remarks>
325325
<format type="text/markdown"><![CDATA[
326326

xml/System.Data.SqlClient/SqlException.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ catch (Exception ex) {
686686
<ReturnType>System.Byte</ReturnType>
687687
</ReturnValue>
688688
<Docs>
689-
<summary>Gets a numeric error code from SQL Server that represents an error, warning or "no data found" message. For more information about how to decode these values, see <see href="/sql/relational-databases/errors-events/database-engine-events-and-errors">Database Engine Events and Errors</see>.</summary>
689+
<summary>Gets a numeric error code from SQL Server that represents an error, warning or "no data found" message. For more information about how to decode these values, see <see href="https://docs.microsoft.com/sql/relational-databases/errors-events/database-engine-events-and-errors">Database Engine Events and Errors</see>.</summary>
690690
<value>The number representing the error code.</value>
691691
<remarks>
692692
<format type="text/markdown"><![CDATA[

xml/System.Data/MissingSchemaAction.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@
118118
</ReturnValue>
119119
<MemberValue>4</MemberValue>
120120
<Docs>
121-
<summary>Adds the necessary columns and primary key information to complete the schema. For more information about how primary key information is added to a <see cref="T:System.Data.DataTable" />, see <see cref="M:System.Data.IDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)" />.To function properly with the .NET Framework Data Provider for OLE DB, <see langword="AddWithKey" /> requires that the native OLE DB provider obtains necessary primary key information by setting the DBPROP_UNIQUEROWS property, and then determines which columns are primary key columns by examining DBCOLUMN_KEYCOLUMN in the IColumnsRowset. As an alternative, the user may explicitly set the primary key constraints on each <see cref="T:System.Data.DataTable" />. This ensures that incoming records that match existing records are updated instead of appended. When using <see langword="AddWithKey" />, the .NET Framework Data Provider for SQL Server appends a FOR BROWSE clause to the statement being executed. The user should be aware of potential side effects, such as interference with the use of SET FMTONLY ON statements. For more information, see <see href="/sql/t-sql/statements/set-fmtonly-transact-sql">SET FMTONLY (Transact-SQL)</see>.</summary>
121+
<summary><para>Adds the necessary columns and primary key information to complete the schema. For more information about how primary key information is added to a <see cref="T:System.Data.DataTable" />, see <see cref="M:System.Data.IDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)" />.</para>
122+
<para>To function properly with the .NET Framework Data Provider for OLE DB, <see langword="AddWithKey" /> requires that the native OLE DB provider obtains necessary primary key information by setting the DBPROP_UNIQUEROWS property, and then determines which columns are primary key columns by examining DBCOLUMN_KEYCOLUMN in the IColumnsRowset. As an alternative, the user may explicitly set the primary key constraints on each <see cref="T:System.Data.DataTable" />. This ensures that incoming records that match existing records are updated instead of appended. When using <see langword="AddWithKey" />, the .NET Framework Data Provider for SQL Server appends a FOR BROWSE clause to the statement being executed. The user should be aware of potential side effects, such as interference with the use of SET FMTONLY ON statements. For more information, see <see href="https://docs.microsoft.com/sql/t-sql/statements/set-fmtonly-transact-sql">SET FMTONLY (Transact-SQL)</see>.</para></summary>
122123
</Docs>
123124
</Member>
124125
<Member MemberName="Error">

xml/System.Diagnostics.Eventing.Reader/EventRecord.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@
10311031
</ReturnValue>
10321032
<Parameters />
10331033
<Docs>
1034-
<summary>Gets the XML representation of the event. All of the event properties are represented in the event XML. The XML conforms to the <see href="/windows/win32/wes/eventschema-schema">event schema</see>.</summary>
1034+
<summary>Gets the XML representation of the event. All of the event properties are represented in the event XML. The XML conforms to the <see href="https://docs.microsoft.com/windows/win32/wes/eventschema-schema">event schema</see>.</summary>
10351035
<returns>Returns a string that contains the XML representation of the event.</returns>
10361036
<remarks>To be added.</remarks>
10371037
<related type="Article" href="https://docs.microsoft.com/previous-versions/bb671205(v=vs.90)">Technology Summary for Reading and Managing Event Logs</related>

xml/System.Diagnostics.SymbolStore/SymDocument.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
<Parameter Name="pDocument" Type="ISymUnmanagedDocument*" Index="0" FrameworkAlternate="netframework-1.1" />
6565
</Parameters>
6666
<Docs>
67-
<param name="pDocument">A pointer to the <see href="/dotnet/framework/unmanaged-api/diagnostics/isymunmanageddocument-interface">ISymUnmanagedDocument</see> object.</param>
68-
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.SymbolStore.SymDocument" /> class using the specified pointer to an unmanaged <see href="/dotnet/framework/unmanaged-api/diagnostics/isymunmanageddocument-interface">ISymUnmanagedDocument</see> object.</summary>
67+
<param name="pDocument">A pointer to the <see href="https://docs.microsoft.com/dotnet/framework/unmanaged-api/diagnostics/isymunmanageddocument-interface">ISymUnmanagedDocument</see> object.</param>
68+
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.SymbolStore.SymDocument" /> class using the specified pointer to an unmanaged <see href="https://docs.microsoft.com/dotnet/framework/unmanaged-api/diagnostics/isymunmanageddocument-interface">ISymUnmanagedDocument</see> object.</summary>
6969
<remarks>
7070
<format type="text/markdown"><![CDATA[
7171
@@ -448,8 +448,8 @@ Use the <xref:System.Diagnostics.SymbolStore.SymDocument.Finalize> method to rel
448448
</ReturnValue>
449449
<Parameters />
450450
<Docs>
451-
<summary>Gets a pointer to the unmanaged <see href="/dotnet/framework/unmanaged-api/diagnostics/isymunmanageddocument-interface">ISymUnmanagedDocument</see> interface for this <see cref="T:System.Diagnostics.SymbolStore.SymDocument" /> instance.</summary>
452-
<returns>A pointer to the unmanaged <see href="/dotnet/framework/unmanaged-api/diagnostics/isymunmanageddocument-interface">ISymUnmanagedDocument</see> interface for this <see cref="T:System.Diagnostics.SymbolStore.SymDocument" />.</returns>
451+
<summary>Gets a pointer to the unmanaged <see href="https://docs.microsoft.com/dotnet/framework/unmanaged-api/diagnostics/isymunmanageddocument-interface">ISymUnmanagedDocument</see> interface for this <see cref="T:System.Diagnostics.SymbolStore.SymDocument" /> instance.</summary>
452+
<returns>A pointer to the unmanaged <see href="https://docs.microsoft.com/dotnet/framework/unmanaged-api/diagnostics/isymunmanageddocument-interface">ISymUnmanagedDocument</see> interface for this <see cref="T:System.Diagnostics.SymbolStore.SymDocument" />.</returns>
453453
<remarks>
454454
<format type="text/markdown"><![CDATA[
455455

xml/System.Diagnostics.SymbolStore/SymMethod.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<Parameter Name="pMethod" Type="ISymUnmanagedMethod*" Index="0" FrameworkAlternate="netframework-1.1" />
6363
</Parameters>
6464
<Docs>
65-
<param name="pMethod">A raw pointer to the unmanaged COM <see href="/dotnet/framework/unmanaged-api/diagnostics/isymunmanagedmethod-interface">ISymUnmanagedMethod</see> object.</param>
65+
<param name="pMethod">A raw pointer to the unmanaged COM <see href="https://docs.microsoft.com/dotnet/framework/unmanaged-api/diagnostics/isymunmanagedmethod-interface">ISymUnmanagedMethod</see> object.</param>
6666
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.SymbolStore.SymMethod" /> class from a raw pointer to an unmanaged interface.</summary>
6767
<remarks>
6868
<format type="text/markdown"><![CDATA[

xml/System.Diagnostics.Tracing/EventSource.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ The following example shows an implementation of <xref:System.Diagnostics.Tracin
852852
</Parameters>
853853
<Docs>
854854
<param name="eventSourceType">The type of the event source.</param>
855-
<param name="assemblyPathToIncludeInManifest">The path to the assembly file (.dll) to include in the <see href="/windows/win32/wes/eventmanifestschema-provider-eventstype-element">provider</see> element of the manifest.</param>
855+
<param name="assemblyPathToIncludeInManifest">The path to the assembly file (.dll) to include in the <see href="https://docs.microsoft.com/windows/win32/wes/eventmanifestschema-provider-eventstype-element">provider</see> element of the manifest.</param>
856856
<summary>Returns a string of the XML manifest that is associated with the current event source.</summary>
857857
<returns>The XML data string.</returns>
858858
<remarks>
@@ -912,7 +912,7 @@ The following example shows an implementation of <xref:System.Diagnostics.Tracin
912912
</Parameters>
913913
<Docs>
914914
<param name="eventSourceType">The type of the event source.</param>
915-
<param name="assemblyPathToIncludeInManifest">The path to the assembly file (.dll) file to include in the <see href="/windows/win32/wes/eventmanifestschema-provider-eventstype-element">provider</see> element of the manifest.</param>
915+
<param name="assemblyPathToIncludeInManifest">The path to the assembly file (.dll) file to include in the <see href="https://docs.microsoft.com/windows/win32/wes/eventmanifestschema-provider-eventstype-element">provider</see> element of the manifest.</param>
916916
<param name="flags">A bitwise combination of the enumeration values that specify how the manifest is generated.</param>
917917
<summary>Returns a string of the XML manifest that is associated with the current event source.</summary>
918918
<returns>The XML data string or <see langword="null" />.</returns>

0 commit comments

Comments
 (0)