IServer.Start<TContext>(IHttpApplication<TContext>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Start the server with an application.
public:
generic <typename TContext>
void Start(Microsoft::AspNetCore::Hosting::Server::IHttpApplication<TContext> ^ application);
public void Start<TContext> (Microsoft.AspNetCore.Hosting.Server.IHttpApplication<TContext> application);
abstract member Start : Microsoft.AspNetCore.Hosting.Server.IHttpApplication<'Context> -> unit
Public Sub Start(Of TContext) (application As IHttpApplication(Of TContext))
Type Parameters
- TContext
The context associated with the application.
Parameters
- application
- IHttpApplication<TContext>
An instance of IHttpApplication<TContext>.