mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-29 13:21:50 +02:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
24 lines
647 B
C#
24 lines
647 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; }
|
|
} |