UseHandlerMiddleware.Invoke Method (IDictionary<String, Object>)
Invokes the handler for processing the request.
Namespace: Microsoft.Owin.Extensions
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
public Task Invoke(
IDictionary<string, object> environment
)
public:
Task^ Invoke(
IDictionary<String^, Object^>^ environment
)
member Invoke :
environment:IDictionary<string, Object> -> Task
Public Function Invoke (
environment As IDictionary(Of String, Object)
) As Task
Parameters
environment
Type: System.Collections.Generic.IDictionary<String, Object>The OWIN context.
Return Value
Type: System.Threading.Tasks.Task
The Task object that represents the request operation.
See Also
UseHandlerMiddleware Class
Microsoft.Owin.Extensions Namespace
Return to top