Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Fix links
  • Loading branch information
ChrisMaddock committed Nov 5, 2018
commit 48ed9687612acda8e966e1801b5e2ab281645e5b
2 changes: 1 addition & 1 deletion xml/Microsoft.Build.BuildEngine/Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@
<Docs>
<param name="itemName">The name of the specified item collection.</param>
<summary>Returns all items belonging to the specified item collection.</summary>
<returns>A <see cref="T:Microsoft.Build.BuildEngine.BuildItemGroup" /> containing all items belonging to the specified item collection, even those not used in the build process because a [Condition](http://msdn.microsoft.com/library/9d7aa308-b667-48ed-b4c9-a61e49eb0a85) attribute evaluated to <see langword="false" />.</returns>
<returns>A <see cref="T:Microsoft.Build.BuildEngine.BuildItemGroup" /> containing all items belonging to the specified item collection, even those not used in the build process because a <see href="https://docs.microsoft.com/visualstudio/msbuild/msbuild-conditions">Condition</see> attribute evaluated to <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.VisualBasic.CompilerServices/ObjectType.xml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
<param name="obj1">Required. Any <see langword="Boolean" /> or numeric expression.</param>
<param name="obj2">Required. Any <see langword="Boolean" /> or numeric expression.</param>
<summary>Performs an <see langword="Xor" /> operation.</summary>
<returns>A numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see [Xor Operator](~/docs/visual-basic/language-reference/operators/xor-operator.md).</returns>
<returns>A numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see <see href="https://docs.microsoft.com/dotnet/visual-basic/language-reference/operators/xor-operator">Xor Operator</see>.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -849,7 +849,7 @@
<param name="obj1">Required. Any <see langword="Boolean" /> or numeric expression.</param>
<param name="obj2">Required. Any <see langword="Boolean" /> or numeric expression.</param>
<summary>Performs an <see langword="Xor" /> comparison.</summary>
<returns>A <see langword="Boolean" /> or numeric value. For a <see langword="Boolean" /> comparison, the return value is the logical exclusion (exclusive logical disjunction) of two <see langword="Boolean" /> values. For bitwise (numeric) operations, the return value is a numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see [Xor Operator](~/docs/visual-basic/language-reference/operators/xor-operator.md).</returns>
<returns>A <see langword="Boolean" /> or numeric value. For a <see langword="Boolean" /> comparison, the return value is the logical exclusion (exclusive logical disjunction) of two <see langword="Boolean" /> values. For bitwise (numeric) operations, the return value is a numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see <see href="https://docs.microsoft.com/dotnet/visual-basic/language-reference/operators/xor-operator">Xor Operator</see>.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down
2 changes: 1 addition & 1 deletion xml/Microsoft.VisualBasic.CompilerServices/Operators.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@
<param name="Left">Required. Any <see langword="Boolean" /> or numeric expression.</param>
<param name="Right">Required. Any <see langword="Boolean" /> or numeric expression.</param>
<summary>Represents the Visual Basic <see langword="Xor" /> operator.</summary>
<returns>A <see langword="Boolean" /> or numeric value. For a <see langword="Boolean" /> comparison, the return value is the logical exclusion (exclusive logical disjunction) of two <see langword="Boolean" /> values. For bitwise (numeric) operations, the return value is a numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see [Xor Operator](~/docs/visual-basic/language-reference/operators/xor-operator.md).</returns>
<returns>A <see langword="Boolean" /> or numeric value. For a <see langword="Boolean" /> comparison, the return value is the logical exclusion (exclusive logical disjunction) of two <see langword="Boolean" /> values. For bitwise (numeric) operations, the return value is a numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see <see href="https://docs.microsoft.com/dotnet/visual-basic/language-reference/operators/xor-operator">Xor Operator</see>.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down
26 changes: 13 additions & 13 deletions xml/System.Data.Objects/ObjectQuery`1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
<Parameters />
<Docs>
<summary>Limits the query to unique results.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [SELECT DISTINCT](~/docs/framework/data/adonet/ef/language-reference/select-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/select-entity-sql">SELECT DISTINCT</see> applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -226,7 +226,7 @@
<Docs>
<param name="query">An <see cref="T:System.Data.Objects.ObjectQuery`1" /> that represents the results to exclude from the query.</param>
<summary>Limits the query results by excluding results based on the results of another object query.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [EXCEPT](~/docs/framework/data/adonet/ef/language-reference/except-entity-sql.md) applied based on the specified <paramref name="query" />.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/except-entity-sql">EXCEPT</see> applied based on the specified <paramref name="query" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -324,7 +324,7 @@
<param name="projection">The list of selected properties that defines the projection.</param>
<param name="parameters">Zero or more parameters that are used in this method.</param>
<summary>Groups the query results by the specified criteria.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance of type <see cref="T:System.Data.Common.DbDataRecord" /> that is equivalent to the original instance with [GROUP BY](~/docs/framework/data/adonet/ef/language-reference/group-by-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance of type <see cref="T:System.Data.Common.DbDataRecord" /> that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/group-by-entity-sql">GROUP BY</see> applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -431,7 +431,7 @@
<Docs>
<param name="query">An <see cref="T:System.Data.Objects.ObjectQuery`1" /> that represents the results to include in the query.</param>
<summary>Limits the query results by including only the results that exist in another object query.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [INTERSECT](~/docs/framework/data/adonet/ef/language-reference/intersect-entity-sql.md) applied based on the specified <paramref name="query" />.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/intersect-entity-sql">INTERSECT</see> applied based on the specified <paramref name="query" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -527,7 +527,7 @@
<Docs>
<typeparam name="TResultType">The type of the <see cref="T:System.Data.Objects.ObjectResult`1" /> returned when the query is executed with the applied filter.</typeparam>
<summary>Limits the query to only results of a specific type.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [OFTYPE](~/docs/framework/data/adonet/ef/language-reference/oftype-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/oftype-entity-sql">OFTYPE</see> applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -573,7 +573,7 @@ The <xref:System.Data.Objects.ObjectQuery`1.OfType*> method can only be applied
<param name="keys">The key columns by which to order the results.</param>
<param name="parameters">Zero or more parameters that are used in this method.</param>
<summary>Orders the query results by the specified criteria.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [ORDER BY](~/docs/framework/data/adonet/ef/language-reference/order-by-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/order-by-entity-sql">ORDER BY</see> applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -627,7 +627,7 @@ The <xref:System.Data.Objects.ObjectQuery`1.OfType*> method can only be applied
<param name="projection">The list of selected properties that defines the projection.</param>
<param name="parameters">Zero or more parameters that are used in this method.</param>
<summary>Limits the query results to only the properties that are defined in the specified projection.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance of type <see cref="T:System.Data.Common.DbDataRecord" /> that is equivalent to the original instance with [SELECT](~/docs/framework/data/adonet/ef/language-reference/select-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance of type <see cref="T:System.Data.Common.DbDataRecord" /> that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/select-entity-sql">SELECT</see> applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -690,7 +690,7 @@ The <xref:System.Data.Objects.ObjectQuery`1.OfType*> method can only be applied
<param name="projection">The projection list.</param>
<param name="parameters">An optional set of query parameters that should be in scope when parsing.</param>
<summary>Limits the query results to only the property specified in the projection.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance of a type compatible with the specific projection. The returned <see cref="T:System.Data.Objects.ObjectQuery`1" /> is equivalent to the original instance with [SELECT VALUE](~/docs/framework/data/adonet/ef/language-reference/select-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance of a type compatible with the specific projection. The returned <see cref="T:System.Data.Objects.ObjectQuery`1" /> is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/select-entity-sql">SELECT VALUE</see> applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -751,7 +751,7 @@ The <xref:System.Data.Objects.ObjectQuery`1.OfType*> method can only be applied
<param name="count">The number of results to skip. This must be either a constant or a parameter reference.</param>
<param name="parameters">An optional set of query parameters that should be in scope when parsing.</param>
<summary>Orders the query results by the specified criteria and skips a specified number of results.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with both [ORDER BY](~/docs/framework/data/adonet/ef/language-reference/order-by-entity-sql.md) and [SKIP](~/docs/framework/data/adonet/ef/language-reference/skip-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with both <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/order-by-entity-sql">ORDER BY</see> and [SKIP](~/docs/framework/data/adonet/ef/language-reference/skip-entity-sql.md) applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -841,7 +841,7 @@ The <xref:System.Data.Objects.ObjectQuery`1.OfType*> method can only be applied
<param name="count">The number of items in the results as a string.</param>
<param name="parameters">An optional set of query parameters that should be in scope when parsing.</param>
<summary>Limits the query results to a specified number of items.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [TOP](~/docs/framework/data/adonet/ef/language-reference/top-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/top-entity-sql">TOP</see> applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -896,7 +896,7 @@ The <xref:System.Data.Objects.ObjectQuery`1.OfType*> method can only be applied
<Docs>
<param name="query">An <see cref="T:System.Data.Objects.ObjectQuery`1" /> that represents the results to add.</param>
<summary>Combines the results of the query with the results of another object query, without any duplicates.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [UNION](~/docs/framework/data/adonet/ef/language-reference/union-entity-sql.md) applied to add the results of the specified <paramref name="query" />.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/union-entity-sql">UNION</see> applied to add the results of the specified <paramref name="query" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -957,7 +957,7 @@ ObjectQuery <DiscontinuedProduct>.Union(ObjectQuery<Product>)
<Docs>
<param name="query">An <see cref="T:System.Data.Objects.ObjectQuery`1" /> that represents the results to add.</param>
<summary>Combines the results of the query with the results of another object query, including all duplicates.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [UNION ALL](~/docs/framework/data/adonet/ef/language-reference/union-entity-sql.md) applied to add the results of the specified <paramref name="query" />.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/union-entity-sql">UNION ALL</see> applied to add the results of the specified <paramref name="query" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -1026,7 +1026,7 @@ ObjectQuery <DiscontinuedProduct>.Union(ObjectQuery<Product>)
<param name="predicate">The filter predicate.</param>
<param name="parameters">Zero or more parameters that are used in this method.</param>
<summary>Limits the query to results that match specified filtering criteria.</summary>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with [WHERE](~/docs/framework/data/adonet/ef/language-reference/where-entity-sql.md) applied.</returns>
<returns>A new <see cref="T:System.Data.Objects.ObjectQuery`1" /> instance that is equivalent to the original instance with <see href="https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/where-entity-sql">WHERE</see> applied.</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down
2 changes: 1 addition & 1 deletion xml/System.Data.OleDb/OleDbDataReader.xml
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@
<Docs>
<param name="index">The zero-based column ordinal.</param>
<summary>Gets the name of the source data type.</summary>
<returns>The name of the back-end data type. For more information, see [SQL Server data types](http://go.microsoft.com/fwlink/?LinkId=198032) or [Access data types](http://go.microsoft.com/fwlink/?LinkId=198033).</returns>
<returns>The name of the back-end data type. For more information, see <see href="https://docs.microsoft.com/sql/t-sql/data-types/data-types-transact-sql">SQL Server data types</see> or <see href="https://docs.microsoft.com/sql/odbc/microsoft/microsoft-access-data-types">Access data types</see>.</returns>
<remarks>To be added.</remarks>
<related type="Article" href="~/docs/framework/data/adonet/dataadapters-and-datareaders.md">DataAdapters and DataReaders</related>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Diagnostics/Debugger.xml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ Console.WriteLine("Hello, world.");
<Docs>
<summary>Checks to see if logging is enabled by an attached debugger.</summary>
<returns>
<see langword="true" /> if a debugger is attached and logging is enabled; otherwise, <see langword="false" />. The attached debugger is the registered managed debugger in the <see langword="DbgManagedDebugger" /> registry key. For more information on this key, see [Enabling JIT-Attach Debugging](~/docs/framework/debug-trace-profile/enabling-jit-attach-debugging.md).</returns>
<see langword="true" /> if a debugger is attached and logging is enabled; otherwise, <see langword="false" />. The attached debugger is the registered managed debugger in the <see langword="DbgManagedDebugger" /> registry key. For more information on this key, see <see href="https://docs.microsoft.com/dotnet/framework/debug-trace-profile/enabling-jit-attach-debugging">Enabling JIT-Attach Debugging</see>.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down
Loading