2014-09-14 15:26:33 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
namespace MediaBrowser.Server.Startup.Common
|
2014-09-14 15:26:33 +00:00
|
|
|
|
{
|
|
|
|
|
public class StartupOptions
|
|
|
|
|
{
|
|
|
|
|
private readonly List<string> _options = Environment.GetCommandLineArgs().ToList();
|
|
|
|
|
|
|
|
|
|
public bool ContainsOption(string option)
|
|
|
|
|
{
|
|
|
|
|
return _options.Contains(option, StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetOption(string name)
|
|
|
|
|
{
|
|
|
|
|
var index = _options.IndexOf(name);
|
|
|
|
|
|
|
|
|
|
if (index != -1)
|
|
|
|
|
{
|
|
|
|
|
return _options.ElementAtOrDefault(index + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|