AppBuilderExtensions.Build 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 ( _
    builder As IAppBuilder _
) As Func(Of IDictionary(Of String, Object), Task)
'Usage
Dim builder As IAppBuilder 
Dim returnValue As Func(Of IDictionary(Of String, Object), Task)

returnValue = builder.Build()
public static Func<IDictionary<string, Object>, Task> Build(
    this IAppBuilder builder
)
[ExtensionAttribute]
public:
static Func<IDictionary<String^, Object^>^, Task^>^ Build(
    IAppBuilder^ builder
)
static member Build : 
        builder:IAppBuilder -> Func<IDictionary<string, Object>, Task> 
public static function Build(
    builder : IAppBuilder
) : Func<IDictionary<String, Object>, Task>

Parameters

  • builder
    Type: IAppBuilder

Return Value

Type: System.Func<IDictionary<String, Object>, Task>
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