Interface IMatchNode
- Namespace
- CilFi
- Assembly
- CilFi.Core.dll
Represents a single node in a match tree.
public interface IMatchNode
Properties
ConcreteValue
Gets the object that matched the pattern.
object? ConcreteValue { get; }
Property Value
Pattern
Gets the pattern that was matched.
Pattern Pattern { get; }
Property Value
Methods
GetChildren()
Enumerates all child nodes of this match node.
IEnumerable<(string Name, IMatchNode Match)> GetChildren()