Skip to content

Commit

Permalink
Fix see crefs (dotnet#107996)
Browse files Browse the repository at this point in the history
  • Loading branch information
gewarren authored Sep 18, 2024
1 parent 59a096e commit 8d2b266
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ namespace Microsoft.Extensions.Hosting
public interface IHost : IDisposable
{
/// <summary>
/// Gets the services configured for the program (for example, using <see cref="M:HostBuilder.ConfigureServices(Action&lt;HostBuilderContext,IServiceCollection&gt;)" />).
/// Gets the services configured for the program (for example, using <see cref="M:HostBuilder.ConfigureServices(Action{HostBuilderContext,IServiceCollection})" />).
/// </summary>
IServiceProvider Services { get; }

/// <summary>
/// Starts the <see cref="IHostedService" /> objects configured for the program.
/// The application will run until interrupted or until <see cref="M:IHostApplicationLifetime.StopApplication()" /> is called.
/// The application will run until interrupted or until <see cref="M:IHostApplicationLifetime.StopApplication" /> is called.
/// </summary>
/// <param name="cancellationToken">Used to abort program start.</param>
/// <returns>A <see cref="Task"/> that will be completed when the <see cref="IHost"/> starts.</returns>
Expand Down

0 comments on commit 8d2b266

Please sign in to comment.