using System.Threading; using System.Threading.Tasks; namespace WireMock.Matchers; /// /// IDecodeBytesMatcher /// public interface IDecodeBytesMatcher { /// /// Decode byte array to an object. /// /// The byte array /// The CancellationToken [optional]. /// object Task DecodeAsync(byte[]? input, CancellationToken cancellationToken = default); }