mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-18 17:37:01 +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
20 lines
547 B
C#
20 lines
547 B
C#
// Copied from https://github.com/Handlebars-Net/Handlebars.Net.Helpers/blob/master/src/Handlebars.Net.Helpers.DynamicLinq
|
|
|
|
namespace WireMock.Json;
|
|
|
|
/// <summary>
|
|
/// Enum to define how to convert an Integer in the Json Object.
|
|
/// </summary>
|
|
internal enum IntegerBehavior
|
|
{
|
|
/// <summary>
|
|
/// Convert all Integer types in the Json Object to a int (unless overflow).
|
|
/// (default)
|
|
/// </summary>
|
|
UseInt = 0,
|
|
|
|
/// <summary>
|
|
/// Convert all Integer types in the Json Object to a long.
|
|
/// </summary>
|
|
UseLong = 1
|
|
} |