IServer 接口

定义

表示服务器。

public interface class IServer : IDisposable
public interface IServer : IDisposable
type IServer = interface
    interface IDisposable
Public Interface IServer
Implements IDisposable
派生
实现

属性

Features

服务器的 HTTP 功能的集合。

方法

Start<TContext>(IHttpApplication<TContext>)

使用应用程序启动服务器。

StartAsync<TContext>(IHttpApplication<TContext>, CancellationToken)

使用应用程序启动服务器。

StopAsync(CancellationToken)

如果可能,请停止处理请求并正常关闭服务器。

适用于