mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-10 18:56:50 +02:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
14 lines
308 B
C#
14 lines
308 B
C#
// Copyright © WireMock.Net
|
|
|
|
using WireMock.Handlers;
|
|
|
|
namespace WireMock.Transformers;
|
|
|
|
internal interface ITransformerContext
|
|
{
|
|
IFileSystemHandler FileSystemHandler { get; }
|
|
|
|
string ParseAndRender(string text, object model);
|
|
|
|
object? ParseAndEvaluate(string text, object model);
|
|
} |