| File: IWebHost.cs | Web Access |
| Project: src\aspnetcore\src\Hosting\Abstractions\src\Microsoft.AspNetCore.Hosting.Abstractions.csproj (Microsoft.AspNetCore.Hosting.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.Http.Features; using Microsoft.AspNetCore.Shared; namespace Microsoft.AspNetCore.Hosting; /// <summary> /// Represents a configured web host. /// </summary> [Obsolete("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = Obsoletions.AspNetCoreDeprecate008Url)] public interface IWebHost : IDisposable { /// <summary> /// The <see cref="IFeatureCollection"/> exposed by the configured server. /// </summary> IFeatureCollection ServerFeatures { get; } /// <summary> /// The <see cref="IServiceProvider"/> for the host. /// </summary> IServiceProvider Services { get; } /// <summary> /// Starts listening on the configured addresses. /// </summary> void Start(); /// <summary> /// Starts listening on the configured addresses. /// </summary> /// <param name="cancellationToken">Used to abort program start.</param> /// <returns>A <see cref="Task"/> that completes when the <see cref="IWebHost"/> starts.</returns> Task StartAsync(CancellationToken cancellationToken = default); /// <summary> /// Attempt to gracefully stop the host. /// </summary> /// <param name="cancellationToken">Used to indicate when stop should no longer be graceful.</param> /// <returns>A <see cref="Task"/> that completes when the <see cref="IWebHost"/> stops.</returns> Task StopAsync(CancellationToken cancellationToken = default); }