OwinRequest.Environment Property

 

Gets the OWIN environment.

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

Syntax

public virtual IDictionary<string, object> Environment { get; private set; }
public:
property IDictionary<String^, Object^>^ Environment {
    virtual IDictionary<String^, Object^>^ get();
    private: virtual void set(IDictionary<String^, Object^>^ value);
}
abstract Environment : IDictionary<string, Object> with get, private set
override Environment : IDictionary<string, Object> with get, private set
Public Overridable Property Environment As IDictionary(Of String, Object)
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Generic.IDictionary<String, Object>

The OWIN environment.

Implements

IOwinRequest.Environment

See Also

OwinRequest Class
Microsoft.Owin Namespace

Return to top