Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</Parameters>
<Docs>
<param name="host">The <see cref="T:Microsoft.Extensions.Hosting.IHost" /> to run.</param>
<summary>Runs an application and blocks the calling thread until host shutdown.</summary>
<summary>Runs an application and blocks the calling thread until host shutdown is triggered and all <see cref="T:Microsoft.Extensions.Hosting.IHostedService" /> instances are stopped.</summary>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The issue you linked is for RunAsync not Run. Let's only update the doc over RunAsync.

Do you have a code repro showing the same holds true for Run?

cc @eerhardt

Copy link
Contributor Author

@pedrobsaila pedrobsaila Apr 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -87,7 +87,7 @@
<Docs>
<param name="host">The <see cref="T:Microsoft.Extensions.Hosting.IHost" /> to run.</param>
<param name="token">The token to trigger shutdown.</param>
<summary>Runs an application and returns a Task that only completes when the token is triggered or shutdown is triggered.</summary>
<summary>Runs an application and returns a Task that only completes when the token is triggered or shutdown is triggered and all <see cref="T:Microsoft.Extensions.Hosting.IHostedService" /> instances are stopped.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
Expand Down