Share via


StartContext.EnvironmentData Property

 

A list of keys and their associated values that will be injected by the host into each OWIN request environment.

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

Syntax

public IList<KeyValuePair<string, object>> EnvironmentData { get; private set; }
public:
property IList<KeyValuePair<String^, Object^>>^ EnvironmentData {
    IList<KeyValuePair<String^, Object^>>^ get();
    private: void set(IList<KeyValuePair<String^, Object^>>^ value);
}
member EnvironmentData : IList<KeyValuePair<string, Object>> with get, private set
Public Property EnvironmentData As IList(Of KeyValuePair(Of String, Object))
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Generic.IList<KeyValuePair<String, Object>>

Returns IList<T>.

See Also

StartContext Class
Microsoft.Owin.Hosting.Engine Namespace

Return to top