8000 Add Missing System.Diagnostics docs by tarekgh · Pull Request #4856 · dotnet/dotnet-api-docs · GitHub
[go: up one dir, main page]

Skip to content

Add Missing System.Diagnostics docs #4856

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

Merged
merged 2 commits into from
Sep 15, 2020
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
8000
10 changes: 5 additions & 5 deletions xml/System.Diagnostics/ActivityCreationOptions`1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ The possible generic type parameters are <see cref="T:System.Diagnostics.Activit
<ReturnType>System.Diagnostics.ActivityTagsCollection</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>Gets the collection that is used to add more tags during the sampling process. The added tags are also added to the created Activity if it is decided that it should be created by the <see cref="T:System.Diagnostics.ActivityListener" /> callbacks.</summary>
<value>The Activity tags collection.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -187,9 +187,9 @@ The possible generic type parameters are <see cref="T:System.Diagnostics.Activit
<ReturnType>System.Diagnostics.ActivityTraceId</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<summary>Gets the trace Id to use in the Activity object if it is decided that it should be created by <see cref="T:System.Diagnostics.ActivityListener" /> callbacks.</summary>
<value>The trace Id.</value>
<remarks>If the parent is an <see cref="T:System.Diagnostics.ActivityContext" /> and not equal to the <see langword="default" /> value, then the trace Id inside the parent will be the value returned from this property. If it is equal to the <see langword="default" /> value, a new trace Id will get generated and returned from this property.</remarks>
</Docs>
</Member>
</Members>
Expand Down
8 changes: 4 additions & 4 deletions xml/System.Diagnostics/SampleActivity`1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
<ReturnType>System.Diagnostics.ActivitySamplingResult</ReturnType>
</ReturnValue>
<Docs>
<typeparam name="T">To be added.</typeparam>
<param name="options">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<typeparam name="T">The type of the requested parent to create the Activity object with. Should be either a string or an <see cref="T:System.Diagnostics.ActivityContext" /> instance.</typeparam>
<param name="options">The Activity creation options used by <see cref="T:System.Diagnostics.ActivityListener" /> callbacks to decide creating the Activity object or not.</param>
<summary>A delegate that defines the signature of the <see cref="T:System.Diagnostics.ActivityListener" /> callbacks used in the sampling process.</summary>
<returns>An object containing the sampling results, which indicate the amount of data to collect for the related <see cref="T:System.Diagnostics.Activity" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Type>
0