mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-28 11:51:48 +01:00
22 lines
637 B
C#
22 lines
637 B
C#
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 ignore when replacing.
|
|
/// </summary>
|
|
public bool IgnoreCase { get; set; }
|
|
} |