mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-24 02:12:02 +01:00
* Add WebSockets * Add tests * fix * more tests * Add tests * ... * remove IOwin * - * tests * fluent * ok * match * . * byte[] * x * func * func * byte * trans * ... * frameworks......... * jmes * xxx * sc
19 lines
624 B
C#
19 lines
624 B
C#
// Copyright © WireMock.Net
|
|
|
|
using WireMock.Matchers;
|
|
|
|
namespace WireMock.RequestBuilders;
|
|
|
|
/// <summary>
|
|
/// The HttpVersionBuilder interface.
|
|
/// </summary>
|
|
public interface IHttpVersionBuilder : IWebSocketRequestBuilder
|
|
{
|
|
/// <summary>
|
|
/// WithHttpVersion
|
|
/// </summary>
|
|
/// <param name="version">The HTTP Version to match.</param>
|
|
/// <param name="matchBehaviour">The match behaviour. (default = "AcceptOnMatch")</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHttpVersion(string version, MatchBehaviour matchBehaviour = MatchBehaviour.AcceptOnMatch);
|
|
} |