OwinRequest.Get<T> Method

Gets a specified OWIN request.

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

Syntax

'Declaration
Public Overridable Function Get(Of T) ( _
    key As String _
) As T
'Usage
Dim instance As OwinRequest 
Dim key As String 
Dim returnValue As T

returnValue = instance.Get(key)
public virtual T Get<T>(
    string key
)
public:
generic<typename T>
virtual T Get(
    String^ key
)
abstract Get : 
        key:string -> 'T 
override Get : 
        key:string -> 'T 
JScript does not support generic types and methods.

Type Parameters

  • T
    The type of the request.

Parameters

Return Value

Type: T
true if successful; otherwise, false.

Implements

IOwinRequest.Get<T>(String)

See Also

Reference

OwinRequest Class

Microsoft.Owin Namespace