UseHandlerMiddleware Class

Represents a middleware for executing in-line function middleware.

Inheritance Hierarchy

System.Object
  Microsoft.Owin.OwinMiddleware
    Microsoft.Owin.Extensions.UseHandlerMiddleware

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

Syntax

'Declaration
Public Class UseHandlerMiddleware _
    Inherits OwinMiddleware
'Usage
Dim instance As UseHandlerMiddleware
public class UseHandlerMiddleware : OwinMiddleware
public ref class UseHandlerMiddleware : public OwinMiddleware
type UseHandlerMiddleware =  
    class 
        inherit OwinMiddleware 
    end
public class UseHandlerMiddleware extends OwinMiddleware

The UseHandlerMiddleware type exposes the following members.

Constructors

  Name Description
Public method UseHandlerMiddleware(OwinMiddleware, Func<IOwinContext, Task>) Initializes a new instance of the UseHandlerMiddleware class.
Public method UseHandlerMiddleware(OwinMiddleware, Func<IOwinContext, Func<Task>, Task>) Initializes a new instance of the UseHandlerMiddleware class.

Top

Properties

  Name Description
Protected property Next Advances to the next OwinMiddleware instance. (Inherited from OwinMiddleware.)

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method Invoke Invokes the handler for processing the request. (Overrides OwinMiddleware.Invoke(IOwinContext).)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.Owin.Extensions Namespace