Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 xml/System.Diagnostics.Tracing/EventCounter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

## Remarks

For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter> class, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter> class, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).

]]></format>
</remarks>
Expand Down Expand Up @@ -180,7 +180,7 @@ After being disposed, this counter will stop reporting values. If an <xref:Syste
<format type="text/markdown"><![CDATA[
## Remarks

For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter.WriteMetric(System.Single)> method, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter.WriteMetric(System.Single)> method, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).

]]></format>
</remarks>
Expand Down Expand Up @@ -224,7 +224,7 @@ After being disposed, this counter will stop reporting values. If an <xref:Syste
<format type="text/markdown"><![CDATA[
## Remarks

For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter.WriteMetric(System.Single)> method, see the [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md) topic.
For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter.WriteMetric(System.Single)> method, see the [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md) topic.

]]></format>
</remarks>
Expand Down
6 changes: 3 additions & 3 deletions xml/System.Diagnostics/Activity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ Normally if the <xref:System.Diagnostics.Activity.ParentId> is defined, its form

## Remarks

An ID has a hierarchical structure: `root-id.id1_id2.id3_`. The ID is generated when <xref:System.Diagnostics.Activity.Start> is called by appending a suffix to the `Activity.Parent.Id` or the <xref:System.Diagnostics.Activity.ParentId>. An <xref:System.Diagnostics.Activity> has no ID until it starts. For more information, see [Id Format](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
An ID has a hierarchical structure: `root-id.id1_id2.id3_`. The ID is generated when <xref:System.Diagnostics.Activity.Start> is called by appending a suffix to the `Activity.Parent.Id` or the <xref:System.Diagnostics.Activity.ParentId>. An <xref:System.Diagnostics.Activity> has no ID until it starts. For more information, see [Id Format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).

]]></format>
</remarks>
Expand Down Expand Up @@ -492,7 +492,7 @@ An operation name is the *coarsest* name that is useful for grouping/filtering.

If the parent for this <xref:System.Diagnostics.Activity> comes from outside the process, the <xref:System.Diagnostics.Activity> does not have a parent but *may* have a parent ID (which was deserialized from the parent).

This property value can be `null` if this is a root <xref:System.Diagnostics.Activity> (that is, it has no <xref:System.Diagnostics.Activity.Parent>). For more information, see [ID format](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
This property value can be `null` if this is a root <xref:System.Diagnostics.Activity> (that is, it has no <xref:System.Diagnostics.Activity.Parent>). For more information, see [ID format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).

]]></format>
</remarks>
Expand Down Expand Up @@ -576,7 +576,7 @@ If the <xref:System.Diagnostics.Activity.ParentId?displayProperty=nameWithType>

## Remarks

The root ID is a substring from the <xref:System.Diagnostics.Activity.Id> or the <xref:System.Diagnostics.Activity.ParentId>) between '|' (or the beginning) and the first `.`. Filtering by root ID allows you to find all activities involved in operation processing. For more information, see [ID Format](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
The root ID is a substring from the <xref:System.Diagnostics.Activity.Id> or the <xref:System.Diagnostics.Activity.ParentId>) between '|' (or the beginning) and the first `.`. Filtering by root ID allows you to find all activities involved in operation processing. For more information, see [ID Format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).

]]></format>
</remarks>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Diagnostics/DiagnosticListener.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
`DiagnosticListener` is a NotificationSource, which means the returned result can be used to log notifications, but it also has a <xref:System.Diagnostics.DiagnosticListener.Subscribe%2A> method so notifications can be forwarded arbitrarily. Thus, its job is to forward things from the producer to all the listeners (multi-casting). Generally, you should not be making your own <xref:System.Diagnostics.DiagnosticListener> but use the default, so that notifications are as public as possible.
For more information on the <xref:System.Diagnostics.DiagnosticSource> and <xref:System.Diagnostics.DiagnosticListener> classes, see [DiagnosticSource User's Guide](https://github.com/dotnet/corefx/blob/d3942d4671919edb0cca6ddc1840190f524a809d/src/System.Diagnostics.DiagnosticSource/src/DiagnosticSourceUsersGuide.md).
For more information on the <xref:System.Diagnostics.DiagnosticSource> and <xref:System.Diagnostics.DiagnosticListener> classes, see [DiagnosticSource User's Guide](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md).
]]></format>
</remarks>
Expand Down
14 changes: 7 additions & 7 deletions xml/System.Reflection.Metadata.Ecma335/MetadataBuilder.xml
Original file line number Diff line number Diff line change
Expand Up @@ -360,11 +360,11 @@ Entries may be added in any order. The table is automatically sorted when serial

## Remarks

For more information about `name`, see <https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-name-blob>.
For more information about `name`, see <https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-name-blob>.

For more information about common values for `hashAlgorithm`, see <https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30>.
For more information about common values for `hashAlgorithm`, see <https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30>.

For more information about common values for `language`, see <https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30>.
For more information about common values for `language`, see <https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30>.

]]></format>
</remarks>
Expand Down Expand Up @@ -755,7 +755,7 @@ Constraints must be added in the same order as the corresponding generic paramet

## Remarks

