mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 00:03:48 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
48 lines
1.8 KiB
C#
48 lines
1.8 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
using System.Net;
|
|
using WireMock.Settings;
|
|
|
|
namespace WireMock.ResponseBuilders;
|
|
|
|
/// <summary>
|
|
/// The StatusCodeResponseBuilder interface.
|
|
/// </summary>
|
|
public interface IStatusCodeResponseBuilder : IHeadersResponseBuilder
|
|
{
|
|
/// <summary>
|
|
/// The with status code.
|
|
/// By default all status codes are allowed, to change this behaviour, see <inheritdoc cref="WireMockServerSettings.AllowOnlyDefinedHttpStatusCodeInResponse"/>.
|
|
/// </summary>
|
|
/// <param name="code">The code.</param>
|
|
/// <returns>The <see cref="IResponseBuilder"/>.</returns>
|
|
IResponseBuilder WithStatusCode(int code);
|
|
|
|
/// <summary>
|
|
/// The with status code.
|
|
/// By default all status codes are allowed, to change this behaviour, see <inheritdoc cref="WireMockServerSettings.AllowOnlyDefinedHttpStatusCodeInResponse"/>.
|
|
/// </summary>
|
|
/// <param name="code">The code.</param>
|
|
/// <returns>The <see cref="IResponseBuilder"/>.</returns>
|
|
IResponseBuilder WithStatusCode(string code);
|
|
|
|
/// <summary>
|
|
/// The with status code.
|
|
/// By default all status codes are allowed, to change this behaviour, see <inheritdoc cref="WireMockServerSettings.AllowOnlyDefinedHttpStatusCodeInResponse"/>.
|
|
/// </summary>
|
|
/// <param name="code">The code.</param>
|
|
/// <returns>The <see cref="IResponseBuilder"/>.</returns>
|
|
IResponseBuilder WithStatusCode(HttpStatusCode code);
|
|
|
|
/// <summary>
|
|
/// The with Success status code (200).
|
|
/// </summary>
|
|
/// <returns>The <see cref="IResponseBuilder"/>.</returns>
|
|
IResponseBuilder WithSuccess();
|
|
|
|
/// <summary>
|
|
/// The with NotFound status code (404).
|
|
/// </summary>
|
|
/// <returns>The <see cref="IResponseBuilder"/>.</returns>
|
|
IResponseBuilder WithNotFound();
|
|
} |