IntegratedPipelineExtensions.UseStageMarker Method (IAppBuilder, String)

Call after other middleware to specify when they should run in the integrated pipeline.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function UseStageMarker ( _
    app As IAppBuilder, _
    stageName As String _
) As IAppBuilder
'Usage
Dim app As IAppBuilder 
Dim stageName As String 
Dim returnValue As IAppBuilder 

returnValue = app.UseStageMarker(stageName)
public static IAppBuilder UseStageMarker(
    this IAppBuilder app,
    string stageName
)
[ExtensionAttribute]
public:
static IAppBuilder^ UseStageMarker(
    IAppBuilder^ app, 
    String^ stageName
)
static member UseStageMarker : 
        app:IAppBuilder * 
        stageName:string -> IAppBuilder
public static function UseStageMarker(
    app : IAppBuilder, 
    stageName : String
) : IAppBuilder

Parameters

  • app
    Type: IAppBuilder
    The IAppBuilder.
  • stageName
    Type: System.String
    The name of the integrated pipeline in which to run.

Return Value

Type: IAppBuilder
The original IAppBuilder for chaining.

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 b8020aae-374d-46a9-bcb7-8cc2390b93b6 or 175ce3ff-9bbf-4e64-8421-faeb81a0bb51.

See Also

Reference

IntegratedPipelineExtensions Class

UseStageMarker Overload

Microsoft.Owin.Extensions Namespace