For more information about `imports`, see <https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#imports-blob>.
For more information about `imports`, see <https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#imports-blob>.

]]></format>
</remarks>
Expand Down Expand Up @@ -835,7 +835,7 @@ If a type implements multiple interfaces, the corresponding entries must be adde

## Remarks

For more information about `signature`, see: [LocalConstantSig Blob](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstantsig-blob) on GitHub.
For more information about `signature`, see: [LocalConstantSig Blob](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstantsig-blob) on GitHub.

]]></format>
</remarks>
Expand Down Expand Up @@ -1062,7 +1062,7 @@ Entries may be added in any order. The table is automatically sorted when serial

## Remarks

For more information about `sequencePoints`, see: [Sequence Points Blob](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#sequence-points-blob) on GitHub.
For more information about `sequencePoints`, see: [Sequence Points Blob](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#sequence-points-blob) on GitHub.

]]></format>
</remarks>
Expand Down Expand Up @@ -1876,7 +1876,7 @@ Entires must be added in the same order as the corresponding type definitions.

## Remarks

For more information about document name blobs, see: https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#DocumentNameBlob
For more information about document name blobs, see: https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#DocumentNameBlob

]]></format>
</remarks>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Reflection.Metadata/Document.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

## Remarks

For more information, see [Portable PDB v1.0: Format Specification](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30).
For more information, see [Portable PDB v1.0: Format Specification](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30).

]]></format>
</remarks>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Reflection.Metadata/ImportScope.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

## Remarks

See [ImportScope Table" 0x35](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#importscope-table-0x35) for more information.
See [ImportScope Table" 0x35](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#importscope-table-0x35) for more information.

]]></format>
</remarks>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Reflection.Metadata/LocalConstant.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

## Remarks

See [LocalConstant Table: 0x34](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstant-table-0x34).
See [LocalConstant Table: 0x34](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstant-table-0x34).

]]></format>
</remarks>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Reflection.Metadata/LocalScope.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

## Remarks

See [LocalScope Table: 0x32](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localscope-table-0x32).
See [LocalScope Table: 0x32](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localscope-table-0x32).

]]></format>
</remarks>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Reflection.Metadata/LocalVariable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

## Remarks

See [LocalVariable Table: 0x33](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localvariable-table-0x33) for more information.
See [LocalVariable Table: 0x33](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localvariable-table-0x33) for more information.

]]></format>
</remarks>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Reflection.Metadata/MethodDebugInformation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

## Remarks

See [MethodDebugInformation Table: 0x31](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#methoddebuginformation-table-0x31).
See [MethodDebugInformation Table: 0x31](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#methoddebuginformation-table-0x31).

]]></format>
</remarks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ See the following for the specifications related to individual enumeration membe

|Member|Specification|
|---|---|
|`CodeView`|[CodeView Debug Directory Entry (type 2)](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#codeview-debug-directory-entry-type-2)|
|`EmbeddedPortablePdb`|[Embedded Portale PDB Debu Directory Entry (type 17)](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#embedded-portable-pdb-debug-directory-entry-type-17)|
|`PdbChecksum`|[PDB Checksum Debug Directory Entry (type 19)](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#pdb-checksum-debug-directory-entry-type-19)|
|`Reproducible`|See [Deterministic Debug Directory Entry (type 16)](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#deterministic-debug-directory-entry-type-16)|
|`CodeView`|[CodeView Debug Directory Entry (type 2)](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#codeview-debug-directory-entry-type-2)|
|`EmbeddedPortablePdb`|[Embedded Portale PDB Debu Directory Entry (type 17)](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#embedded-portable-pdb-debug-directory-entry-type-17)|
|`PdbChecksum`|[PDB Checksum Debug Directory Entry (type 19)](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#pdb-checksum-debug-directory-entry-type-19)|
|`Reproducible`|See [Deterministic Debug Directory Entry (type 16)](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#deterministic-debug-directory-entry-type-16)|

### DebugDirectoryEntryType.Reproducible

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

## Remarks

For more information, see: https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#pdb-checksum-debug-directory-entry-type-19
For more information, see: https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#pdb-checksum-debug-directory-entry-type-19

]]></format>
</remarks>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Text.Encodings.Web/HtmlEncoder.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web/tests) folder on GitHub.
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web/tests) folder on GitHub.
]]></format>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Text.Encodings.Web/JavaScriptEncoder.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web/tests) folder on GitHub.
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web/tests) folder on GitHub.
]]></format>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Text.Encodings.Web/TextEncoder.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
## Remarks
TextEncoder subclasses can be used to do HTML encoding, URI encoding, and JavaScript encoding. Instances of such subclasses can be accessed using the <xref:System.Text.Encodings.Web.HtmlEncoder.Default?displayProperty=nameWithType>, <xref:System.Text.Encodings.Web.UrlEncoder.Default?displayProperty=nameWithType>, and <xref:System.Text.Encodings.Web.JavaScriptEncoder.Default?displayProperty=nameWithType> properties.

The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web/tests) folder on GitHub.
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web/tests) folder on GitHub.
]]></format>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Text.Encodings.Web/TextEncoderSettings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web/tests) folder on GitHub.
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web/tests) folder on GitHub.
]]></format>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Text.Encodings.Web/UrlEncoder.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web/tests) folder on GitHub.
The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web/tests) folder on GitHub.
]]></format>
</remarks>
</Docs>
Expand Down