TestServer.Configure Method
Namespace: Microsoft.Owin.Testing
Assembly: Microsoft.Owin.Testing (in Microsoft.Owin.Testing.dll)
Overload List
Name | Description | |
---|---|---|
![]() |
Configure(Action<IAppBuilder>) | Configures the OWIN pipeline. |
![]() |
Configure(Action<IAppBuilder>, StartOptions) | Configures the OWIN pipeline. |
![]() |
Configure<TStartup>() | Configures the OWIN pipeline. |
![]() |
Configure<TStartup>(StartOptions) | Configures the OWIN pipeline. |
See Also
TestServer Class
Microsoft.Owin.Testing Namespace
Return to top
TestServer.Configure Method (Action<IAppBuilder>)
Configures the OWIN pipeline.
Syntax
protected void Configure(
Action<IAppBuilder> startup
)
protected:
void Configure(
Action<IAppBuilder^>^ startup
)
member Configure :
startup:Action<IAppBuilder> -> unit
Protected Sub Configure (
startup As Action(Of IAppBuilder)
)
Parameters
startup
Type: System.Action<IAppBuilder>Startup function used to configure the OWIN pipeline.
Return to top
TestServer.Configure Method (Action<IAppBuilder>, StartOptions)
Configures the OWIN pipeline.
Syntax
protected void Configure(
Action<IAppBuilder> startup,
StartOptions options
)
protected:
void Configure(
Action<IAppBuilder^>^ startup,
StartOptions^ options
)
member Configure :
startup:Action<IAppBuilder> *
options:StartOptions -> unit
Protected Sub Configure (
startup As Action(Of IAppBuilder),
options As StartOptions
)
Parameters
startup
Type: System.Action<IAppBuilder>Startup function used to configure the OWIN pipeline.
options
Type: Microsoft.Owin.Hosting.StartOptionsSettings to control the startup behavior of an OWIN application
Return to top
TestServer.Configure<TStartup> Method ()
Configures the OWIN pipeline.
Syntax
protected void Configure<TStartup>()
protected:
generic<typename TStartup>
void Configure()
member Configure<'TStartup> : unit -> unit
Protected Sub Configure(Of TStartup)
Type Parameters
- TStartup
Class containing a startup function used to configure the OWIN pipeline.
Return to top
TestServer.Configure<TStartup> Method (StartOptions)
Configures the OWIN pipeline.
Syntax
protected void Configure<TStartup>(
StartOptions options
)
protected:
generic<typename TStartup>
void Configure(
StartOptions^ options
)
member Configure<'TStartup> :
options:StartOptions -> unit
Protected Sub Configure(Of TStartup) (
options As StartOptions
)
Parameters
options
Type: Microsoft.Owin.Hosting.StartOptionsSettings to control the startup behavior of an OWIN application.
Type Parameters
- TStartup
Class containing a startup function used to configure the OWIN pipeline.
Return to top