Interface IRequestMatcher
Interface for an object that matches HTTP requests to simulate a response for.
Inherited Members
Namespace: Tableau.Migration.Net.Simulation.Requests
Assembly: Tableau.Migration.dll
Syntax
public interface IRequestMatcher : IEquatable<IRequestMatcher>
Methods
Matches(HttpRequestMessage)
Determines whether the request matches this matcher's criteria.
Declaration
bool Matches(HttpRequestMessage request)
Parameters
Type | Name | Description |
---|---|---|
HttpRequestMessage | request | The request to attempt to match. |
Returns
Type | Description |
---|---|
bool | True if the request matches, otherwise false. |