Class BaseApplicationConfiguration
Serves as a common base class for the Server and UI application Configurations ProtoInclude tells Protobuf about subclasses, The number 50 can be any number, so long as it doesn't clash with any of the ProtoMember numbers either here or in subclasses.
Namespace: MediaBrowser.Model.Configuration
Assembly: MediaBrowser.Model.dll
Syntax
public class BaseApplicationConfiguration
Constructors
BaseApplicationConfiguration()
Initializes a new instance of the BaseApplicationConfiguration class.
Declaration
public BaseApplicationConfiguration()
Properties
CachePath
Gets or sets the cache path.
Declaration
public string CachePath { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The cache path. |
EnableAutoUpdate
Enable automatically and silently updating of the application
Declaration
public bool EnableAutoUpdate { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
EnableDebugLevelLogging
Gets or sets a value indicating whether [enable debug level logging].
Declaration
public bool EnableDebugLevelLogging { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
IsStartupWizardCompleted
Gets or sets a value indicating whether this instance is first run.
Declaration
public bool IsStartupWizardCompleted { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
LogFileRetentionDays
The number of days we should retain log files
Declaration
public int LogFileRetentionDays { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The log file retention days. |
RevertDebugLogging
Declaration
public string RevertDebugLogging { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
RunAtStartup
Gets or sets a value indicating whether [run at startup].
Declaration
public bool RunAtStartup { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|