mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-27 19:41:08 +01:00
* Add HandlebarsSettings class * DefaultAllowedHandlebarsHelpers * HB - 2.5.0-preview-01 * readme * fix * readme * Handlebars.Net.Helpers Version="2.5.0"
24 lines
670 B
C#
24 lines
670 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Settings;
|
|
|
|
/// <summary>
|
|
/// Defines an old path param and a new path param to be replaced when proxying.
|
|
/// </summary>
|
|
public class ProxyUrlReplaceSettings
|
|
{
|
|
/// <summary>
|
|
/// The old path value to be replaced by the new path value
|
|
/// </summary>
|
|
public string OldValue { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// The new path value to replace the old value with
|
|
/// </summary>
|
|
public string NewValue { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Defines if the case should be ignored when replacing.
|
|
/// </summary>
|
|
public bool IgnoreCase { get; set; }
|
|
} |