using System.Threading; using System.Threading.Tasks; namespace WireMock.Matchers; /// /// IBytesMatcher /// public interface IBytesMatcher : IMatcher { /// /// Determines whether the specified input is match. /// /// The input byte array. /// The CancellationToken [optional]. /// MatchResult Task IsMatchAsync(byte[]? input, CancellationToken cancellationToken = default); }