1 sharedlibrarycoreinterfaces IMatchResult
RaidMax edited this page 2023-05-20 22:09:21 -05:00

IMatchResult Public interface

Description

represents a pattern match result

Diagram

  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

Members

Properties

Public properties

Type Name Methods
bool Success
indicates if the match succeeded
get, set
string``[] Values
array of matched pattern groups
get, set

Details

Summary

represents a pattern match result

Properties

Values

public string Values { get; set; }
Summary

array of matched pattern groups

Success

public bool Success { get; set; }
Summary

indicates if the match succeeded

Generated with ModularDoc