mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 22:33:35 +01:00
* Add 'Data' to response which can be used during transforming the response * md * hb * fix * Linq * fix test * v4 * 14 * . * x * remove * s
61 lines
1.4 KiB
C#
61 lines
1.4 KiB
C#
using System.Collections.Generic;
|
|
using WireMock.ResponseBuilders;
|
|
using WireMock.Types;
|
|
using WireMock.Util;
|
|
|
|
namespace WireMock;
|
|
|
|
/// <summary>
|
|
/// IResponseMessage
|
|
/// </summary>
|
|
public interface IResponseMessage
|
|
{
|
|
/// <summary>
|
|
/// The Body.
|
|
/// </summary>
|
|
IBodyData? BodyData { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the body destination (Null, SameAsSource, String or Bytes).
|
|
/// </summary>
|
|
string? BodyDestination { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the body.
|
|
/// </summary>
|
|
string? BodyOriginal { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the Fault percentage.
|
|
/// </summary>
|
|
double? FaultPercentage { get; }
|
|
|
|
/// <summary>
|
|
/// The FaultType.
|
|
/// </summary>
|
|
FaultType FaultType { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the headers.
|
|
/// </summary>
|
|
IDictionary<string, WireMockList<string>>? Headers { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the status code.
|
|
/// </summary>
|
|
object? StatusCode { get; }
|
|
|
|
/// <summary>
|
|
/// Adds the header.
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="value">The value.</param>
|
|
void AddHeader(string name, string value);
|
|
|
|
/// <summary>
|
|
/// Adds the header.
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="values">The values.</param>
|
|
void AddHeader(string name, params string[] values);
|
|
} |