mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-25 10:31:01 +01:00
19 lines
488 B
C#
19 lines
488 B
C#
namespace WireMock.ResponseBuilders
|
|
{
|
|
/// <summary>
|
|
/// The BodyResponseBuilder interface.
|
|
/// </summary>
|
|
public interface IBodyResponseBuilder : IDelayResponseBuilder
|
|
{
|
|
/// <summary>
|
|
/// The with body.
|
|
/// </summary>
|
|
/// <param name="body">
|
|
/// The body.
|
|
/// </param>
|
|
/// <returns>
|
|
/// The <see cref="IResponseBuilder"/>.
|
|
/// </returns>
|
|
IResponseBuilder WithBody(string body);
|
|
}
|
|
} |