AppBuilderExtensions.Build<TApp> Method (IAppBuilder)

The Build is called at the point when all of the middleware should be chained together. May be called to build pipeline branches.

Namespace:  Microsoft.Owin.Builder
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Build(Of TApp) ( _
    builder As IAppBuilder _
) As TApp
'Usage
Dim builder As IAppBuilder 
Dim returnValue As TApp

returnValue = builder.Build()
public static TApp Build<TApp>(
    this IAppBuilder builder
)
[ExtensionAttribute]
public:
generic<typename TApp>
static TApp Build(
    IAppBuilder^ builder
)
static member Build : 
        builder:IAppBuilder -> 'TApp 
JScript does not support generic types and methods.

Type Parameters

  • TApp
    The application signature.

Parameters

  • builder
    Type: IAppBuilder

Return Value

Type: TApp
The request processing entry point for this section of the pipeline.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IAppBuilder. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.111) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.111).

See Also

Reference

AppBuilderExtensions Class

Build Overload

Microsoft.Owin.Builder Namespace