diff options
| author | Andrew Rabert <6550543+nvllsvm@users.noreply.github.com> | 2019-01-19 21:08:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-19 21:08:35 -0500 |
| commit | 469590c9c51f028da454e7e31bea0e37b8f91f15 (patch) | |
| tree | bc6d287699dfeda2bbc85231591896587394be44 /MediaBrowser.Common/IApplicationHost.cs | |
| parent | 97639e5c85dcacf43f430aabb1d1eb0c79f70d23 (diff) | |
| parent | e066a02403b5e850233e18321835a216514ae856 (diff) | |
Merge pull request #508 from EraYaN/api-version-reporting
Update internal versioning and user agents.
Diffstat (limited to 'MediaBrowser.Common/IApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Common/IApplicationHost.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Common/IApplicationHost.cs b/MediaBrowser.Common/IApplicationHost.cs index bc6c3a984..94dd251cf 100644 --- a/MediaBrowser.Common/IApplicationHost.cs +++ b/MediaBrowser.Common/IApplicationHost.cs @@ -72,6 +72,18 @@ namespace MediaBrowser.Common Version ApplicationVersion { get; } /// <summary> + /// Gets the application semantic version. + /// </summary> + /// <value>The application semantic version.</value> + string ApplicationSemanticVersion { get; } + + /// <summary> + /// Gets the application user agent. + /// </summary> + /// <value>The application user agent.</value> + string ApplicationUserAgent { get; } + + /// <summary> /// Gets or sets a value indicating whether this instance can self update. /// </summary> /// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value> |
