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