IOwinRequest.Set<T> Method (String, T)
Sets the given key and value in the OWIN environment.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
IOwinRequest Set<T>(
string key,
T value
)
generic<typename T>
IOwinRequest^ Set(
String^ key,
T value
)
abstract Set<'T> :
key:string *
value:'T -> IOwinRequest
Function Set(Of T) (
key As String,
value As T
) As IOwinRequest
Parameters
key
Type: System.StringThe key of the value to set.
value
Type: TThe value to set.
Return Value
Type: Microsoft.Owin.IOwinRequest
This instance.
Type Parameters
- T
The type of the value.
See Also
IOwinRequest Interface
Microsoft.Owin Namespace
Return to top