namespace WireMock.Matchers; /// /// IMatcher /// public interface IMatcher { /// /// Gets the name. /// string Name { get; } /// /// Gets the match behaviour. /// MatchBehaviour MatchBehaviour { get; } }