mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-07-02 18:10:33 -05:00
fix for runaway regular expression on linux
explicitly set string dvars in quotes to allow setting empty dvars allow piping in input from command line (#114) update the distribution for top stats elo prevent game log file rotation from stopping event parsing
This commit is contained in:
21
Application/Misc/ParserMatchResult.cs
Normal file
21
Application/Misc/ParserMatchResult.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using SharedLibraryCore.Interfaces;
|
||||
|
||||
namespace IW4MAdmin.Application.Misc
|
||||
{
|
||||
/// <summary>
|
||||
/// implementation of the IMatchResult
|
||||
/// used to hold matching results
|
||||
/// </summary>
|
||||
public class ParserMatchResult : IMatchResult
|
||||
{
|
||||
/// <summary>
|
||||
/// array of matched pattern groups
|
||||
/// </summary>
|
||||
public string[] Values { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// indicates if the match succeeded
|
||||
/// </summary>
|
||||
public bool Success { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user