You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Emby.Server.Implementations/StartupOptions.cs

31 lines
679 B

using System;
using System.Linq;
namespace Emby.Server.Implementations
{
public class StartupOptions
{
private readonly string[] _options;
public StartupOptions(string[] commandLineArgs)
{
_options = commandLineArgs;
}
public bool ContainsOption(string option)
=> _options.Contains(option, StringComparer.OrdinalIgnoreCase);
public string GetOption(string name)
{
int index = Array.IndexOf(_options, name);
if (index == -1)
{
return null;
}
return _options.ElementAtOrDefault(index + 1);
}
}
}