OwinRequest.Environment Property

Gets the environment associated with the request.

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

Syntax

'Declaration
Public Overridable Property Environment As IDictionary(Of String, Object)
    Get 
    Private Set
'Usage
Dim instance As OwinRequest 
Dim value As IDictionary(Of String, Object)

value = instance.Environment
public virtual IDictionary<string, Object> Environment { get; private set; }
public:
virtual property IDictionary<String^, Object^>^ Environment {
    IDictionary<String^, Object^>^ get ();
    private: void set (IDictionary<String^, Object^>^ value);
}
abstract Environment : IDictionary<string, Object> with get, private set 
override Environment : IDictionary<string, Object> with get, private set
function get Environment () : IDictionary<String, Object>
private function set Environment (value : IDictionary<String, Object>)

Property Value

Type: System.Collections.Generic.IDictionary<String, Object>
The environment associated with the request.

Implements

IOwinRequest.Environment

See Also

Reference

OwinRequest Class

Microsoft.Owin Namespace