-
-
Notifications
You must be signed in to change notification settings - Fork 44
iw4madminapplicationmisc ParserMatchResult
RaidMax edited this page May 21, 2023
·
1 revision
implementation of the IMatchResult used to hold matching results
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph IW4MAdmin.Application.Misc
IW4MAdmin.Application.Misc.ParserMatchResult[[ParserMatchResult]]
end
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IMatchResult[[IMatchResult]]
class SharedLibraryCore.Interfaces.IMatchResult interfaceStyle;
end
SharedLibraryCore.Interfaces.IMatchResult --> IW4MAdmin.Application.Misc.ParserMatchResult
Type | Name | Methods |
---|---|---|
bool |
Success indicates if the match succeeded |
get, set |
string``[] |
Values array of matched pattern groups |
get, set |
implementation of the IMatchResult used to hold matching results
public ParserMatchResult()
public virtual string Values { get; set; }
array of matched pattern groups
public virtual bool Success { get; set; }
indicates if the match succeeded
Generated with ModularDoc