mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-27 03:21:04 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
22 lines
577 B
C#
22 lines
577 B
C#
// Copyright © WireMock.Net
|
|
|
|
// 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
|
|
} |