Class MatchResult
- Namespace
- CilFi
- Assembly
- CilFi.Core.dll
Provides information about the result of matching signatures to methods in a .NET binary.
public sealed class MatchResult : IErrorListener
- Inheritance
-
MatchResult
- Implements
- Inherited Members
Constructors
MatchResult()
public MatchResult()
Properties
Exceptions
Gets a collection of exceptions that occurred during the matching.
public IReadOnlyList<Exception> Exceptions { get; }
Property Value
Matches
Gets a collection of successful matches.
public IList<SignatureMatch> Matches { get; }
Property Value
Methods
MarkAsFatal()
Marks the process to have failed.
public void MarkAsFatal()
RegisterException(Exception)
Registers an error.
public void RegisterException(Exception exception)
Parameters
exceptionExceptionThe error.