Share via


StartOptions.Settings Property

 

Optional settings used to override service types and other defaults

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

Syntax

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

Property Value

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

Returns IDictionary<TKey, TValue>.

See Also

StartOptions Class
Microsoft.Owin.Hosting Namespace

Return to top