IOwinRequest.Set<T>(String, T) Method

Definition

Sets the given key and value in the OWIN environment.

public Microsoft.Owin.IOwinRequest Set<T> (string key, T value);
abstract member Set : string * 'T -> Microsoft.Owin.IOwinRequest
Public Function Set(Of T) (key As String, value As T) As IOwinRequest

Type Parameters

T

The type of the value.

Parameters

key
String

The key of the value to set.

value
T

The value to set.

Returns

This instance.

Applies to