1 iw4madminapplicationmisc ParserMatchResult
RaidMax edited this page 2023-05-20 22:09:21 -05:00

ParserMatchResult Public class

Description

implementation of the IMatchResult used to hold matching results

Diagram

  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

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

implementation of the IMatchResult used to hold matching results

Inheritance

Constructors

ParserMatchResult

Source code

public ParserMatchResult()

Properties

Values

public virtual string Values { get; set; }
Summary

array of matched pattern groups

Success

public virtual bool Success { get; set; }
Summary

indicates if the match succeeded

Generated with ModularDoc