IW4M-Admin/SharedLibraryCore/Interfaces/IRConParserConfiguration.cs

50 lines
1.5 KiB
C#
Raw Normal View History

using SharedLibraryCore.RCon;
using System.Globalization;
namespace SharedLibraryCore.Interfaces
{
public interface IRConParserConfiguration
{
/// <summary>
/// stores the command format for console commands
/// </summary>
CommandPrefix CommandPrefixes { get; set; }
2019-11-18 15:02:35 -05:00
/// <summary>
/// stores the regex info for parsing get status response
/// </summary>
ParserRegex Status { get; set; }
2019-11-18 15:02:35 -05:00
/// <summary>
/// stores regex info for parsing the map line from rcon status response
/// </summary>
ParserRegex MapStatus { get; set; }
/// <summary>
/// stores the regex info for parsing get DVAR responses
/// </summary>
2019-02-01 20:49:25 -05:00
ParserRegex Dvar { get; set; }
2019-11-18 15:02:35 -05:00
/// <summary>
/// stores the regex info for parsing the header of a status response
/// </summary>
ParserRegex StatusHeader { get; set; }
/// <summary>
/// Specifies the expected response message from rcon when the server is not running
/// </summary>
string ServerNotRunningResponse { get; set; }
2019-02-03 21:47:05 -05:00
/// <summary>
/// indicates if the application should wait for response from server
/// when executing a command
/// </summary>
bool WaitForResponse { get; set; }
/// <summary>
/// indicates the format expected for parsed guids
/// </summary>
NumberStyles GuidNumberStyle { get; set; }
}
}