IntegratedPipelineExtensions.UseStageMarker Method

 

Uses a stage marker for the IntegratedPipelineExtensions.

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

Overload List

Name Description
System_CAPS_pubmethodSystem_CAPS_static UseStageMarker(IAppBuilder, PipelineStage)

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

System_CAPS_pubmethodSystem_CAPS_static UseStageMarker(IAppBuilder, String)

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

See Also

IntegratedPipelineExtensions Class
Microsoft.Owin.Extensions Namespace

Return to top

IntegratedPipelineExtensions.UseStageMarker Method (IAppBuilder, PipelineStage)

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

Syntax

public static IAppBuilder UseStageMarker(
    this IAppBuilder app,
    PipelineStage stage
)
public:
[ExtensionAttribute]
static IAppBuilder^ UseStageMarker(
    IAppBuilder^ app,
    PipelineStage stage
)
static member UseStageMarker : 
        app:IAppBuilder *
        stage:PipelineStage -> IAppBuilder
<ExtensionAttribute>
Public Shared Function UseStageMarker (
    app As IAppBuilder,
    stage As PipelineStage
) As IAppBuilder

Parameters

  • app
    Type: Owin.IAppBuilder

    The IAppBuilder.

Return Value

Type: Owin.IAppBuilder

The original IAppBuilder for chaining.

Return to top

IntegratedPipelineExtensions.UseStageMarker Method (IAppBuilder, String)

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

Syntax

public static IAppBuilder UseStageMarker(
    this IAppBuilder app,
    string stageName
)
public:
[ExtensionAttribute]
static IAppBuilder^ UseStageMarker(
    IAppBuilder^ app,
    String^ stageName
)
static member UseStageMarker : 
        app:IAppBuilder *
        stageName:string -> IAppBuilder
<ExtensionAttribute>
Public Shared Function UseStageMarker (
    app As IAppBuilder,
    stageName As String
) As IAppBuilder

Parameters

  • app
    Type: Owin.IAppBuilder

    The IAppBuilder.

  • stageName
    Type: System.String

    The name of the integrated pipeline in which to run.

Return Value

Type: Owin.IAppBuilder

The original IAppBuilder for chaining.

Return to top