mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-24 11:14:53 +01:00
28 lines
693 B
C#
28 lines
693 B
C#
namespace WireMock.ResponseBuilders
|
|
{
|
|
/// <summary>
|
|
/// Defines the BodyDestinationFormat
|
|
/// </summary>
|
|
public static class BodyDestinationFormat
|
|
{
|
|
/// <summary>
|
|
/// Same as source (no conversion)
|
|
/// </summary>
|
|
public const string SameAsSource = "SameAsSource";
|
|
|
|
/// <summary>
|
|
/// Convert to string
|
|
/// </summary>
|
|
public const string String = "String";
|
|
|
|
/// <summary>
|
|
/// Convert to bytes
|
|
/// </summary>
|
|
public const string Bytes = "Bytes";
|
|
|
|
/// <summary>
|
|
/// Convert to Json object
|
|
/// </summary>
|
|
public const string Json = "Json";
|
|
}
|
|
} |