Files
jellyfin-jellyfin-1/MediaBrowser.Model/System/IEnvironmentInfo.cs

25 lines
633 B
C#
Raw Normal View History

2016-11-29 14:13:20 -05:00

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