jellyfin/MediaBrowser.Model/System/IEnvironmentInfo.cs

24 lines
597 B
C#
Raw Normal View History

2016-11-29 12:13:20 -07:00

2016-11-04 12:51:59 -07:00
namespace MediaBrowser.Model.System
{
public interface IEnvironmentInfo
{
MediaBrowser.Model.System.OperatingSystem OperatingSystem { get; }
string OperatingSystemName { get; }
string OperatingSystemVersion { get; }
2016-11-11 01:13:11 -07:00
Architecture SystemArchitecture { get; }
2016-11-13 14:04:21 -07:00
string GetEnvironmentVariable(string name);
2016-11-29 12:13:20 -07:00
void SetProcessEnvironmentVariable(string name, string value);
2016-11-13 14:04:21 -07:00
string GetUserId();
2016-11-21 01:54:53 -07:00
string StackTrace { get; }
2016-11-04 12:51:59 -07:00
}
public enum OperatingSystem
{
Windows,
Linux,
2017-02-07 01:23:45 -07:00
OSX,
BSD
2016-11-04 12:51:59 -07:00
}
}