IW4M-Admin/SharedLibraryCore/Interfaces/IMatchResult.cs

18 lines
435 B
C#
Raw Normal View History

namespace SharedLibraryCore.Interfaces
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// represents a pattern match result
/// </summary>
public interface IMatchResult
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// array of matched pattern groups
/// </summary>
string[] Values { get; set; }
/// <summary>
2022-01-26 11:32:16 -05:00
/// indicates if the match succeeded
/// </summary>
bool Success { get; set; }
}
2022-01-26 11:32:16 -05:00
}