diff --git a/src/WireMock.Net.Minimal/Matchers/FuncMatcher.cs b/src/WireMock.Net.Minimal/Matchers/FuncMatcher.cs
new file mode 100644
index 00000000..cbaafc2b
--- /dev/null
+++ b/src/WireMock.Net.Minimal/Matchers/FuncMatcher.cs
@@ -0,0 +1,106 @@
+// Copyright © WireMock.Net
+
+using Stef.Validation;
+using WireMock.Extensions;
+
+namespace WireMock.Matchers;
+
+///
+/// FuncMatcher - matches using a custom function
+///
+///
+public class FuncMatcher : IFuncMatcher
+{
+ private readonly Func? _stringFunc;
+ private readonly Func? _bytesFunc;
+
+ ///
+ public MatchBehaviour MatchBehaviour { get; }
+
+ ///
+ /// Initializes a new instance of the class for string matching.
+ ///
+ /// The function to check if a string is a match.
+ public FuncMatcher(Func func) : this(MatchBehaviour.AcceptOnMatch, func)
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class for string matching.
+ ///
+ /// The match behaviour.
+ /// The function to check if a string is a match.
+ public FuncMatcher(MatchBehaviour matchBehaviour, Func func)
+ {
+ _stringFunc = Guard.NotNull(func);
+ MatchBehaviour = matchBehaviour;
+ }
+
+ ///
+ /// Initializes a new instance of the class for byte array matching.
+ ///
+ /// The function to check if a byte[] is a match.
+ public FuncMatcher(Func func) : this(MatchBehaviour.AcceptOnMatch, func)
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class for byte array matching.
+ ///
+ /// The match behaviour.
+ /// The function to check if a byte[] is a match.
+ public FuncMatcher(MatchBehaviour matchBehaviour, Func func)
+ {
+ _bytesFunc = Guard.NotNull(func);
+ MatchBehaviour = matchBehaviour;
+ }
+
+ ///
+ public MatchResult IsMatch(object? value)
+ {
+ if (value is string stringValue && _stringFunc != null)
+ {
+ try
+ {
+ return CreateMatchResult(_stringFunc(stringValue));
+ }
+ catch (Exception ex)
+ {
+ return MatchResult.From(Name, ex);
+ }
+ }
+
+ if (value is byte[] bytesValue && _bytesFunc != null)
+ {
+ try
+ {
+ return CreateMatchResult(_bytesFunc(bytesValue));
+ }
+ catch (Exception ex)
+ {
+ return MatchResult.From(Name, ex);
+ }
+ }
+
+ return MatchResult.From(Name, MatchScores.Mismatch);
+ }
+
+ private MatchResult CreateMatchResult(bool isMatch)
+ {
+ return MatchResult.From(Name, MatchBehaviourHelper.Convert(MatchBehaviour, MatchScores.ToScore(isMatch)));
+ }
+
+ ///
+ public string Name => nameof(FuncMatcher);
+
+ ///
+ public string GetCSharpCodeArguments()
+ {
+ var funcType = _stringFunc != null ? "Func" : "Func";
+ return $"new {Name}" +
+ $"(" +
+ $"{MatchBehaviour.GetFullyQualifiedEnumValue()}, " +
+ $"/* {funcType} function */" +
+ $")";
+ }
+}
diff --git a/src/WireMock.Net.Minimal/WebSockets/WebSocketBuilder.cs b/src/WireMock.Net.Minimal/WebSockets/WebSocketBuilder.cs
index aa10264d..146565de 100644
--- a/src/WireMock.Net.Minimal/WebSockets/WebSocketBuilder.cs
+++ b/src/WireMock.Net.Minimal/WebSockets/WebSocketBuilder.cs
@@ -100,21 +100,17 @@ internal class WebSocketBuilder : IWebSocketBuilder
});
}
- public IWebSocketMessageConditionBuilder WhenMessage(string condition)
+ public IWebSocketMessageConditionBuilder WhenMessage(string wildcardPattern)
{
- Guard.NotNull(condition);
- // Use RegexMatcher for substring matching - escape special chars and wrap with wildcards
- // Convert the string to a wildcard pattern that matches if it contains the condition
- var pattern = $"*{condition}*";
- var matcher = new WildcardMatcher(MatchBehaviour.AcceptOnMatch, pattern);
+ Guard.NotNull(wildcardPattern);
+ var matcher = new WildcardMatcher(MatchBehaviour.AcceptOnMatch, wildcardPattern);
return new WebSocketMessageConditionBuilder(this, matcher);
}
- public IWebSocketMessageConditionBuilder WhenMessage(byte[] condition)
+ public IWebSocketMessageConditionBuilder WhenMessage(byte[] exactPattern)
{
- Guard.NotNull(condition);
- // Use ExactObjectMatcher for byte matching
- var matcher = new ExactObjectMatcher(MatchBehaviour.AcceptOnMatch, condition);
+ Guard.NotNull(exactPattern);
+ var matcher = new ExactObjectMatcher(MatchBehaviour.AcceptOnMatch, exactPattern);
return new WebSocketMessageConditionBuilder(this, matcher);
}
@@ -241,12 +237,22 @@ internal class WebSocketBuilder : IWebSocketBuilder
private static async Task MatchMessageAsync(WebSocketMessage message, IMatcher matcher)
{
- if (message.MessageType == WebSocketMessageType.Text && matcher is IStringMatcher stringMatcher)
+ if (message.MessageType == WebSocketMessageType.Text)
{
- var result = stringMatcher.IsMatch(message.Text);
- return result.IsPerfect();
+ if (matcher is IStringMatcher stringMatcher)
+ {
+ var result = stringMatcher.IsMatch(message.Text);
+ return result.IsPerfect();
+ }
+
+ if (matcher is IFuncMatcher funcMatcher)
+ {
+ var result = funcMatcher.IsMatch(message.Text);
+ return result.IsPerfect();
+ }
}
+
if (message.MessageType == WebSocketMessageType.Binary && matcher is IBytesMatcher bytesMatcher && message.Bytes != null)
{
var result = await bytesMatcher.IsMatchAsync(message.Bytes);
diff --git a/src/WireMock.Net.Shared/Matchers/IFuncMatcher.cs b/src/WireMock.Net.Shared/Matchers/IFuncMatcher.cs
new file mode 100644
index 00000000..c49c9696
--- /dev/null
+++ b/src/WireMock.Net.Shared/Matchers/IFuncMatcher.cs
@@ -0,0 +1,17 @@
+// Copyright © WireMock.Net
+
+namespace WireMock.Matchers;
+
+///
+/// IFuncMatcher
+///
+///
+public interface IFuncMatcher : IMatcher
+{
+ ///
+ /// Determines whether the specified function is match.
+ ///
+ /// The value to check for a match.
+ /// MatchResult
+ MatchResult IsMatch(object? value);
+}
\ No newline at end of file
diff --git a/test/WireMock.Net.Tests/Matchers/FuncMatcherTests.cs b/test/WireMock.Net.Tests/Matchers/FuncMatcherTests.cs
new file mode 100644
index 00000000..68ad592f
--- /dev/null
+++ b/test/WireMock.Net.Tests/Matchers/FuncMatcherTests.cs
@@ -0,0 +1,435 @@
+// Copyright © WireMock.Net
+
+using System;
+using FluentAssertions;
+using WireMock.Matchers;
+using Xunit;
+
+namespace WireMock.Net.Tests.Matchers;
+
+public class FuncMatcherTests
+{
+ [Fact]
+ public void FuncMatcher_For_String_IsMatch_Should_Return_Perfect_When_Function_Returns_True()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch("test");
+
+ // Assert
+ result.IsPerfect().Should().BeTrue();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_IsMatch_Should_Return_Mismatch_When_Function_Returns_False()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch("other");
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_IsMatch_Should_Handle_Null_String()
+ {
+ // Arrange
+ Func func = s => s == null;
+ var matcher = new FuncMatcher(func);
+
+ // Act - passing null as object, not as string
+ var result = matcher.IsMatch((object?)null);
+
+ // Assert - null object doesn't match, returns mismatch
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_IsMatch_With_ByteArray_Input_Should_Return_Mismatch()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch(new byte[] { 1, 2, 3 });
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_IsMatch_With_Null_Object_Should_Return_Mismatch()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch((object?)null);
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_IsMatch_Should_Handle_Exception()
+ {
+ // Arrange
+ Func func = s => throw new InvalidOperationException("Test exception");
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch("test");
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ result.Exception.Should().NotBeNull();
+ result.Exception.Should().BeOfType();
+ result.Exception!.Message.Should().Be("Test exception");
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_IsMatch_Should_Return_Perfect_When_Function_Returns_True()
+ {
+ // Arrange
+ Func func = b => b != null && b.Length == 3;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch(new byte[] { 1, 2, 3 });
+
+ // Assert
+ result.IsPerfect().Should().BeTrue();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_IsMatch_Should_Return_Mismatch_When_Function_Returns_False()
+ {
+ // Arrange
+ Func func = b => b != null && b.Length == 3;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch(new byte[] { 1, 2, 3, 4, 5 });
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_IsMatch_Should_Handle_Null_ByteArray()
+ {
+ // Arrange
+ Func func = b => b == null;
+ var matcher = new FuncMatcher(func);
+
+ // Act - passing null as object, not as byte[]
+ var result = matcher.IsMatch((object?)null);
+
+ // Assert - null object doesn't match, returns mismatch
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_IsMatch_With_String_Input_Should_Return_Mismatch()
+ {
+ // Arrange
+ Func func = b => b != null && b.Length > 0;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch("test");
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_IsMatch_Should_Handle_Exception()
+ {
+ // Arrange
+ Func func = b => throw new InvalidOperationException("Bytes exception");
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch(new byte[] { 1, 2, 3 });
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ result.Exception.Should().NotBeNull();
+ result.Exception.Should().BeOfType();
+ result.Exception!.Message.Should().Be("Bytes exception");
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_With_Contains_Logic_Should_Work()
+ {
+ // Arrange
+ Func func = s => s?.Contains("foo") == true;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result1 = matcher.IsMatch("foo");
+ var result2 = matcher.IsMatch("foobar");
+ var result3 = matcher.IsMatch("bar");
+
+ // Assert
+ result1.IsPerfect().Should().BeTrue();
+ result2.IsPerfect().Should().BeTrue();
+ result3.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_With_Length_Logic_Should_Work()
+ {
+ // Arrange
+ Func func = b => b != null && b.Length > 2;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result1 = matcher.IsMatch(new byte[] { 1 });
+ var result2 = matcher.IsMatch(new byte[] { 1, 2 });
+ var result3 = matcher.IsMatch(new byte[] { 1, 2, 3 });
+
+ // Assert
+ result1.IsPerfect().Should().BeFalse();
+ result2.IsPerfect().Should().BeFalse();
+ result3.IsPerfect().Should().BeTrue();
+ }
+
+ [Fact]
+ public void FuncMatcher_Name_Should_Return_FuncMatcher()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(func);
+
+ // Act & Assert
+ matcher.Name.Should().Be("FuncMatcher");
+ }
+
+ [Fact]
+ public void FuncMatcher_MatchBehaviour_Should_Return_AcceptOnMatch_By_Default()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(func);
+
+ // Act & Assert
+ matcher.MatchBehaviour.Should().Be(MatchBehaviour.AcceptOnMatch);
+ }
+
+ [Fact]
+ public void FuncMatcher_MatchBehaviour_Should_Return_Custom_Value_For_String()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(MatchBehaviour.RejectOnMatch, func);
+
+ // Act & Assert
+ matcher.MatchBehaviour.Should().Be(MatchBehaviour.RejectOnMatch);
+ }
+
+ [Fact]
+ public void FuncMatcher_MatchBehaviour_Should_Return_Custom_Value_For_Bytes()
+ {
+ // Arrange
+ Func func = b => b != null;
+ var matcher = new FuncMatcher(MatchBehaviour.RejectOnMatch, func);
+
+ // Act & Assert
+ matcher.MatchBehaviour.Should().Be(MatchBehaviour.RejectOnMatch);
+ }
+
+ [Fact]
+ public void FuncMatcher_GetCSharpCodeArguments_For_String_Should_Return_Correct_Code()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var code = matcher.GetCSharpCodeArguments();
+
+ // Assert
+ code.Should().Contain("FuncMatcher");
+ code.Should().Contain("Func");
+ code.Should().Contain("AcceptOnMatch");
+ }
+
+ [Fact]
+ public void FuncMatcher_GetCSharpCodeArguments_For_Bytes_Should_Return_Correct_Code()
+ {
+ // Arrange
+ Func func = b => b != null;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var code = matcher.GetCSharpCodeArguments();
+
+ // Assert
+ code.Should().Contain("FuncMatcher");
+ code.Should().Contain("Func");
+ code.Should().Contain("AcceptOnMatch");
+ }
+
+ [Fact]
+ public void FuncMatcher_With_RejectOnMatch_For_String_Should_Invert_Result_When_True()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(MatchBehaviour.RejectOnMatch, func);
+
+ // Act
+ var result = matcher.IsMatch("test");
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_With_RejectOnMatch_For_String_Should_Invert_Result_When_False()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(MatchBehaviour.RejectOnMatch, func);
+
+ // Act
+ var result = matcher.IsMatch("other");
+
+ // Assert
+ result.IsPerfect().Should().BeTrue();
+ }
+
+ [Fact]
+ public void FuncMatcher_With_RejectOnMatch_For_Bytes_Should_Invert_Result_When_True()
+ {
+ // Arrange
+ Func func = b => b != null && b.Length > 0;
+ var matcher = new FuncMatcher(MatchBehaviour.RejectOnMatch, func);
+
+ // Act
+ var result = matcher.IsMatch(new byte[] { 1, 2, 3 });
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_With_RejectOnMatch_For_Bytes_Should_Invert_Result_When_False()
+ {
+ // Arrange
+ Func func = b => b != null && b.Length > 0;
+ var matcher = new FuncMatcher(MatchBehaviour.RejectOnMatch, func);
+
+ // Act
+ var result = matcher.IsMatch(new byte[0]);
+
+ // Assert
+ result.IsPerfect().Should().BeTrue();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_IsMatch_With_Integer_Input_Should_Return_Mismatch()
+ {
+ // Arrange
+ Func func = s => s == "test";
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch(42);
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_IsMatch_With_Integer_Input_Should_Return_Mismatch()
+ {
+ // Arrange
+ Func func = b => b != null;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result = matcher.IsMatch(42);
+
+ // Assert
+ result.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_With_Empty_String_Should_Work()
+ {
+ // Arrange
+ Func func = s => string.IsNullOrEmpty(s);
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result1 = matcher.IsMatch("");
+ var result2 = matcher.IsMatch("test");
+
+ // Assert
+ result1.IsPerfect().Should().BeTrue();
+ result2.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_With_Empty_Array_Should_Work()
+ {
+ // Arrange
+ Func func = b => b != null && b.Length == 0;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result1 = matcher.IsMatch(new byte[0]);
+ var result2 = matcher.IsMatch(new byte[] { 1 });
+
+ // Assert
+ result1.IsPerfect().Should().BeTrue();
+ result2.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_String_With_Complex_Logic_Should_Work()
+ {
+ // Arrange
+ Func func = s => s != null && s.Length > 3 && s.StartsWith("t") && s.EndsWith("t");
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result1 = matcher.IsMatch("test");
+ var result2 = matcher.IsMatch("tart");
+ var result3 = matcher.IsMatch("tes");
+ var result4 = matcher.IsMatch("best");
+
+ // Assert
+ result1.IsPerfect().Should().BeTrue();
+ result2.IsPerfect().Should().BeTrue();
+ result3.IsPerfect().Should().BeFalse();
+ result4.IsPerfect().Should().BeFalse();
+ }
+
+ [Fact]
+ public void FuncMatcher_For_Bytes_With_Specific_Byte_Check_Should_Work()
+ {
+ // Arrange
+ Func func = b => b != null && b.Length > 0 && b[0] == 0xFF;
+ var matcher = new FuncMatcher(func);
+
+ // Act
+ var result1 = matcher.IsMatch(new byte[] { 0xFF, 0x00 });
+ var result2 = matcher.IsMatch(new byte[] { 0x00, 0xFF });
+
+ // Assert
+ result1.IsPerfect().Should().BeTrue();
+ result2.IsPerfect().Should().BeFalse();
+ }
+}
diff --git a/test/WireMock.Net.Tests/WebSockets/WebSocketIntegrationTests.cs b/test/WireMock.Net.Tests/WebSockets/WebSocketIntegrationTests.cs
index 47add7b2..54cdaf7f 100644
--- a/test/WireMock.Net.Tests/WebSockets/WebSocketIntegrationTests.cs
+++ b/test/WireMock.Net.Tests/WebSockets/WebSocketIntegrationTests.cs
@@ -6,6 +6,7 @@ using System.Net.WebSockets;
using System.Text;
using FluentAssertions;
using Newtonsoft.Json.Linq;
+using WireMock.Matchers;
using WireMock.Net.Xunit;
using WireMock.RequestBuilders;
using WireMock.ResponseBuilders;
@@ -573,9 +574,11 @@ public class WebSocketIntegrationTests(ITestOutputHelper output)
.RespondWith(Response.Create()
.WithWebSocket(ws => ws
.WithCloseTimeout(TimeSpan.FromSeconds(3))
- .WhenMessage("/help").SendMessage(m => m.WithText("Available commands: /help, /time, /echo "))
+ .WhenMessage("/help").SendMessage(m => m.WithText("Available commands"))
.WhenMessage("/time").SendMessage(m => m.WithText($"Server time: {DateTime.UtcNow:yyyy-MM-dd HH:mm:ss} UTC"))
- .WhenMessage("/echo ").SendMessage(m => m.WithText("echo response"))
+ .WhenMessage("/echo *").SendMessage(m => m.WithText("echo response"))
+ .WhenMessage(new ExactMatcher("/exact")).SendMessage(m => m.WithText("is exact"))
+ .WhenMessage(new FuncMatcher(s => s == "/func")).SendMessage(m => m.WithText("is func"))
)
);
@@ -587,7 +590,9 @@ public class WebSocketIntegrationTests(ITestOutputHelper output)
{
("/help", "Available commands"),
("/time", "Server time"),
- ("/echo test", "echo response")
+ ("/echo test", "echo response"),
+ ("/exact", "is exact"),
+ ("/func", "is func")
};
// Act & Assert
diff --git a/test/WireMock.Net.Tests/coverage.net8.0.opencover.xml b/test/WireMock.Net.Tests/coverage.net8.0.opencover.xml
index f5846668..68c92a5a 100644
--- a/test/WireMock.Net.Tests/coverage.net8.0.opencover.xml
+++ b/test/WireMock.Net.Tests/coverage.net8.0.opencover.xml
@@ -1,10 +1,10 @@
-
+
-
+
WireMock.Net.Abstractions.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.Abstractions
@@ -93,7 +93,7 @@
-
+
FluentBuilder.AutoGenerateBuilderAttribute
@@ -140,18 +140,18 @@
-
-
+
+
System.Void FluentBuilder.AutoGenerateBuilderAttribute::.ctor()
-
-
-
+
+
+
-
+
@@ -283,22 +283,22 @@
-
-
+
+
System.Void FluentBuilder.AutoGenerateBuilderAttribute::.ctor(System.Type,System.Boolean,FluentBuilder.FluentBuilderAccessibility,FluentBuilder.FluentBuilderMethods)
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
@@ -1038,37 +1038,37 @@
-
+
WireMock.Validators.PathValidator
-
-
+
+
System.Void WireMock.Validators.PathValidator::ValidateAndThrow(System.String,System.String)
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
WireMock.Types.WireMockList`1
@@ -1082,16 +1082,16 @@
-
-
+
+
WireMock.Types.WireMockList`1<T> WireMock.Types.WireMockList`1::op_Implicit(T[])
-
+
-
+
@@ -1143,18 +1143,18 @@
-
-
+
+
System.Void WireMock.Types.WireMockList`1::.ctor(T[])
-
-
-
+
+
+
-
+
@@ -1191,63 +1191,63 @@
-
+
WireMock.Matchers.Request.MatchDetail
-
-
+
+
System.Type WireMock.Matchers.Request.MatchDetail::get_MatcherType()
-
+
-
+
-
-
+
+
System.String WireMock.Matchers.Request.MatchDetail::get_Name()
-
+
-
+
-
-
+
+
System.Double WireMock.Matchers.Request.MatchDetail::get_Score()
-
+
-
+
-
-
+
+
System.Exception WireMock.Matchers.Request.MatchDetail::get_Exception()
-
+
-
+
-
-
+
+
WireMock.Matchers.Request.MatchDetail[] WireMock.Matchers.Request.MatchDetail::get_MatchDetails()
-
+
-
+
@@ -1467,7 +1467,7 @@
System.String WireMock.Models.StringPattern::get_Pattern()
-
+
@@ -1478,7 +1478,7 @@
System.String WireMock.Models.StringPattern::get_PatternAsFile()
-
+
@@ -5313,532 +5313,532 @@
-
+
WireMock.Admin.Requests.LogEntryModel
-
-
+
+
System.Guid WireMock.Admin.Requests.LogEntryModel::get_Guid()
-
+
-
+
-
-
+
+
WireMock.Admin.Requests.LogRequestModel WireMock.Admin.Requests.LogEntryModel::get_Request()
-
+
-
+
-
-
+
+
WireMock.Admin.Requests.LogResponseModel WireMock.Admin.Requests.LogEntryModel::get_Response()
-
+
-
+
-
-
+
+
System.Nullable`1<System.Guid> WireMock.Admin.Requests.LogEntryModel::get_MappingGuid()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogEntryModel::get_MappingTitle()
-
+
-
+
-
-
+
+
WireMock.Admin.Requests.LogRequestMatchModel WireMock.Admin.Requests.LogEntryModel::get_RequestMatchResult()
-
+
-
+
-
-
+
+
System.Nullable`1<System.Guid> WireMock.Admin.Requests.LogEntryModel::get_PartialMappingGuid()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogEntryModel::get_PartialMappingTitle()
-
+
-
+
-
-
+
+
WireMock.Admin.Requests.LogRequestMatchModel WireMock.Admin.Requests.LogEntryModel::get_PartialRequestMatchResult()
-
+
-
+
-
+
WireMock.Admin.Requests.LogRequestMatchModel
-
-
+
+
System.Double WireMock.Admin.Requests.LogRequestMatchModel::get_TotalScore()
-
+
-
+
-
-
+
+
System.Int32 WireMock.Admin.Requests.LogRequestMatchModel::get_TotalNumber()
-
+
-
+
-
-
+
+
System.Boolean WireMock.Admin.Requests.LogRequestMatchModel::get_IsPerfectMatch()
-
+
-
+
-
-
+
+
System.Double WireMock.Admin.Requests.LogRequestMatchModel::get_AverageTotalScore()
-
+
-
+
-
-
+
+
System.Collections.Generic.IList`1<WireMock.Matchers.Request.MatchDetail> WireMock.Admin.Requests.LogRequestMatchModel::get_MatchDetails()
-
+
-
+
-
+
WireMock.Admin.Requests.LogRequestModel
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_ClientIP()
-
+
-
+
-
-
+
+
System.DateTime WireMock.Admin.Requests.LogRequestModel::get_DateTime()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_Path()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_AbsolutePath()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_Url()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_AbsoluteUrl()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_ProxyUrl()
-
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.Admin.Requests.LogRequestModel::get_Query()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_Method()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_HttpVersion()
-
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.Admin.Requests.LogRequestModel::get_Headers()
-
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,System.String> WireMock.Admin.Requests.LogRequestModel::get_Cookies()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_Body()
-
+
-
+
-
-
+
+
System.Object WireMock.Admin.Requests.LogRequestModel::get_BodyAsJson()
-
+
-
+
-
-
+
+
System.Byte[] WireMock.Admin.Requests.LogRequestModel::get_BodyAsBytes()
-
+
-
+
-
-
+
+
WireMock.Admin.Mappings.EncodingModel WireMock.Admin.Requests.LogRequestModel::get_BodyEncoding()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_DetectedBodyType()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogRequestModel::get_DetectedBodyTypeFromContentType()
-
+
-
+
-
+
WireMock.Admin.Requests.LogResponseModel
-
-
+
+
System.Object WireMock.Admin.Requests.LogResponseModel::get_StatusCode()
-
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.Admin.Requests.LogResponseModel::get_Headers()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogResponseModel::get_BodyDestination()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogResponseModel::get_Body()
-
+
-
+
-
-
+
+
System.Object WireMock.Admin.Requests.LogResponseModel::get_BodyAsJson()
-
+
-
+
-
-
+
+
System.Byte[] WireMock.Admin.Requests.LogResponseModel::get_BodyAsBytes()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogResponseModel::get_BodyAsFile()
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Admin.Requests.LogResponseModel::get_BodyAsFileIsCached()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogResponseModel::get_BodyOriginal()
-
+
-
+
-
-
+
+
WireMock.Admin.Mappings.EncodingModel WireMock.Admin.Requests.LogResponseModel::get_BodyEncoding()
-
+
-
+
-
-
+
+
System.Nullable`1<WireMock.Types.BodyType> WireMock.Admin.Requests.LogResponseModel::get_DetectedBodyType()
-
+
-
+
-
-
+
+
System.Nullable`1<WireMock.Types.BodyType> WireMock.Admin.Requests.LogResponseModel::get_DetectedBodyTypeFromContentType()
-
+
-
+
-
-
+
+
System.String WireMock.Admin.Requests.LogResponseModel::get_FaultType()
-
+
-
+
-
-
+
+
System.Nullable`1<System.Double> WireMock.Admin.Requests.LogResponseModel::get_FaultPercentage()
-
+
-
+
@@ -15524,16 +15524,16 @@
-
+
WireMock.Net.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net
-
+
WireMock.Net.FluentAssertions.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.FluentAssertions
@@ -16650,9 +16650,9 @@
-
+
WireMock.Net.GraphQL.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.GraphQL
@@ -17140,9 +17140,9 @@
-
+
WireMock.Net.Matchers.CSharpCode.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.Matchers.CSharpCode
@@ -17390,9 +17390,9 @@
-
+
WireMock.Net.MimePart.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.MimePart
@@ -17405,7 +17405,7 @@
-
+
WireMock.Util.MimeKitUtils
@@ -17421,18 +17421,18 @@
-
-
+
+
System.Boolean WireMock.Util.MimeKitUtils::TryGetMimeMessage(WireMock.IRequestMessage,WireMock.Models.Mime.IMimeMessageData&)
-
-
-
-
-
-
+
+
+
+
+
+
@@ -17444,17 +17444,17 @@
-
-
-
+
+
+
-
-
+
+
@@ -17466,9 +17466,9 @@
-
+
-
+
@@ -18600,9 +18600,9 @@
-
+
WireMock.Net.Minimal.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.Minimal
@@ -18613,198 +18613,201 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Mapping
-
-
+
+
System.Guid WireMock.Mapping::get_Guid()
-
+
-
+
-
-
+
+
System.Nullable`1<System.DateTime> WireMock.Mapping::get_UpdatedAt()
-
+
-
+
-
-
+
+
System.String WireMock.Mapping::get_Title()
-
+
-
+
@@ -18817,38 +18820,38 @@
-
-
+
+
System.String WireMock.Mapping::get_Path()
-
+
-
+
-
-
+
+
System.Int32 WireMock.Mapping::get_Priority()
-
+
-
+
-
-
+
+
System.String WireMock.Mapping::get_Scenario()
-
+
-
+
@@ -18883,38 +18886,38 @@
-
-
+
+
WireMock.Matchers.Request.IRequestMatcher WireMock.Mapping::get_RequestMatcher()
-
+
-
+
-
-
+
+
WireMock.ResponseProviders.IResponseProvider WireMock.Mapping::get_Provider()
-
+
-
+
-
-
+
+
WireMock.Settings.WireMockServerSettings WireMock.Mapping::get_Settings()
-
+
-
+
@@ -18934,23 +18937,23 @@
-
-
+
+
System.Boolean WireMock.Mapping::get_IsAdminInterface()
-
+
-
-
+
+
-
+
-
+
@@ -18963,32 +18966,32 @@
-
-
+
+
System.Boolean WireMock.Mapping::get_LogMapping()
-
+
-
+
-
+
-
+
-
-
+
+
WireMock.Models.IWebhook[] WireMock.Mapping::get_Webhooks()
-
+
-
+
@@ -19001,16 +19004,16 @@
-
-
+
+
WireMock.Models.ITimeSettings WireMock.Mapping::get_TimeSettings()
-
+
-
+
@@ -19023,16 +19026,16 @@
-
-
+
+
System.Nullable`1<System.Double> WireMock.Mapping::get_Probability()
-
+
-
+
@@ -19045,41 +19048,41 @@
-
-
+
+
System.Threading.Tasks.Task`1<System.ValueTuple`2<WireMock.IResponseMessage,WireMock.IMapping>> WireMock.Mapping::ProvideResponseAsync(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
-
-
+
+
+
-
+
-
-
+
+
WireMock.Matchers.Request.IRequestMatchResult WireMock.Mapping::GetRequestMatchResult(WireMock.IRequestMessage,System.String)
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
+
@@ -19123,73 +19126,73 @@
-
-
+
+
System.Void WireMock.Mapping::.ctor(System.Guid,System.DateTime,System.String,System.String,System.String,WireMock.Settings.WireMockServerSettings,WireMock.Matchers.Request.IRequestMatcher,WireMock.ResponseProviders.IResponseProvider,System.Int32,System.String,System.String,System.String,System.Nullable`1<System.Int32>,WireMock.Models.IWebhook[],System.Nullable`1<System.Boolean>,WireMock.Models.ITimeSettings,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.MappingBuilder
-
-
+
+
WireMock.Server.IRespondWithAProvider WireMock.MappingBuilder::Given(WireMock.Matchers.Request.IRequestMatcher,System.Boolean)
-
-
-
+
+
+
-
+
@@ -19314,41 +19317,41 @@
-
-
+
+
System.Void WireMock.MappingBuilder::RegisterMapping(WireMock.IMapping,System.Boolean)
-
-
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -19386,114 +19389,114 @@
-
-
+
+
System.Void WireMock.MappingBuilder::.ctor(WireMock.Settings.WireMockServerSettings,WireMock.Owin.IWireMockMiddlewareOptions,WireMock.Serialization.MappingConverter,WireMock.Serialization.MappingToFileSaver,WireMock.Util.IGuidUtils,WireMock.Util.IDateTimeUtils)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.RequestMessage
-
-
+
+
System.String WireMock.RequestMessage::get_ClientIP()
-
+
-
+
-
-
+
+
System.String WireMock.RequestMessage::get_Url()
-
+
-
+
-
-
+
+
System.String WireMock.RequestMessage::get_AbsoluteUrl()
-
+
-
+
-
-
+
+
System.String WireMock.RequestMessage::get_ProxyUrl()
-
+
-
+
-
-
+
+
System.DateTime WireMock.RequestMessage::get_DateTime()
-
+
-
+
-
-
+
+
System.String WireMock.RequestMessage::get_Path()
-
+
-
+
-
-
+
+
System.String WireMock.RequestMessage::get_AbsolutePath()
-
+
-
+
@@ -19517,60 +19520,60 @@
-
-
+
+
System.String WireMock.RequestMessage::get_Method()
-
+
-
+
-
-
+
+
System.String WireMock.RequestMessage::get_HttpVersion()
-
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.RequestMessage::get_Headers()
-
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,System.String> WireMock.RequestMessage::get_Cookies()
-
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.RequestMessage::get_Query()
-
+
-
+
@@ -19583,27 +19586,27 @@
-
-
+
+
System.String WireMock.RequestMessage::get_RawQuery()
-
+
-
+
-
-
+
+
WireMock.Util.IBodyData WireMock.RequestMessage::get_BodyData()
-
+
-
+
@@ -19616,16 +19619,16 @@
-
-
+
+
System.Object WireMock.RequestMessage::get_BodyAsJson()
-
+
-
+
@@ -19682,38 +19685,38 @@
-
-
+
+
System.String WireMock.RequestMessage::get_Host()
-
+
-
+
-
-
+
+
System.String WireMock.RequestMessage::get_Protocol()
-
+
-
+
-
-
+
+
System.Int32 WireMock.RequestMessage::get_Port()
-
+
-
+
@@ -19774,123 +19777,123 @@
-
-
+
+
System.Void WireMock.RequestMessage::.ctor(WireMock.Owin.IWireMockMiddlewareOptions,WireMock.Models.UrlDetails,System.String,System.String,WireMock.Util.IBodyData,System.Collections.Generic.IDictionary`2<System.String,System.String[]>,System.Collections.Generic.IDictionary`2<System.String,System.String>,System.String,System.Security.Cryptography.X509Certificates.X509Certificate2)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
WireMock.ResponseMessage
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.ResponseMessage::get_Headers()
-
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.ResponseMessage::get_TrailingHeaders()
-
+
-
+
-
-
+
+
System.Object WireMock.ResponseMessage::get_StatusCode()
-
+
-
+
@@ -19914,27 +19917,27 @@
-
-
+
+
WireMock.Util.IBodyData WireMock.ResponseMessage::get_BodyData()
-
+
-
+
-
-
+
+
WireMock.ResponseBuilders.FaultType WireMock.ResponseMessage::get_FaultType()
-
+
-
+
@@ -19964,28 +19967,28 @@
-
-
+
+
System.Void WireMock.ResponseMessage::AddHeader(System.String,System.String[])
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -20189,96 +20192,85 @@
-
+
WireMock.WebSockets.WebSocketBuilder
-
-
+
+
System.String WireMock.WebSockets.WebSocketBuilder::get_AcceptProtocol()
-
+
-
-
-
-
-
- System.Boolean WireMock.WebSockets.WebSocketBuilder::get_IsEcho()
-
-
-
-
-
-
-
-
-
-
- System.Boolean WireMock.WebSockets.WebSocketBuilder::get_IsBroadcast()
-
-
-
-
-
-
-
-
-
-
- System.Func`3<WireMock.WebSockets.WebSocketMessage,WireMock.WebSockets.IWebSocketContext,System.Threading.Tasks.Task> WireMock.WebSockets.WebSocketBuilder::get_MessageHandler()
-
-
-
-
-
-
+
- WireMock.WebSockets.WebSocketMessageSequence WireMock.WebSockets.WebSocketBuilder::get_MessageSequence()
+ System.Boolean WireMock.WebSockets.WebSocketBuilder::get_IsEcho()
-
+
-
+
-
-
+
+
+
+ System.Boolean WireMock.WebSockets.WebSocketBuilder::get_IsBroadcast()
+
+
+
+
+
+
+
+
+
+
+ System.Func`3<WireMock.WebSockets.WebSocketMessage,WireMock.WebSockets.IWebSocketContext,System.Threading.Tasks.Task> WireMock.WebSockets.WebSocketBuilder::get_MessageHandler()
+
+
+
+
+
+
+
+
+
WireMock.Settings.ProxyAndRecordSettings WireMock.WebSockets.WebSocketBuilder::get_ProxySettings()
-
+
-
+
-
-
+
+
System.Nullable`1<System.TimeSpan> WireMock.WebSockets.WebSocketBuilder::get_CloseTimeout()
-
+
-
+
-
-
+
+
System.Nullable`1<System.Int32> WireMock.WebSockets.WebSocketBuilder::get_MaxMessageSize()
-
+
-
+
@@ -20286,21 +20278,21 @@
System.Nullable`1<System.Int32> WireMock.WebSockets.WebSocketBuilder::get_ReceiveBufferSize()
-
+
-
+
-
-
+
+
System.Nullable`1<System.TimeSpan> WireMock.WebSockets.WebSocketBuilder::get_KeepAliveIntervalSeconds()
-
+
-
+
@@ -20308,10 +20300,10 @@
System.Boolean WireMock.WebSockets.WebSocketBuilder::get_UseTransformer()
-
+
-
+
@@ -20319,10 +20311,10 @@
WireMock.Types.TransformerType WireMock.WebSockets.WebSocketBuilder::get_TransformerType()
-
+
-
+
@@ -20330,10 +20322,10 @@
System.Boolean WireMock.WebSockets.WebSocketBuilder::get_UseTransformerForBodyAsFile()
-
+
-
+
@@ -20341,10 +20333,10 @@
WireMock.Types.ReplaceNodeOptions WireMock.WebSockets.WebSocketBuilder::get_TransformerReplaceNodeOptions()
-
+
-
+
@@ -20352,124 +20344,151 @@
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithAcceptProtocol(System.String)
-
-
-
-
+
+
+
+
-
+
-
-
+
+
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithEcho()
-
-
-
-
+
+
+
+
-
+
-
-
+
+
- WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithText(System.String)
+ WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::SendMessage(System.Action`1<WireMock.WebSockets.IWebSocketMessageBuilder>)
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
- WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithBytes(System.Byte[])
+ WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::SendMessages(System.Action`1<WireMock.WebSockets.IWebSocketMessagesBuilder>)
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
- WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithJson(System.Object)
+ WireMock.WebSockets.IWebSocketMessageConditionBuilder WireMock.WebSockets.WebSocketBuilder::WhenMessage(System.String)
-
-
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
+
+ WireMock.WebSockets.IWebSocketMessageConditionBuilder WireMock.WebSockets.WebSocketBuilder::WhenMessage(System.Byte[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessageConditionBuilder WireMock.WebSockets.WebSocketBuilder::WhenMessage(WireMock.Matchers.IMatcher)
+
+
+
+
+
+
+
+
+
+
+
+
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithMessageHandler(System.Func`3<WireMock.WebSockets.WebSocketMessage,WireMock.WebSockets.IWebSocketContext,System.Threading.Tasks.Task>)
-
-
-
-
-
+
+
+
+
+
-
+
-
-
- WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithMessageSequence(System.Action`1<WireMock.WebSockets.IWebSocketMessageSequenceBuilder>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithBroadcast()
-
-
-
-
+
+
+
+
-
+
@@ -20477,14 +20496,14 @@
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithProxy(WireMock.Settings.ProxyAndRecordSettings)
-
-
-
-
-
+
+
+
+
+
-
+
@@ -20492,13 +20511,13 @@
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithCloseTimeout(System.TimeSpan)
-
-
-
-
+
+
+
+
-
+
@@ -20506,13 +20525,13 @@
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithMaxMessageSize(System.Int32)
-
-
-
-
+
+
+
+
-
+
@@ -20520,13 +20539,13 @@
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithReceiveBufferSize(System.Int32)
-
-
-
-
+
+
+
+
-
+
@@ -20534,13 +20553,13 @@
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithKeepAliveInterval(System.TimeSpan)
-
-
-
-
+
+
+
+
-
+
@@ -20548,48 +20567,235 @@
WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::WithTransformer(WireMock.Types.TransformerType,System.Boolean,WireMock.Types.ReplaceNodeOptions)
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::AddConditionalMessage(WireMock.Matchers.IMatcher,WireMock.WebSockets.WebSocketMessageBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketBuilder::AddConditionalMessages(WireMock.Matchers.IMatcher,System.Collections.Generic.List`1<WireMock.WebSockets.WebSocketMessageBuilder>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.WebSockets.WebSocketBuilder::SetupConditionalHandler()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.WebSockets.WebSocketBuilder::.ctor()
+
+
+
+
+
+
-
+
+ WireMock.WebSockets.WebSocketBuilder/<MatchMessageAsync>d__71
+
+
+
+
+ System.Void WireMock.WebSockets.WebSocketBuilder/<MatchMessageAsync>d__71::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.WebSocketBuilder/<SendMessageAsync>d__72
+
+
+
+
+ System.Void WireMock.WebSockets.WebSocketBuilder/<SendMessageAsync>d__72::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.WebSocketBuilder/<<SetupConditionalHandler>b__70_0>d
+
+
+
+
+ WireMock.WebSockets.WebSocketBuilder/<>c__DisplayClass55_0/<<SendMessage>b__0>d
+
+
+
+
+ WireMock.WebSockets.WebSocketBuilder/<>c__DisplayClass56_0/<<SendMessages>b__0>d
+
+
+
+
WireMock.WebSockets.WebSocketConnectionRegistry
-
-
+
+
System.Void WireMock.WebSockets.WebSocketConnectionRegistry::AddConnection(WireMock.WebSockets.WireMockWebSocketContext)
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.WebSockets.WebSocketConnectionRegistry::RemoveConnection(System.Guid)
-
-
-
+
+
+
-
+
@@ -20617,592 +20823,814 @@
-
-
+
+
System.Void WireMock.WebSockets.WebSocketConnectionRegistry::.ctor()
-
+
-
+
-
+
WireMock.WebSockets.WebSocketConnectionRegistry/<>c
-
-
+
+
System.Boolean WireMock.WebSockets.WebSocketConnectionRegistry/<>c::<BroadcastTextAsync>b__5_0(WireMock.WebSockets.WireMockWebSocketContext)
-
+
-
+
-
+
WireMock.WebSockets.WebSocketConnectionRegistry/<>c__DisplayClass5_0
-
-
+
+
System.Threading.Tasks.Task WireMock.WebSockets.WebSocketConnectionRegistry/<>c__DisplayClass5_0::<BroadcastTextAsync>b__1(WireMock.WebSockets.WireMockWebSocketContext)
-
+
-
+
-
+
WireMock.WebSockets.WebSocketConnectionRegistry/<BroadcastJsonAsync>d__6
-
-
+
+
System.Void WireMock.WebSockets.WebSocketConnectionRegistry/<BroadcastJsonAsync>d__6::MoveNext()
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.WebSockets.WebSocketConnectionRegistry/<BroadcastTextAsync>d__5
-
-
+
+
System.Void WireMock.WebSockets.WebSocketConnectionRegistry/<BroadcastTextAsync>d__5::MoveNext()
-
-
-
-
+
+
+
+
-
+
-
- WireMock.WebSockets.WebSocketMessageSequence
+
+ WireMock.WebSockets.WebSocketMessageBuilder
-
-
+
+
- System.Threading.Tasks.Task WireMock.WebSockets.WebSocketMessageSequence::ExecuteAsync(WireMock.WebSockets.WireMockWebSocketContext)
+ System.String WireMock.WebSockets.WebSocketMessageBuilder::get_MessageText()
+
+
+
+
+
+
+
+
+
+
+ System.Byte[] WireMock.WebSockets.WebSocketMessageBuilder::get_MessageBytes()
-
-
-
+
+
+
+
+
+ System.Object WireMock.WebSockets.WebSocketMessageBuilder::get_MessageData()
+
+
+
+
+
+
+
+
+
+
+ System.Nullable`1<System.TimeSpan> WireMock.WebSockets.WebSocketMessageBuilder::get_Delay()
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.WebSocketMessageBuilder/MessageType WireMock.WebSockets.WebSocketMessageBuilder::get_Type()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean WireMock.WebSockets.WebSocketMessageBuilder::get_ShouldClose()
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessageBuilder WireMock.WebSockets.WebSocketMessageBuilder::WithText(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessageBuilder WireMock.WebSockets.WebSocketMessageBuilder::WithBytes(System.Byte[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessageBuilder WireMock.WebSockets.WebSocketMessageBuilder::WithJson(System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessageBuilder WireMock.WebSockets.WebSocketMessageBuilder::WithDelay(System.TimeSpan)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessageBuilder WireMock.WebSockets.WebSocketMessageBuilder::WithDelay(System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessageBuilder WireMock.WebSockets.WebSocketMessageBuilder::AndClose()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessageBuilder WireMock.WebSockets.WebSocketMessageBuilder::Close()
+
+
+
+
+
+
+
+
+
-
- WireMock.WebSockets.WebSocketMessageSequenceBuilder
+
+ WireMock.WebSockets.WebSocketMessageConditionBuilder
-
+
- WireMock.WebSockets.WebSocketMessageSequence WireMock.WebSockets.WebSocketMessageSequenceBuilder::Build()
+ WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketMessageConditionBuilder::SendMessage(System.Action`1<WireMock.WebSockets.IWebSocketMessageBuilder>)
-
-
-
+
+
+
+
+
+
-
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketBuilder WireMock.WebSockets.WebSocketMessageConditionBuilder::SendMessages(System.Action`1<WireMock.WebSockets.IWebSocketMessagesBuilder>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.WebSockets.WebSocketMessageConditionBuilder::.ctor(WireMock.WebSockets.WebSocketBuilder,WireMock.Matchers.IMatcher)
+
+
+
+
+
+
+
+
+
+
-
- WireMock.WebSockets.WireMockWebSocketContext
+
+ WireMock.WebSockets.WebSocketMessagesBuilder
-
-
+
+
- System.Guid WireMock.WebSockets.WireMockWebSocketContext::get_ConnectionId()
+ System.Collections.Generic.List`1<WireMock.WebSockets.WebSocketMessageBuilder> WireMock.WebSockets.WebSocketMessagesBuilder::get_Messages()
-
+
-
+
+
+
+
+
+ WireMock.WebSockets.IWebSocketMessagesBuilder WireMock.WebSockets.WebSocketMessagesBuilder::AddMessage(System.Action`1<WireMock.WebSockets.IWebSocketMessageBuilder>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.WireMockWebSocketContext
+
+
+
+
+ System.Guid WireMock.WebSockets.WireMockWebSocketContext::get_ConnectionId()
+
+
+
+
+
+
Microsoft.AspNetCore.Http.HttpContext WireMock.WebSockets.WireMockWebSocketContext::get_HttpContext()
-
+
-
+
-
+
-
-
+
+
System.Net.WebSockets.WebSocket WireMock.WebSockets.WireMockWebSocketContext::get_WebSocket()
-
+
-
+
-
+
WireMock.IRequestMessage WireMock.WebSockets.WireMockWebSocketContext::get_RequestMessage()
-
+
-
+
-
+
WireMock.IMapping WireMock.WebSockets.WireMockWebSocketContext::get_Mapping()
-
+
-
+
-
+
-
-
+
+
WireMock.WebSockets.WebSocketConnectionRegistry WireMock.WebSockets.WireMockWebSocketContext::get_Registry()
-
+
-
+
-
+
-
-
+
+
WireMock.WebSockets.WebSocketBuilder WireMock.WebSockets.WireMockWebSocketContext::get_Builder()
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task WireMock.WebSockets.WireMockWebSocketContext::SendTextAsync(System.String,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task WireMock.WebSockets.WireMockWebSocketContext::SendBytesAsync(System.Byte[],System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task WireMock.WebSockets.WireMockWebSocketContext::SendJsonAsync(System.Object,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task WireMock.WebSockets.WireMockWebSocketContext::CloseAsync(System.Net.WebSockets.WebSocketCloseStatus,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void WireMock.WebSockets.WireMockWebSocketContext::SetScenarioState(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void WireMock.WebSockets.WireMockWebSocketContext::SetScenarioState(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void WireMock.WebSockets.WireMockWebSocketContext::UpdateScenarioState()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void WireMock.WebSockets.WireMockWebSocketContext::.ctor(Microsoft.AspNetCore.Http.HttpContext,System.Net.WebSockets.WebSocket,WireMock.IRequestMessage,WireMock.IMapping,WireMock.WebSockets.WebSocketConnectionRegistry,WireMock.WebSockets.WebSocketBuilder)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WireMock.WebSockets.WireMockWebSocketContext/<BroadcastJsonAsync>d__31
-
-
-
-
- System.Void WireMock.WebSockets.WireMockWebSocketContext/<BroadcastJsonAsync>d__31::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WireMock.WebSockets.WireMockWebSocketContext/<BroadcastTextAsync>d__30
-
-
-
-
- System.Void WireMock.WebSockets.WireMockWebSocketContext/<BroadcastTextAsync>d__30::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WireMock.Util.ConcurrentObservableCollection`1
-
-
-
-
- System.Void WireMock.Util.ConcurrentObservableCollection`1::ClearItems()
-
-
-
-
-
-
+
-
+
-
+
- System.Void WireMock.Util.ConcurrentObservableCollection`1::RemoveItem(System.Int32)
+ System.Threading.Tasks.Task WireMock.WebSockets.WireMockWebSocketContext::SendAsync(System.String,System.Threading.CancellationToken)
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- System.Void WireMock.Util.ConcurrentObservableCollection`1::InsertItem(System.Int32,T)
-
-
-
-
-
-
-
-
-
-
-
+
-
+
- System.Void WireMock.Util.ConcurrentObservableCollection`1::SetItem(System.Int32,T)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void WireMock.Util.ConcurrentObservableCollection`1::MoveItem(System.Int32,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.List`1<T> WireMock.Util.ConcurrentObservableCollection`1::ToList()
+ System.Threading.Tasks.Task WireMock.WebSockets.WireMockWebSocketContext::SendAsync(System.Byte[],System.Threading.CancellationToken)
-
+
+
+
+
-
+
+
+
+
+
+ System.Threading.Tasks.Task WireMock.WebSockets.WireMockWebSocketContext::SendAsJsonAsync(System.Object,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task WireMock.WebSockets.WireMockWebSocketContext::CloseAsync(System.Net.WebSockets.WebSocketCloseStatus,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.WebSockets.WireMockWebSocketContext::SetScenarioState(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.WebSockets.WireMockWebSocketContext::SetScenarioState(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.WebSockets.WireMockWebSocketContext::UpdateScenarioState()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.WebSockets.WireMockWebSocketContext::.ctor(Microsoft.AspNetCore.Http.HttpContext,System.Net.WebSockets.WebSocket,WireMock.IRequestMessage,WireMock.IMapping,WireMock.WebSockets.WebSocketConnectionRegistry,WireMock.WebSockets.WebSocketBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.WireMockWebSocketContext/<BroadcastJsonAsync>d__31
+
+
+
+
+ System.Void WireMock.WebSockets.WireMockWebSocketContext/<BroadcastJsonAsync>d__31::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.WebSockets.WireMockWebSocketContext/<BroadcastTextAsync>d__30
+
+
+
+
+ System.Void WireMock.WebSockets.WireMockWebSocketContext/<BroadcastTextAsync>d__30::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.Util.ConcurrentObservableCollection`1
+
+
+
+
+ System.Void WireMock.Util.ConcurrentObservableCollection`1::ClearItems()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Util.ConcurrentObservableCollection`1::RemoveItem(System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Util.ConcurrentObservableCollection`1::InsertItem(System.Int32,T)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Util.ConcurrentObservableCollection`1::SetItem(System.Int32,T)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Util.ConcurrentObservableCollection`1::MoveItem(System.Int32,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.List`1<T> WireMock.Util.ConcurrentObservableCollection`1::ToList()
+
+
+
+
+
+
+
+
+
+
T[] WireMock.Util.ConcurrentObservableCollection`1::ToArray()
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Util.ConcurrentObservableCollection`1::.ctor()
-
+
-
-
+
+
-
+
System.Void WireMock.Util.ConcurrentObservableCollection`1::.ctor(System.Collections.Generic.List`1<T>)
-
+
-
+
-
+
System.Void WireMock.Util.ConcurrentObservableCollection`1::.ctor(System.Collections.Generic.IEnumerable`1<T>)
-
+
-
+
-
+
@@ -21214,67 +21642,67 @@
System.Globalization.CultureInfo WireMock.Util.CultureInfoUtils::Parse(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Util.CultureInfoUtils::.cctor()
-
+
-
+
-
+
-
+
WireMock.Util.DateTimeUtils
-
-
+
+
System.DateTime WireMock.Util.DateTimeUtils::get_UtcNow()
-
+
-
+
-
+
@@ -21286,26 +21714,26 @@
System.Void WireMock.Util.DictionaryExtensions::Loop(System.Collections.Generic.IDictionary`2<TKey,TValue>,System.Action`2<TKey,TValue>)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -21317,278 +21745,278 @@
System.Int32 WireMock.Util.EnhancedFileSystemWatcher::get_Interval()
-
+
-
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::set_Interval(System.Int32)
-
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.EnhancedFileSystemWatcher::get_FilterRecentEvents()
-
+
-
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnChanged(System.IO.FileSystemEventArgs)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnCreated(System.IO.FileSystemEventArgs)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnDeleted(System.IO.FileSystemEventArgs)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnRenamed(System.IO.RenamedEventArgs)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::InitializeMembers(System.Int32)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Boolean WireMock.Util.EnhancedFileSystemWatcher::HasAnotherFileEventOccurredRecently(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnChanged(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnCreated(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnDeleted(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnRenamed(System.Object,System.IO.RenamedEventArgs)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::.ctor(System.Int32)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::.ctor(System.String,System.Int32)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::.ctor(System.String,System.String,System.Int32)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
@@ -21600,49 +22028,49 @@
System.Boolean WireMock.Util.FileHelper::TryReadMappingFileWithRetryAndDelay(WireMock.Handlers.IFileSystemHandler,System.String,System.String&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.Util.GuidUtils
-
-
+
+
System.Guid WireMock.Util.GuidUtils::NewGuid()
-
+
-
-
-
+
+
+
-
+
@@ -21654,237 +22082,237 @@
System.Boolean WireMock.Util.HttpStatusRangeParser::IsMatch(System.String,System.Object)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.HttpStatusRangeParser::IsMatch(System.String,System.Net.HttpStatusCode)
-
+
-
-
-
+
+
+
-
+
System.Boolean WireMock.Util.HttpStatusRangeParser::IsMatch(System.String,System.Int32)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Util.HttpVersionParser
-
-
+
+
System.String WireMock.Util.HttpVersionParser::Parse(System.String)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Util.HttpVersionParser::.cctor()
-
+
-
+
-
+
-
+
WireMock.Util.PortUtils
System.Int32 WireMock.Util.PortUtils::FindFreeTcpPort()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<System.Int32> WireMock.Util.PortUtils::FindFreeTcpPorts(System.Int32)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Boolean WireMock.Util.PortUtils::TryExtract(System.String,System.Boolean&,System.Boolean&,System.String&,System.String&,System.Int32&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Util.PortUtils::.cctor()
-
+
-
+
-
+
@@ -21896,58 +22324,58 @@
System.Collections.Generic.Dictionary`2<System.String,System.String> WireMock.Util.RegexUtils::GetNamedGroups(System.Text.RegularExpressions.Regex,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.ValueTuple`2<System.Boolean,System.Boolean> WireMock.Util.RegexUtils::MatchRegex(System.String,System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -21959,14 +22387,14 @@
System.IO.Stream WireMock.Util.StreamUtils::CreateStream(System.String)
-
+
-
-
-
+
+
+
-
+
@@ -21978,143 +22406,143 @@
System.ValueTuple`2<System.Boolean,System.Object> WireMock.Util.StringUtils::TryConvertToKnownType(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchOperator WireMock.Util.StringUtils::ParseMatchOperator(System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.StringUtils::TryParseQuotedString(System.String,System.String&,System.Char&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Util.StringUtils::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -22126,12 +22554,12 @@
System.Void WireMock.Util.SystemUtils::.cctor()
-
+
-
+
-
+
@@ -22143,211 +22571,211 @@
WireMock.Util.TinyMapperUtils WireMock.Util.TinyMapperUtils::get_Instance()
-
+
-
+
-
+
WireMock.Admin.Settings.ProxyAndRecordSettingsModel WireMock.Util.TinyMapperUtils::Map(WireMock.Settings.ProxyAndRecordSettings)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Settings.ProxyAndRecordSettings WireMock.Util.TinyMapperUtils::Map(WireMock.Admin.Settings.ProxyAndRecordSettingsModel)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Admin.Settings.ProxyUrlReplaceSettingsModel WireMock.Util.TinyMapperUtils::Map(WireMock.Settings.ProxyUrlReplaceSettings)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Settings.ProxyUrlReplaceSettings WireMock.Util.TinyMapperUtils::Map(WireMock.Admin.Settings.ProxyUrlReplaceSettingsModel)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Admin.Mappings.WebProxyModel WireMock.Util.TinyMapperUtils::Map(WireMock.Settings.WebProxySettings)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Settings.WebProxySettings WireMock.Util.TinyMapperUtils::Map(WireMock.Admin.Mappings.WebProxyModel)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Admin.Settings.WebSocketSettingsModel WireMock.Util.TinyMapperUtils::Map(WireMock.Settings.WebSocketSettings)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Settings.WebSocketSettings WireMock.Util.TinyMapperUtils::Map(WireMock.Admin.Settings.WebSocketSettingsModel)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.TinyMapperUtils::.ctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Util.UrlUtils
-
-
+
+
WireMock.Models.UrlDetails WireMock.Util.UrlUtils::Parse(System.Uri,Microsoft.AspNetCore.Http.PathString)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Util.UrlUtils::RemoveFirst(System.String,System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -22359,507 +22787,507 @@
WireMock.Util.IBodyData WireMock.Transformers.Transformer::TransformBody(WireMock.IMapping,WireMock.IRequestMessage,WireMock.IResponseMessage,WireMock.Util.IBodyData,WireMock.Types.ReplaceNodeOptions)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.Transformers.Transformer::TransformHeaders(WireMock.IMapping,WireMock.IRequestMessage,WireMock.IResponseMessage,System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>)
-
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Transformers.Transformer::TransformString(WireMock.IMapping,WireMock.IRequestMessage,WireMock.IResponseMessage,System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Transformers.Transformer::Transform(System.String,System.Object)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.ResponseMessage WireMock.Transformers.Transformer::Transform(WireMock.IMapping,WireMock.IRequestMessage,WireMock.IResponseMessage,System.Boolean,WireMock.Types.ReplaceNodeOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.ValueTuple`2<WireMock.Transformers.ITransformerContext,WireMock.Transformers.TransformModel> WireMock.Transformers.Transformer::Create(WireMock.IMapping,WireMock.IRequestMessage,WireMock.IResponseMessage)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Util.IBodyData WireMock.Transformers.Transformer::TransformBodyData(WireMock.Transformers.ITransformerContext,WireMock.Types.ReplaceNodeOptions,WireMock.Transformers.TransformModel,WireMock.Util.IBodyData,System.Boolean)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.Transformers.Transformer::TransformHeaders(WireMock.Transformers.ITransformerContext,WireMock.Transformers.TransformModel,System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.Util.IBodyData WireMock.Transformers.Transformer::TransformBodyAsJson(WireMock.Transformers.ITransformerContext,WireMock.Types.ReplaceNodeOptions,System.Object,WireMock.Util.IBodyData)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
Newtonsoft.Json.Linq.JToken WireMock.Transformers.Transformer::ReplaceSingleNode(WireMock.Transformers.ITransformerContext,WireMock.Types.ReplaceNodeOptions,System.String,System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Transformers.Transformer::WalkNode(WireMock.Transformers.ITransformerContext,WireMock.Types.ReplaceNodeOptions,Newtonsoft.Json.Linq.JToken,System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Transformers.Transformer::ReplaceNodeValue(WireMock.Types.ReplaceNodeOptions,Newtonsoft.Json.Linq.JToken,System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
Newtonsoft.Json.Linq.JToken WireMock.Transformers.Transformer::ParseAsJObject(System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.ValueTuple`2<System.Boolean,System.Object> WireMock.Transformers.Transformer::TryConvert(WireMock.Types.ReplaceNodeOptions,System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Util.IBodyData WireMock.Transformers.Transformer::TransformBodyAsString(WireMock.Transformers.ITransformerContext,System.Object,WireMock.Util.IBodyData)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
WireMock.Util.IBodyData WireMock.Transformers.Transformer::TransformBodyAsFile(WireMock.Transformers.ITransformerContext,System.Object,WireMock.Util.IBodyData,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Transformers.Transformer::.ctor(WireMock.Settings.WireMockServerSettings,WireMock.Transformers.ITransformerContextFactory)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -22871,24 +23299,24 @@
WireMock.Transformers.ITransformer WireMock.Transformers.TransformerFactory::Create(WireMock.Types.TransformerType,WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -22900,45 +23328,45 @@
WireMock.IMapping WireMock.Transformers.TransformModel::get_mapping()
-
+
-
+
-
+
WireMock.IRequestMessage WireMock.Transformers.TransformModel::get_request()
-
+
-
+
-
+
WireMock.IResponseMessage WireMock.Transformers.TransformModel::get_response()
-
+
-
+
-
+
System.Object WireMock.Transformers.TransformModel::get_data()
-
+
-
+
-
+
@@ -22950,57 +23378,57 @@
WireMock.Handlers.IFileSystemHandler WireMock.Transformers.Scriban.ScribanContext::get_FileSystemHandler()
-
+
-
+
-
+
System.String WireMock.Transformers.Scriban.ScribanContext::ParseAndRender(System.String,System.Object)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
System.Object WireMock.Transformers.Scriban.ScribanContext::ParseAndEvaluate(System.String,System.Object)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Transformers.Scriban.ScribanContext::.ctor(WireMock.Handlers.IFileSystemHandler,WireMock.Types.TransformerType)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -23012,32 +23440,32 @@
WireMock.Transformers.ITransformerContext WireMock.Transformers.Scriban.ScribanContextFactory::Create()
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Transformers.Scriban.ScribanContextFactory::.ctor(WireMock.Handlers.IFileSystemHandler,WireMock.Types.TransformerType)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
@@ -23049,144 +23477,144 @@
System.Int32 WireMock.Transformers.Scriban.WireMockListAccessor::GetLength(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object)
-
+
-
-
+
+
-
+
System.Object WireMock.Transformers.Scriban.WireMockListAccessor::GetValue(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object,System.Int32)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Transformers.Scriban.WireMockListAccessor::SetValue(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object,System.Int32,System.Object)
-
+
-
-
+
+
-
+
System.Int32 WireMock.Transformers.Scriban.WireMockListAccessor::GetMemberCount(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object)
-
+
-
-
+
+
-
+
System.Collections.Generic.IEnumerable`1<System.String> WireMock.Transformers.Scriban.WireMockListAccessor::GetMembers(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object)
-
+
-
-
+
+
-
+
System.Boolean WireMock.Transformers.Scriban.WireMockListAccessor::HasMember(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object,System.String)
-
+
-
-
+
+
-
+
System.Boolean WireMock.Transformers.Scriban.WireMockListAccessor::TryGetValue(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object,System.String,System.Object&)
-
+
-
-
+
+
-
+
System.Boolean WireMock.Transformers.Scriban.WireMockListAccessor::TrySetValue(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object,System.String,System.Object)
-
+
-
-
+
+
-
+
System.Boolean WireMock.Transformers.Scriban.WireMockListAccessor::TryGetItem(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object,System.Object,System.Object&)
-
+
-
-
+
+
-
+
System.Boolean WireMock.Transformers.Scriban.WireMockListAccessor::TrySetItem(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.Object,System.Object,System.Object)
-
+
-
-
+
+
-
+
System.Boolean WireMock.Transformers.Scriban.WireMockListAccessor::get_HasIndexer()
-
+
-
+
-
+
System.Type WireMock.Transformers.Scriban.WireMockListAccessor::get_IndexType()
-
+
-
+
-
+
@@ -23198,21 +23626,21 @@
Scriban.Runtime.IObjectAccessor WireMock.Transformers.Scriban.WireMockTemplateContext::GetMemberAccessorImpl(System.Object)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -23224,41 +23652,41 @@
System.String WireMock.Transformers.Handlebars.FileHelpers::Read(HandlebarsDotNet.Context,System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
HandlebarsDotNet.Helpers.Enums.Category WireMock.Transformers.Handlebars.FileHelpers::get_Category()
-
+
-
+
-
+
System.Void WireMock.Transformers.Handlebars.FileHelpers::.ctor(HandlebarsDotNet.IHandlebars,WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -23270,86 +23698,86 @@
HandlebarsDotNet.IHandlebars WireMock.Transformers.Handlebars.HandlebarsContext::get_Handlebars()
-
+
-
+
-
+
WireMock.Handlers.IFileSystemHandler WireMock.Transformers.Handlebars.HandlebarsContext::get_FileSystemHandler()
-
+
-
+
-
+
System.String WireMock.Transformers.Handlebars.HandlebarsContext::ParseAndRender(System.String,System.Object)
-
+
-
-
-
-
+
+
+
+
-
+
System.Object WireMock.Transformers.Handlebars.HandlebarsContext::ParseAndEvaluate(System.String,System.Object)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Transformers.Handlebars.HandlebarsContext::.ctor(HandlebarsDotNet.IHandlebars,WireMock.Handlers.IFileSystemHandler)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Transformers.Handlebars.HandlebarsContext::.cctor()
-
+
-
+
-
+
@@ -23361,38 +23789,38 @@
WireMock.Transformers.ITransformerContext WireMock.Transformers.Handlebars.HandlebarsContextFactory::Create()
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Transformers.Handlebars.HandlebarsContextFactory::.ctor(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -23404,70 +23832,70 @@
System.Void WireMock.Transformers.Handlebars.WireMockHandlebarsHelpers::Register(HandlebarsDotNet.IHandlebars,WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.String WireMock.Transformers.Handlebars.WireMockHandlebarsHelpers::GetBaseDirectory()
-
+
-
-
-
+
+
+
-
+
@@ -23479,2195 +23907,2195 @@
System.Boolean WireMock.Settings.WireMockServerSettingsParser::TryParseArguments(System.String[],System.Collections.IDictionary,WireMock.Settings.WireMockServerSettings&,WireMock.Logging.IWireMockLogger)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParseLoggerSettings(WireMock.Settings.WireMockServerSettings,WireMock.Logging.IWireMockLogger,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParseProxyAndRecordSettings(WireMock.Settings.WireMockServerSettings,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParsePortSettings(WireMock.Settings.WireMockServerSettings,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParseCertificateSettings(WireMock.Settings.WireMockServerSettings,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParseHandlebarsSettings(WireMock.Settings.WireMockServerSettings,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParseWebProxyAddressSettings(WireMock.Settings.ProxyAndRecordSettings,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParseProxyUrlReplaceSettings(WireMock.Settings.ProxyAndRecordSettings,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParseActivityTracingSettings(WireMock.Settings.WireMockServerSettings,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Settings.WireMockServerSettingsParser::ParseWebSocketSettings(WireMock.Settings.WireMockServerSettings,WireMock.Settings.SimpleSettingsParser)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.Services.RandomizerDoubleBetween0And1
System.Double WireMock.Services.RandomizerDoubleBetween0And1::Generate()
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Services.RandomizerDoubleBetween0And1::.ctor()
-
+
-
+
-
+
-
+
WireMock.Server.RespondWithAProvider
-
-
+
+
System.Guid WireMock.Server.RespondWithAProvider::get_Guid()
-
+
-
+
-
+
-
-
+
+
WireMock.Models.IWebhook[] WireMock.Server.RespondWithAProvider::get_Webhooks()
-
+
-
+
-
+
-
-
+
+
WireMock.Models.ITimeSettings WireMock.Server.RespondWithAProvider::get_TimeSettings()
-
+
-
+
-
+
-
-
+
+
System.Object WireMock.Server.RespondWithAProvider::get_Data()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<WireMock.Models.IdOrTexts> WireMock.Server.RespondWithAProvider::get_ProtoDefinition()
-
+
-
+
-
+
-
-
+
+
System.Void WireMock.Server.RespondWithAProvider::RespondWith(WireMock.ResponseProviders.IResponseProvider)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Server.RespondWithAProvider::ThenRespondWith(System.Action`1<WireMock.ResponseBuilders.IResponseBuilder>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Server.RespondWithAProvider::ThenRespondWithOK()
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Server.RespondWithAProvider::ThenRespondWithStatusCode(System.Int32)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Server.RespondWithAProvider::ThenRespondWithStatusCode(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Server.RespondWithAProvider::ThenRespondWithStatusCode(System.Net.HttpStatusCode)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithData(System.Object)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithGuid(System.String)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithGuid(System.Guid)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::DefineGuid(System.Guid)
-
+
-
-
-
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::DefineGuid(System.String)
-
+
-
-
-
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithTitle(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithDescription(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithPath(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::AtPriority(System.Int32)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::InScenario(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::InScenario(System.Int32)
-
+
-
-
-
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WhenStateIs(System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WhenStateIs(System.Int32)
-
+
-
-
-
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WillSetStateTo(System.String,System.Nullable`1<System.Int32>)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WillSetStateTo(System.Int32,System.Nullable`1<System.Int32>)
-
+
-
-
-
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithTimeSettings(WireMock.Models.ITimeSettings)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithWebhook(WireMock.Models.IWebhook[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithWebhook(System.String,System.String,System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>,System.String,System.Boolean,WireMock.Types.TransformerType)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithWebhook(System.String,System.String,System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>,System.Object,System.Boolean,WireMock.Types.TransformerType)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithWebhookFireAndForget(System.Boolean)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithProbability(System.Double)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithProtoDefinition(System.String[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.RespondWithAProvider::WithGraphQLSchema(System.String,System.Collections.Generic.IDictionary`2<System.String,System.Type>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Models.IWebhook WireMock.Server.RespondWithAProvider::InitWebhook(System.String,System.String,System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>,System.Boolean,WireMock.Types.TransformerType)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Server.RespondWithAProvider::.ctor(WireMock.RegistrationCallback,WireMock.Matchers.Request.IRequestMatcher,WireMock.Settings.WireMockServerSettings,WireMock.Util.IGuidUtils,WireMock.Util.IDateTimeUtils,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Server.WireMockServer
System.Void WireMock.Server.WireMockServer::InitAdmin()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::SaveStaticMappings(System.String)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::ReadStaticMappings(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::WatchStaticMappings(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Boolean WireMock.Server.WireMockServer::ReadStaticMappingAndAddOrUpdate(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::HealthGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::SettingsGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::SettingsUpdate(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingCodeGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
TEnum WireMock.Server.WireMockServer::GetEnumFromQuery(WireMock.IRequestMessage,TEnum)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.IMapping WireMock.Server.WireMockServer::FindMappingByGuid(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingPut(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingDelete(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Server.WireMockServer::TryParseGuidFromRequestMessage(WireMock.IRequestMessage,System.Guid&)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::SwaggerGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingsSave(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Admin.Mappings.MappingModel[] WireMock.Server.WireMockServer::ToMappingModels()
-
+
-
-
-
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingsGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingsCodeGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingsPost(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingsDelete(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Collections.Generic.IEnumerable`1<System.Guid> WireMock.Server.WireMockServer::MappingsDeleteMappingFromBody(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingsReset(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::ReloadStaticMappings(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::RequestGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::RequestDelete(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::RequestsGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::RequestsDelete(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::RequestsFind(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::RequestsFindByMappingGuid(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::ScenariosGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::ScenariosReset(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::ScenarioReset(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::ScenariosSetState(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::SavePact(System.String,System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::SavePact(System.IO.Stream)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::WithConsumer(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::WithProvider(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::DisposeEnhancedFileSystemWatcher()
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Server.WireMockServer::EnhancedFileSystemWatcherCreated(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Server.WireMockServer::EnhancedFileSystemWatcherChanged(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Server.WireMockServer::EnhancedFileSystemWatcherDeleted(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Text.Encoding WireMock.Server.WireMockServer::ToEncoding(WireMock.Admin.Mappings.EncodingModel)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.ResponseMessage WireMock.Server.WireMockServer::ToJson(T,System.Boolean,System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.ResponseMessage WireMock.Server.WireMockServer::ToResponseMessage(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
T WireMock.Server.WireMockServer::DeserializeObject(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
T[] WireMock.Server.WireMockServer::DeserializeRequestMessageToArray(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
T[] WireMock.Server.WireMockServer::DeserializeJsonToArray(System.String)
-
+
-
-
-
+
+
+
-
+
T[] WireMock.Server.WireMockServer::DeserializeObjectToArray(System.Object)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::.cctor()
-
+
-
-
+
+
-
+
@@ -25679,396 +26107,396 @@
System.String WireMock.Server.WireMockServer/AdminPaths::get_Files()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer/AdminPaths::get_Health()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer/AdminPaths::get_Mappings()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer/AdminPaths::get_MappingsCode()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer/AdminPaths::get_MappingsWireMockOrg()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer/AdminPaths::get_Requests()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer/AdminPaths::get_Settings()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer/AdminPaths::get_Scenarios()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer/AdminPaths::get_OpenApi()
-
+
-
+
-
+
WireMock.Matchers.RegexMatcher WireMock.Server.WireMockServer/AdminPaths::get_MappingsGuidPathMatcher()
-
+
-
+
-
+
WireMock.Matchers.RegexMatcher WireMock.Server.WireMockServer/AdminPaths::get_MappingsCodeGuidPathMatcher()
-
+
-
+
-
+
WireMock.Matchers.RegexMatcher WireMock.Server.WireMockServer/AdminPaths::get_RequestsGuidPathMatcher()
-
+
-
+
-
+
WireMock.Matchers.RegexMatcher WireMock.Server.WireMockServer/AdminPaths::get_ScenariosNameMatcher()
-
+
-
+
-
+
WireMock.Matchers.RegexMatcher WireMock.Server.WireMockServer/AdminPaths::get_ScenariosNameWithStateMatcher()
-
+
-
+
-
+
WireMock.Matchers.RegexMatcher WireMock.Server.WireMockServer/AdminPaths::get_ScenariosNameWithResetMatcher()
-
+
-
+
-
+
WireMock.Matchers.RegexMatcher WireMock.Server.WireMockServer/AdminPaths::get_FilesFilenamePathMatcher()
-
+
-
+
-
+
WireMock.Matchers.RegexMatcher WireMock.Server.WireMockServer/AdminPaths::get_ProtoDefinitionsIdPathMatcher()
-
+
-
+
-
+
System.Void WireMock.Server.WireMockServer/AdminPaths::.ctor(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.Server.WireMockServer
WireMock.IResponseMessage WireMock.Server.WireMockServer::ProtoDefinitionAdd(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::FilePost(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::FilePut(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::FileGet(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::FileHead(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::FileDelete(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Server.WireMockServer::GetFileNameFromRequestMessage(WireMock.IRequestMessage)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::.cctor()
-
+
-
+
-
+
@@ -26080,1532 +26508,1532 @@
System.Void WireMock.Server.WireMockServer::ConvertMappingsAndRegisterAsRespondProvider(System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel>,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Guid WireMock.Server.WireMockServer::ConvertMappingAndRegisterAsRespondProvider(WireMock.Admin.Mappings.MappingModel,System.Nullable`1<System.Guid>,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.Server.WireMockServer::InitRequestBuilder(WireMock.Admin.Mappings.RequestModel,WireMock.Admin.Mappings.MappingModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.Server.WireMockServer::InitResponseBuilder(WireMock.Admin.Mappings.ResponseModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Server.WireMockServer
System.Boolean WireMock.Server.WireMockServer::get_IsStarted()
-
+
-
+
-
-
+
+
-
+
System.Boolean WireMock.Server.WireMockServer::get_IsStartedWithAdminInterface()
-
+
-
+
-
-
+
+
-
+
System.Collections.Generic.List`1<System.Int32> WireMock.Server.WireMockServer::get_Ports()
-
+
-
+
-
+
System.Int32 WireMock.Server.WireMockServer::get_Port()
-
+
-
+
-
-
+
+
-
+
-
-
+
+
System.String[] WireMock.Server.WireMockServer::get_Urls()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Server.WireMockServer::get_Url()
-
+
-
+
-
-
+
+
-
+
System.String WireMock.Server.WireMockServer::get_Consumer()
-
+
-
+
-
+
System.String WireMock.Server.WireMockServer::get_Provider()
-
+
-
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.IMapping> WireMock.Server.WireMockServer::get_Mappings()
-
+
-
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Server.WireMockServer::get_MappingModels()
-
+
-
+
-
+
System.Collections.Concurrent.ConcurrentDictionary`2<System.String,WireMock.ScenarioState> WireMock.Server.WireMockServer::get_Scenarios()
-
+
-
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::Dispose()
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::Dispose(System.Boolean)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
System.Net.Http.IHttpClientFactory WireMock.Server.WireMockServer::CreateHttpClientFactory(System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Net.Http.HttpClient WireMock.Server.WireMockServer::CreateClient(System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Net.Http.HttpClient WireMock.Server.WireMockServer::CreateClient(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Net.Http.HttpClient[] WireMock.Server.WireMockServer::CreateClients(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::Start(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::Start(System.Action`1<WireMock.Settings.WireMockServerSettings>)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::Start(System.Nullable`1<System.Int32>,System.Boolean,System.Boolean)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::Start(System.String[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::StartWithAdminInterface(System.Nullable`1<System.Int32>,System.Boolean,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::StartWithAdminInterface(System.String[])
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::StartWithAdminInterfaceAndReadStaticMappings(System.String[])
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::Stop()
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::AddCatchAllMapping()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::Reset()
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::ResetMappings()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Boolean WireMock.Server.WireMockServer::DeleteMapping(System.Guid)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.Server.WireMockServer::DeleteMapping(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::AddGlobalProcessingDelay(System.TimeSpan)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::AllowPartialMapping(System.Boolean)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::SetAzureADAuthentication(System.String,System.String)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::SetBasicAuthentication(System.String,System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::RemoveAuthentication()
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::SetMaxRequestLogCount(System.Nullable`1<System.Int32>)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::SetRequestLogExpirationDuration(System.Nullable`1<System.Int32>)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::ResetScenarios()
-
+
-
-
-
+
+
+
-
+
System.Boolean WireMock.Server.WireMockServer::ResetScenario(System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.Server.WireMockServer::SetScenarioState(System.String,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Server.IWireMockServer WireMock.Server.WireMockServer::WithMapping(WireMock.Admin.Mappings.MappingModel[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.IWireMockServer WireMock.Server.WireMockServer::WithMapping(System.String)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::AddProtoDefinition(System.String,System.String[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Server.WireMockServer WireMock.Server.WireMockServer::AddGraphQLSchema(System.String,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Collections.Generic.Dictionary`2<System.String,System.Type>)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Server.WireMockServer::MappingToCSharpCode(System.Guid,WireMock.Types.MappingConverterType)
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Server.WireMockServer::MappingsToCSharpCode(WireMock.Types.MappingConverterType)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::InitSettings(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::<.ctor>b__122_0(WireMock.Owin.IWireMockMiddlewareOptions)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Net.Http.IHttpClientFactory WireMock.Server.WireMockServer::<.ctor>b__122_1()
-
+
-
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::.ctor(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Server.WireMockServer
-
-
+
+
WireMock.Server.IRespondWithAProvider WireMock.Server.WireMockServer::Given(WireMock.Matchers.Request.IRequestMatcher,System.Boolean)
-
+
-
-
-
+
+
+
-
+
WireMock.Server.IRespondWithAProvider WireMock.Server.WireMockServer::WhenRequest(System.Action`1<WireMock.RequestBuilders.IRequestBuilder>,System.Boolean)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -27617,516 +28045,516 @@
System.Void WireMock.Server.WireMockServer::ReadStaticWireMockOrgMappingAndAddOrUpdate(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::MappingsPostWireMockOrg(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Nullable`1<System.Guid> WireMock.Server.WireMockServer::ConvertWireMockOrgMappingAndRegisterAsRespondProvider(WireMock.Org.Abstractions.Mapping,System.Nullable`1<System.Guid>,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::ProcessWireMockOrgJObjectAndConvertToIDictionary(Newtonsoft.Json.Linq.JObject,System.Action`1<System.Collections.Generic.IDictionary`2<System.String,System.String>>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::ProcessWireMockOrgJObjectAndUseStringMatcher(Newtonsoft.Json.Linq.JObject,System.Action`2<System.String,WireMock.Matchers.IStringMatcher>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::ProcessWireMockOrgJObjectAndUseIMatcher(Newtonsoft.Json.Linq.JObject,System.Action`1<WireMock.Matchers.IMatcher>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Matchers.IStringMatcher WireMock.Server.WireMockServer::ProcessAsStringMatcher(Newtonsoft.Json.Linq.JProperty,System.String)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Server.WireMockServer
System.Void WireMock.Server.WireMockServer::add_LogEntriesChanged(System.Collections.Specialized.NotifyCollectionChangedEventHandler)
-
+
-
+
-
+
System.Void WireMock.Server.WireMockServer::remove_LogEntriesChanged(System.Collections.Specialized.NotifyCollectionChangedEventHandler)
-
+
-
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Logging.ILogEntry> WireMock.Server.WireMockServer::get_LogEntries()
-
+
-
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Logging.ILogEntry> WireMock.Server.WireMockServer::FindLogEntries(WireMock.Matchers.Request.IRequestMatcher[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Server.WireMockServer::ResetLogEntries()
-
+
-
-
-
+
+
+
-
+
System.Boolean WireMock.Server.WireMockServer::DeleteLogEntry(System.Guid)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Server.WireMockServer::LogEntries_CollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -28138,90 +28566,90 @@
WireMock.IResponseMessage WireMock.Server.WireMockServer::OpenApiConvertToMappings(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.IResponseMessage WireMock.Server.WireMockServer::OpenApiSaveToMappings(Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.Server.WireMockServer
-
-
+
+
System.Void WireMock.Server.WireMockServer::InitProxyAndRecord(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -28233,43 +28661,43 @@
System.Void WireMock.Server.WireMockServer/<ProxyAndRecordAsync>d__169::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -28281,32 +28709,32 @@
System.Collections.Generic.IReadOnlyCollection`1<WireMock.WebSockets.WireMockWebSocketContext> WireMock.Server.WireMockServer::GetWebSocketConnections()
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Collections.Generic.IReadOnlyCollection`1<WireMock.WebSockets.WireMockWebSocketContext> WireMock.Server.WireMockServer::GetWebSocketConnections(System.Guid)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
@@ -28318,20 +28746,20 @@
System.Void WireMock.Server.WireMockServer/<BroadcastToAllWebSocketsAsync>d__174::MoveNext()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
@@ -28343,20 +28771,20 @@
System.Void WireMock.Server.WireMockServer/<BroadcastToWebSocketsAsync>d__173::MoveNext()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
@@ -28368,1138 +28796,1138 @@
System.Void WireMock.Server.WireMockServer/<CloseWebSocketConnectionAsync>d__172::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Serialization.LogEntryMapper
-
-
+
+
WireMock.Admin.Requests.LogEntryModel WireMock.Serialization.LogEntryMapper::Map(WireMock.Logging.ILogEntry)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Serialization.LogEntryMapper::MapBody(WireMock.Logging.ILogEntry,WireMock.Admin.Requests.LogResponseModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
WireMock.Admin.Requests.LogRequestMatchModel WireMock.Serialization.LogEntryMapper::Map(WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Serialization.LogEntryMapper::.ctor(WireMock.Owin.IWireMockMiddlewareOptions)
-
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Serialization.MappingConverter
System.String WireMock.Serialization.MappingConverter::ToCSharpCode(WireMock.IMapping,WireMock.Serialization.MappingConverterSettings)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Admin.Mappings.MappingModel WireMock.Serialization.MappingConverter::ToMappingModel(WireMock.IMapping)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Serialization.MappingConverter::MapResponse(WireMock.ResponseBuilders.Response,WireMock.Admin.Mappings.MappingModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.String WireMock.Serialization.MappingConverter::GetString(WireMock.Matchers.IStringMatcher)
-
+
-
-
-
+
+
+
-
+
System.String[] WireMock.Serialization.MappingConverter::GetStringArray(System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IStringMatcher>)
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Serialization.MappingConverter::To2Or3Arguments(System.String,System.Nullable`1<WireMock.Matchers.MatchBehaviour>,System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IStringMatcher>)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Serialization.MappingConverter::To1Or2Or3Arguments(System.Nullable`1<WireMock.Matchers.MatchBehaviour>,System.Nullable`1<WireMock.Matchers.MatchOperator>,System.String[],System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.String WireMock.Serialization.MappingConverter::To1Or2Arguments(System.Nullable`1<WireMock.Matchers.MatchOperator>,System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IStringMatcher>)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Serialization.MappingConverter::ToValueArguments(System.String[],System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.Object> WireMock.Serialization.MappingConverter::MapHeaders(System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Serialization.MappingConverter::.ctor(WireMock.Serialization.MatcherMapper)
-
+
-
-
+
+
-
+
System.Void WireMock.Serialization.MappingConverter::.cctor()
-
+
-
+
-
+
@@ -29511,618 +29939,618 @@
WireMock.Types.MappingConverterType WireMock.Serialization.MappingConverterSettings::get_ConverterType()
-
+
-
+
-
+
System.Boolean WireMock.Serialization.MappingConverterSettings::get_AddStart()
-
+
-
+
-
+
-
+
WireMock.Serialization.MappingFileNameSanitizer
System.String WireMock.Serialization.MappingFileNameSanitizer::BuildSanitizedFileName(WireMock.IMapping)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Serialization.MappingFileNameSanitizer::.ctor(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Serialization.MappingToFileSaver
System.Void WireMock.Serialization.MappingToFileSaver::SaveMappingsToFile(WireMock.IMapping[],System.String)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Serialization.MappingToFileSaver::SaveMappingToFile(WireMock.IMapping,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Serialization.MappingToFileSaver::Save(System.Object,System.String)
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Serialization.MappingToFileSaver::.ctor(WireMock.Settings.WireMockServerSettings,WireMock.Serialization.MappingConverter)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Serialization.MatcherMapper
WireMock.Matchers.IMatcher[] WireMock.Serialization.MatcherMapper::Map(System.Collections.Generic.IEnumerable`1<WireMock.Admin.Mappings.MatcherModel>)
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.IMatcher WireMock.Serialization.MatcherMapper::Map(WireMock.Admin.Mappings.MatcherModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Admin.Mappings.MatcherModel[] WireMock.Serialization.MatcherMapper::Map(System.Collections.Generic.IEnumerable`1<WireMock.Matchers.IMatcher>,System.Action`1<WireMock.Admin.Mappings.MatcherModel>)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Admin.Mappings.MatcherModel WireMock.Serialization.MatcherMapper::Map(WireMock.Matchers.IMatcher,System.Action`1<WireMock.Admin.Mappings.MatcherModel>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Serialization.MatcherMapper::ParseStringPatterns(WireMock.Admin.Mappings.MatcherModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Matchers.ExactObjectMatcher WireMock.Serialization.MatcherMapper::CreateExactObjectMatcher(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
WireMock.Matchers.IMimePartMatcher WireMock.Serialization.MatcherMapper::CreateMimePartMatcher(WireMock.Matchers.MatchBehaviour,WireMock.Admin.Mappings.MatcherModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Matchers.IProtoBufMatcher WireMock.Serialization.MatcherMapper::CreateProtoBufMatcher(System.Nullable`1<WireMock.Matchers.MatchBehaviour>,System.Collections.Generic.IReadOnlyList`1<System.String>,WireMock.Admin.Mappings.MatcherModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Serialization.MatcherMapper::.ctor(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -30134,288 +30562,288 @@
System.ValueTuple`2<System.String,System.Byte[]> WireMock.Serialization.PactMapper::ToPact(WireMock.Server.WireMockServer,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Pact.Models.V2.PactRequest WireMock.Serialization.PactMapper::MapRequest(WireMock.Admin.Mappings.RequestModel,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Pact.Models.V2.PactResponse WireMock.Serialization.PactMapper::MapResponse(WireMock.Admin.Mappings.ResponseModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Object WireMock.Serialization.PactMapper::MapBody(WireMock.Admin.Mappings.ResponseModel)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Int32 WireMock.Serialization.PactMapper::MapStatusCode(System.Object)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.String WireMock.Serialization.PactMapper::MapQueryParameters(System.Collections.Generic.IList`1<WireMock.Admin.Mappings.ParamModel>)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.String> WireMock.Serialization.PactMapper::MapRequestHeaders(System.Collections.Generic.IList`1<WireMock.Admin.Mappings.HeaderModel>)
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.String> WireMock.Serialization.PactMapper::MapResponseHeaders(System.Collections.Generic.IDictionary`2<System.String,System.Object>)
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Object WireMock.Serialization.PactMapper::MapBody(WireMock.Admin.Mappings.BodyModel)
-
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Object WireMock.Serialization.PactMapper::MapMatcherPattern(WireMock.Admin.Mappings.MatcherModel)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Object WireMock.Serialization.PactMapper::TryDeserializeJsonStringAsObject(System.String)
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -30427,278 +30855,278 @@
WireMock.IMapping WireMock.Serialization.ProxyMappingConverter::ToMapping(WireMock.IMapping,WireMock.Settings.ProxyAndRecordSettings,WireMock.IRequestMessage,WireMock.ResponseMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Serialization.ProxyMappingConverter::.ctor(WireMock.Settings.WireMockServerSettings,WireMock.Util.IGuidUtils,WireMock.Util.IDateTimeUtils)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -30710,455 +31138,455 @@
System.String WireMock.Serialization.SwaggerMapper::ToSwagger(WireMock.Server.WireMockServer)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<NSwag.OpenApiParameter> WireMock.Serialization.SwaggerMapper::MapRequestQueryParameters(System.Collections.Generic.IList`1<WireMock.Admin.Mappings.ParamModel>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Collections.Generic.IEnumerable`1<NSwag.OpenApiParameter> WireMock.Serialization.SwaggerMapper::MapRequestHeaders(System.Collections.Generic.IList`1<WireMock.Admin.Mappings.HeaderModel>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<NSwag.OpenApiParameter> WireMock.Serialization.SwaggerMapper::MapRequestCookies(System.Collections.Generic.IList`1<WireMock.Admin.Mappings.CookieModel>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.ValueTuple`4<NJsonSchema.JsonSchema,System.String,System.String,System.Boolean> WireMock.Serialization.SwaggerMapper::GetDetailsFromMatcher(WireMock.Admin.Mappings.MatcherModel)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
NSwag.OpenApiRequestBody WireMock.Serialization.SwaggerMapper::MapRequestBody(WireMock.Admin.Mappings.RequestModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
NSwag.OpenApiResponse WireMock.Serialization.SwaggerMapper::MapResponse(WireMock.Admin.Mappings.ResponseModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
NJsonSchema.JsonSchema WireMock.Serialization.SwaggerMapper::GetJsonSchema(System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Object WireMock.Serialization.SwaggerMapper::MapRequestBody(WireMock.Admin.Mappings.BodyModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.String WireMock.Serialization.SwaggerMapper::GetContentType(WireMock.Admin.Mappings.RequestModel)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Serialization.SwaggerMapper::GetPatternAsStringFromMatchers(System.Collections.Generic.IList`1<WireMock.Admin.Mappings.MatcherModel>,System.String)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.String WireMock.Serialization.SwaggerMapper::GetPatternAsStringFromMatcher(WireMock.Admin.Mappings.MatcherModel)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Admin.Mappings.MatcherModel WireMock.Serialization.SwaggerMapper::GetMatcher(WireMock.Admin.Mappings.MatcherModel,WireMock.Admin.Mappings.MatcherModel[])
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Serialization.SwaggerMapper::.cctor()
-
+
-
+
-
+
@@ -31170,43 +31598,43 @@
WireMock.Models.TimeSettingsModel WireMock.Serialization.TimeSettingsMapper::Map(WireMock.Models.ITimeSettings)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Models.ITimeSettings WireMock.Serialization.TimeSettingsMapper::Map(WireMock.Models.TimeSettingsModel)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -31218,139 +31646,139 @@
WireMock.Models.IWebhook WireMock.Serialization.WebhookMapper::Map(WireMock.Admin.Mappings.WebhookModel)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Admin.Mappings.WebhookModel WireMock.Serialization.WebhookMapper::Map(WireMock.Models.IWebhook)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -31362,15 +31790,15 @@
System.Void WireMock.ResponseProviders.DynamicAsyncResponseProvider::.ctor(System.Func`3<Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage,System.Threading.Tasks.Task`1<WireMock.IResponseMessage>>)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -31382,14 +31810,14 @@
System.Void WireMock.ResponseProviders.DynamicAsyncResponseProvider/<ProvideResponseAsync>d__2::MoveNext()
-
+
-
-
-
+
+
+
-
+
@@ -31401,29 +31829,29 @@
System.Threading.Tasks.Task`1<System.ValueTuple`2<WireMock.IResponseMessage,WireMock.IMapping>> WireMock.ResponseProviders.DynamicResponseProvider::ProvideResponseAsync(WireMock.IMapping,Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage,WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.ResponseProviders.DynamicResponseProvider::.ctor(System.Func`3<Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage,WireMock.IResponseMessage>)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -31435,16 +31863,16 @@
System.Void WireMock.ResponseProviders.ProxyAsyncResponseProvider::.ctor(System.Func`4<Microsoft.AspNetCore.Http.HttpContext,WireMock.IRequestMessage,WireMock.Settings.WireMockServerSettings,System.Threading.Tasks.Task`1<WireMock.IResponseMessage>>,WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -31456,801 +31884,774 @@
System.Void WireMock.ResponseProviders.ProxyAsyncResponseProvider/<ProvideResponseAsync>d__3::MoveNext()
-
+
-
-
-
+
+
+
-
+
-
+
+ WireMock.ResponseProviders.WebSocketHandledResponse
+
+
+
+
+ System.Void WireMock.ResponseProviders.WebSocketHandledResponse::.ctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
WireMock.ResponseProviders.WebSocketResponseProvider
-
-
+
+
WireMock.WebSockets.WebSocketMessage WireMock.ResponseProviders.WebSocketResponseProvider::CreateWebSocketMessage(System.Net.WebSockets.WebSocketReceiveResult,System.Byte[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.ResponseProviders.WebSocketResponseProvider::.ctor(WireMock.WebSockets.WebSocketBuilder)
-
+
-
-
-
-
+
+
-
+
-
+
WireMock.ResponseProviders.WebSocketResponseProvider/<>c
-
-
+
+
WireMock.WebSockets.WebSocketConnectionRegistry WireMock.ResponseProviders.WebSocketResponseProvider/<>c::<ProvideResponseAsync>b__2_0(System.Guid)
-
+
-
+
-
+
- WireMock.ResponseProviders.WebSocketResponseProvider/<ForwardMessagesAsync>d__7
+ WireMock.ResponseProviders.WebSocketResponseProvider/<ForwardMessagesAsync>d__6
- System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<ForwardMessagesAsync>d__7::MoveNext()
-
+ System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<ForwardMessagesAsync>d__6::MoveNext()
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.ResponseProviders.WebSocketResponseProvider/<HandleCustomAsync>d__4
-
-
+
+
System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<HandleCustomAsync>d__4::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.ResponseProviders.WebSocketResponseProvider/<HandleEchoAsync>d__3
-
-
+
+
System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<HandleEchoAsync>d__3::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
- WireMock.ResponseProviders.WebSocketResponseProvider/<HandleProxyAsync>d__6
+ WireMock.ResponseProviders.WebSocketResponseProvider/<HandleProxyAsync>d__5
- System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<HandleProxyAsync>d__6::MoveNext()
-
+ System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<HandleProxyAsync>d__5::MoveNext()
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
- WireMock.ResponseProviders.WebSocketResponseProvider/<HandleSequenceAsync>d__5
-
-
-
-
- System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<HandleSequenceAsync>d__5::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
+
WireMock.ResponseProviders.WebSocketResponseProvider/<ProvideResponseAsync>d__2
-
-
+
+
System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<ProvideResponseAsync>d__2::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
- WireMock.ResponseProviders.WebSocketResponseProvider/<WaitForCloseAsync>d__8
+ WireMock.ResponseProviders.WebSocketResponseProvider/<WaitForCloseAsync>d__7
- System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<WaitForCloseAsync>d__8::MoveNext()
-
+ System.Void WireMock.ResponseProviders.WebSocketResponseProvider/<WaitForCloseAsync>d__7::MoveNext()
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
-
- WireMock.ResponseProviders.WebSocketHandledResponse
-
-
-
-
- System.Void WireMock.ResponseProviders.WebSocketHandledResponse::.ctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
WireMock.ResponseBuilders.Response
-
-
+
+
WireMock.IMapping WireMock.ResponseBuilders.Response::get_Mapping()
-
+
-
+
-
+
System.Nullable`1<System.Int32> WireMock.ResponseBuilders.Response::get_MinimumDelayMilliseconds()
-
+
-
+
-
+
System.Nullable`1<System.Int32> WireMock.ResponseBuilders.Response::get_MaximumDelayMilliseconds()
-
+
-
+
-
+
System.Nullable`1<System.TimeSpan> WireMock.ResponseBuilders.Response::get_Delay()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.ResponseBuilders.Response::set_Delay(System.Nullable`1<System.TimeSpan>)
-
+
-
+
-
+
System.Boolean WireMock.ResponseBuilders.Response::get_UseTransformer()
-
+
-
+
-
+
WireMock.Types.TransformerType WireMock.ResponseBuilders.Response::get_TransformerType()
-
+
-
+
-
+
System.Boolean WireMock.ResponseBuilders.Response::get_UseTransformerForBodyAsFile()
-
+
-
+
-
+
WireMock.Types.ReplaceNodeOptions WireMock.ResponseBuilders.Response::get_TransformerReplaceNodeOptions()
-
+
-
+
-
+
-
-
+
+
WireMock.IResponseMessage WireMock.ResponseBuilders.Response::get_ResponseMessage()
-
+
-
+
-
+
-
-
+
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::Create(WireMock.ResponseMessage)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::Create(System.Func`1<WireMock.ResponseMessage>)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithStatusCode(System.Int32)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithStatusCode(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithStatusCode(System.Net.HttpStatusCode)
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithSuccess()
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithNotFound()
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithDelay(System.TimeSpan)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithDelay(System.Int32)
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithRandomDelay(System.Int32,System.Int32)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.String WireMock.ResponseBuilders.Response::<ProvideResponseAsync>g__RemoveFirstOccurrence|47_0(System.String,System.String)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.ResponseBuilders.Response::.ctor(WireMock.ResponseMessage)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.ResponseBuilders.Response::.cctor()
-
+
-
+
-
+
@@ -32262,122 +32663,122 @@
System.Void WireMock.ResponseBuilders.Response/<ProvideResponseAsync>d__47::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -32389,293 +32790,293 @@
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBody(System.Func`2<WireMock.IRequestMessage,System.String>,System.String,System.Text.Encoding)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBody(System.Func`2<WireMock.IRequestMessage,System.Threading.Tasks.Task`1<System.String>>,System.String,System.Text.Encoding)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithSseBody(System.Func`3<WireMock.IRequestMessage,WireMock.Models.IBlockingQueue`1<System.String>,System.Threading.Tasks.Task>,System.Nullable`1<System.TimeSpan>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBody(System.Byte[],System.String,System.Text.Encoding)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBodyFromFile(System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBody(System.String,System.String,System.Text.Encoding)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBodyAsJson(System.Object,System.Text.Encoding,System.Nullable`1<System.Boolean>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBodyAsJson(System.Object,System.Boolean)
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBodyAsJson(System.Func`2<WireMock.IRequestMessage,System.Object>,System.Text.Encoding)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBodyAsJson(System.Func`2<WireMock.IRequestMessage,System.Threading.Tasks.Task`1<System.Object>>,System.Text.Encoding)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBody(System.Object,JsonConverter.Abstractions.IJsonConverter,JsonConverter.Abstractions.JsonConverterOptions)
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithBody(System.Object,System.Text.Encoding,JsonConverter.Abstractions.IJsonConverter,JsonConverter.Abstractions.JsonConverterOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -32697,94 +33098,94 @@
System.Func`2<WireMock.IRequestMessage,WireMock.IResponseMessage> WireMock.ResponseBuilders.Response::get_Callback()
-
+
-
+
-
+
System.Func`2<WireMock.IRequestMessage,System.Threading.Tasks.Task`1<WireMock.IResponseMessage>> WireMock.ResponseBuilders.Response::get_CallbackAsync()
-
+
-
+
-
+
System.Boolean WireMock.ResponseBuilders.Response::get_WithCallbackUsed()
-
+
-
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithCallback(System.Func`2<WireMock.IRequestMessage,WireMock.IResponseMessage>)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithCallback(System.Func`2<WireMock.IRequestMessage,System.Threading.Tasks.Task`1<WireMock.IResponseMessage>>)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithCallbackInternal(System.Boolean,System.Func`2<WireMock.IRequestMessage,WireMock.IResponseMessage>)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithCallbackInternal(System.Boolean,System.Func`2<WireMock.IRequestMessage,System.Threading.Tasks.Task`1<WireMock.IResponseMessage>>)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -32796,142 +33197,142 @@
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithFault(WireMock.ResponseBuilders.FaultType,System.Nullable`1<System.Double>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
WireMock.ResponseBuilders.Response
-
-
+
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithHeader(System.String,System.String[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithHeaders(System.Collections.Generic.IDictionary`2<System.String,System.String>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithHeaders(System.Collections.Generic.IDictionary`2<System.String,System.String[]>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithHeaders(System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithTrailingHeader(System.String,System.String[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithTrailingHeaders(System.Collections.Generic.IDictionary`2<System.String,System.String>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithTrailingHeaders(System.Collections.Generic.IDictionary`2<System.String,System.String[]>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithTrailingHeaders(System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -32943,67 +33344,67 @@
WireMock.Settings.ProxyAndRecordSettings WireMock.ResponseBuilders.Response::get_ProxyAndRecordSettings()
-
+
-
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithProxy(System.String,System.String)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithProxy(WireMock.Settings.ProxyAndRecordSettings)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithProxy(System.String,System.Security.Cryptography.X509Certificates.X509Certificate2)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -33015,112 +33416,112 @@
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithTransformer(System.Boolean)
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithTransformer(WireMock.Types.ReplaceNodeOptions)
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithTransformer(WireMock.Types.TransformerType,System.Boolean,WireMock.Types.ReplaceNodeOptions)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.ResponseBuilders.Response
-
-
+
+
WireMock.WebSockets.WebSocketBuilder WireMock.ResponseBuilders.Response::get_WebSocketBuilder()
-
+
-
+
-
+
-
-
+
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithWebSocket(System.Action`1<WireMock.WebSockets.IWebSocketBuilder>)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithWebSocketProxy(System.String)
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.Response::WithWebSocketProxy(WireMock.Settings.ProxyAndRecordSettings)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -33132,204 +33533,204 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithClientIP(WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithClientIP(WireMock.Matchers.MatchOperator,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithClientIP(System.String[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithClientIP(WireMock.Matchers.MatchOperator,System.String[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithClientIP(System.Func`2<System.String,System.Boolean>[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
WireMock.RequestBuilders.Request
-
-
+
+
WireMock.IMapping WireMock.RequestBuilders.Request::get_Mapping()
-
+
-
+
-
+
-
-
+
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::Create()
-
+
-
-
-
+
+
+
-
+
System.Collections.Generic.IList`1<T> WireMock.RequestBuilders.Request::GetRequestMessageMatchers()
-
+
-
-
-
+
+
+
-
+
T WireMock.RequestBuilders.Request::GetRequestMessageMatcher()
-
+
-
-
-
+
+
+
-
+
T WireMock.RequestBuilders.Request::GetRequestMessageMatcher(System.Func`2<T,System.Boolean>)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::Add(T)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.RequestBuilders.Request::TryGetProtoBufMatcher(WireMock.Matchers.IProtoBufMatcher&)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.RequestBuilders.Request::.ctor(System.Collections.Generic.IList`1<WireMock.Matchers.Request.IRequestMatcher>)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -33341,176 +33742,176 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingConnect(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingDelete(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingGet(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingHead(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingOptions(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingPost(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingPatch(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingPut(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingTrace(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingAnyMethod()
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingMethod(System.String[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::UsingMethod(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,System.String[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -33522,177 +33923,177 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(System.String,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(System.Byte[],WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(System.Object,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(WireMock.Matchers.IMatcher)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(WireMock.Matchers.IMatcher[],WireMock.Matchers.MatchOperator)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(System.Func`2<System.String,System.Boolean>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(System.Func`2<System.Byte[],System.Boolean>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(System.Func`2<System.Object,System.Boolean>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(System.Func`2<WireMock.Util.IBodyData,System.Boolean>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBody(System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String>,System.Boolean>)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBodyAsJson(System.Object,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithBodyAsType(System.Func`2<T,System.Boolean>)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -33704,122 +34105,122 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithCookie(System.String,System.String,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithCookie(System.String,System.String,System.Boolean,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithCookie(System.String,System.String[],WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithCookie(System.String,System.String[],System.Boolean,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithCookie(System.String,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithCookie(System.String,System.Boolean,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithCookie(System.String,System.Boolean,WireMock.Matchers.MatchBehaviour,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithCookie(System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String>,System.Boolean>[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -33831,122 +34232,122 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHeader(System.String,System.String,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHeader(System.String,System.String,System.Boolean,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHeader(System.String,System.String[],WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHeader(System.String,System.String[],System.Boolean,WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHeader(System.String,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHeader(System.String,System.Boolean,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHeader(System.String,System.Boolean,WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHeader(System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String[]>,System.Boolean>[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -33958,14 +34359,14 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithHttpVersion(System.String,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
@@ -33977,43 +34378,43 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithMultiPart(WireMock.Matchers.IMatcher)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithMultiPart(WireMock.Matchers.IMatcher[],WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithMultiPart(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.IMatcher[])
-
+
-
-
-
-
+
+
+
+
-
+
@@ -34025,236 +34426,236 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,System.Boolean,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,System.String[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,System.Boolean,System.String[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,System.Boolean,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,WireMock.Matchers.MatchBehaviour,System.String[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,WireMock.Matchers.MatchBehaviour,System.Boolean,System.String[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,WireMock.Matchers.MatchBehaviour,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.String,WireMock.Matchers.MatchBehaviour,System.Boolean,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithParam(System.Func`2<System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>,System.Boolean>[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
WireMock.RequestBuilders.Request
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithPath(WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithPath(WireMock.Matchers.MatchOperator,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithPath(System.String[])
-
+
-
-
-
+
+
+
-
+
-
-
+
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithPath(WireMock.Matchers.MatchOperator,System.String[])
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithPath(System.Func`2<System.String,System.Boolean>[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -34266,130 +34667,130 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithUrl(WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithUrl(WireMock.Matchers.MatchOperator,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithUrl(System.String[])
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithUrl(WireMock.Matchers.MatchOperator,System.String[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithUrl(System.Func`2<System.String,System.Boolean>[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
WireMock.RequestBuilders.Request
-
-
+
+
System.Boolean WireMock.RequestBuilders.Request::get_IsWebSocket()
-
+
-
+
-
+
-
-
+
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.Request::WithWebSocketUpgrade(System.String[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -34401,34 +34802,34 @@
System.Boolean WireMock.Proxy.ProxyHelper::Check(WireMock.Settings.ProxySaveMappingSetting`1<T>,System.Func`1<System.Boolean>)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Proxy.ProxyHelper::.ctor(WireMock.Settings.WireMockServerSettings)
-
+
-
-
-
+
+
+
-
+
@@ -34440,29 +34841,29 @@
System.Boolean WireMock.Proxy.ProxyHelper/<>c__DisplayClass3_0::<SendAsync>b__0()
-
+
-
+
-
-
+
+
-
+
System.Boolean WireMock.Proxy.ProxyHelper/<>c__DisplayClass3_0::<SendAsync>b__1()
-
+
-
+
-
-
+
+
-
+
@@ -34474,58 +34875,58 @@
System.Void WireMock.Proxy.ProxyHelper/<SendAsync>d__3::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -34537,23 +34938,23 @@
System.String WireMock.Proxy.ProxyUrlTransformer::Transform(WireMock.Settings.WireMockServerSettings,WireMock.Settings.ProxyUrlReplaceSettings,System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -34565,45 +34966,45 @@
System.String WireMock.Pact.Models.V2.Interaction::get_Description()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.Interaction::get_ProviderState()
-
+
-
+
-
+
WireMock.Pact.Models.V2.PactRequest WireMock.Pact.Models.V2.Interaction::get_Request()
-
+
-
+
-
+
WireMock.Pact.Models.V2.PactResponse WireMock.Pact.Models.V2.Interaction::get_Response()
-
+
-
+
-
+
@@ -34615,45 +35016,45 @@
System.String WireMock.Pact.Models.V2.MatchingRule::get_Match()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.MatchingRule::get_Min()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.MatchingRule::get_Max()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.MatchingRule::get_Regex()
-
+
-
+
-
+
@@ -34665,23 +35066,23 @@
System.String WireMock.Pact.Models.V2.Metadata::get_PactSpecificationVersion()
-
+
-
+
-
+
WireMock.Pact.Models.V2.PactSpecification WireMock.Pact.Models.V2.Metadata::get_PactSpecification()
-
+
-
+
-
+
@@ -34693,45 +35094,45 @@
WireMock.Pact.Models.V2.Pacticipant WireMock.Pact.Models.V2.Pact::get_Consumer()
-
+
-
+
-
+
System.Collections.Generic.List`1<WireMock.Pact.Models.V2.Interaction> WireMock.Pact.Models.V2.Pact::get_Interactions()
-
+
-
+
-
+
WireMock.Pact.Models.V2.Metadata WireMock.Pact.Models.V2.Pact::get_Metadata()
-
+
-
+
-
+
WireMock.Pact.Models.V2.Pacticipant WireMock.Pact.Models.V2.Pact::get_Provider()
-
+
-
+
-
+
@@ -34743,12 +35144,12 @@
System.String WireMock.Pact.Models.V2.Pacticipant::get_Name()
-
+
-
+
-
+
@@ -34760,56 +35161,56 @@
System.Collections.Generic.IDictionary`2<System.String,System.String> WireMock.Pact.Models.V2.PactRequest::get_Headers()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.PactRequest::get_Method()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.PactRequest::get_Path()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.PactRequest::get_Query()
-
+
-
+
-
+
System.Object WireMock.Pact.Models.V2.PactRequest::get_Body()
-
+
-
+
-
+
@@ -34821,34 +35222,34 @@
System.Object WireMock.Pact.Models.V2.PactResponse::get_Body()
-
+
-
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.String> WireMock.Pact.Models.V2.PactResponse::get_Headers()
-
+
-
+
-
+
System.Int32 WireMock.Pact.Models.V2.PactResponse::get_Status()
-
+
-
+
-
+
@@ -34860,34 +35261,34 @@
System.String WireMock.Pact.Models.V2.PactRust::get_Ffi()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.PactRust::get_Mockserver()
-
+
-
+
-
+
System.String WireMock.Pact.Models.V2.PactRust::get_Models()
-
+
-
+
-
+
@@ -34899,12 +35300,12 @@
System.String WireMock.Pact.Models.V2.PactSpecification::get_Version()
-
+
-
+
-
+
@@ -34916,1147 +35317,1147 @@
System.String WireMock.Pact.Models.V2.ProviderState::get_Name()
-
+
-
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.String> WireMock.Pact.Models.V2.ProviderState::get_Params()
-
+
-
+
-
+
-
+
WireMock.Owin.AspNetCoreSelfHost
-
-
+
+
System.Void WireMock.Owin.AspNetCoreSelfHost::AddCors(Microsoft.Extensions.DependencyInjection.IServiceCollection)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.AspNetCoreSelfHost::UseCors(Microsoft.AspNetCore.Builder.IApplicationBuilder)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.Owin.AspNetCoreSelfHost
-
-
+
+
System.Boolean WireMock.Owin.AspNetCoreSelfHost::get_IsStarted()
-
+
-
+
-
+
-
-
+
+
System.Collections.Generic.List`1<System.String> WireMock.Owin.AspNetCoreSelfHost::get_Urls()
-
+
-
+
-
+
-
-
+
+
System.Collections.Generic.List`1<System.Int32> WireMock.Owin.AspNetCoreSelfHost::get_Ports()
-
+
-
+
-
+
System.Exception WireMock.Owin.AspNetCoreSelfHost::get_RunningException()
-
+
-
+
-
+
-
-
+
+
System.Threading.Tasks.Task WireMock.Owin.AspNetCoreSelfHost::StartAsync()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Threading.Tasks.Task WireMock.Owin.AspNetCoreSelfHost::RunHost(System.Threading.CancellationToken)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Threading.Tasks.Task WireMock.Owin.AspNetCoreSelfHost::StopAsync()
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
System.String WireMock.Owin.AspNetCoreSelfHost::ReplaceHostWithLocalhost(System.String)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.AspNetCoreSelfHost::.ctor(WireMock.Owin.IWireMockMiddlewareOptions,WireMock.Owin.HostUrlOptions)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.Owin.AspNetCoreSelfHost
-
-
+
+
System.Void WireMock.Owin.AspNetCoreSelfHost::SetKestrelOptionsLimits(Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerOptions)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.AspNetCoreSelfHost::SetHttpsAndUrls(Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerOptions,WireMock.Owin.IWireMockMiddlewareOptions,System.Collections.Generic.IEnumerable`1<WireMock.Owin.HostUrlDetails>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.AspNetCoreSelfHost::SetHttp2AsProtocolsOnListenOptions(Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.AspNetCoreSelfHost::Listen(Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerOptions,WireMock.Owin.HostUrlDetails,System.Action`1<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Owin.IWebHostBuilderExtensions
-
-
+
+
Microsoft.AspNetCore.Hosting.IWebHostBuilder WireMock.Owin.IWebHostBuilderExtensions::ConfigureAppConfigurationUsingEnvironmentVariables(Microsoft.AspNetCore.Hosting.IWebHostBuilder)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
+
+
Microsoft.AspNetCore.Hosting.IWebHostBuilder WireMock.Owin.IWebHostBuilderExtensions::ConfigureKestrelServerOptions(Microsoft.AspNetCore.Hosting.IWebHostBuilder)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Owin.GlobalExceptionMiddleware
-
-
+
+
Microsoft.AspNetCore.Http.RequestDelegate WireMock.Owin.GlobalExceptionMiddleware::get_Next()
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task WireMock.Owin.GlobalExceptionMiddleware::Invoke(Microsoft.AspNetCore.Http.HttpContext)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void WireMock.Owin.GlobalExceptionMiddleware::.ctor(Microsoft.AspNetCore.Http.RequestDelegate,WireMock.Owin.IWireMockMiddlewareOptions,WireMock.Owin.Mappers.IOwinResponseMapper)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WireMock.Owin.GlobalExceptionMiddleware/<InvokeInternalAsync>d__7
-
-
-
-
- System.Void WireMock.Owin.GlobalExceptionMiddleware/<InvokeInternalAsync>d__7::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WireMock.Owin.HostUrlDetails
-
-
-
-
- System.Boolean WireMock.Owin.HostUrlDetails::get_IsHttps()
-
-
-
-
-
-
-
-
-
-
- System.Boolean WireMock.Owin.HostUrlDetails::get_IsHttp2()
-
-
-
-
-
-
-
-
-
-
- System.String WireMock.Owin.HostUrlDetails::get_Url()
-
-
-
-
-
-
-
-
-
-
- System.String WireMock.Owin.HostUrlDetails::get_Scheme()
-
-
-
-
-
-
-
-
-
-
- System.String WireMock.Owin.HostUrlDetails::get_Host()
-
-
-
-
-
-
-
-
-
-
- System.Int32 WireMock.Owin.HostUrlDetails::get_Port()
-
-
-
-
-
-
-
-
-
-
-
- WireMock.Owin.HostUrlOptions
-
-
-
-
- System.Collections.Generic.ICollection`1<System.String> WireMock.Owin.HostUrlOptions::get_Urls()
-
+
-
+
+
+
+
+
+ System.Threading.Tasks.Task WireMock.Owin.GlobalExceptionMiddleware::Invoke(Microsoft.AspNetCore.Http.HttpContext)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Owin.GlobalExceptionMiddleware::.ctor(Microsoft.AspNetCore.Http.RequestDelegate,WireMock.Owin.IWireMockMiddlewareOptions,WireMock.Owin.Mappers.IOwinResponseMapper)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.Owin.GlobalExceptionMiddleware/<InvokeInternalAsync>d__7
+
+
+
+
+ System.Void WireMock.Owin.GlobalExceptionMiddleware/<InvokeInternalAsync>d__7::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.Owin.HostUrlDetails
+
+
+
+
+ System.Boolean WireMock.Owin.HostUrlDetails::get_IsHttps()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean WireMock.Owin.HostUrlDetails::get_IsHttp2()
+
+
+
+
+
+
+
+
+
+
+ System.String WireMock.Owin.HostUrlDetails::get_Url()
+
+
+
+
+
+
+
+
+
+
+ System.String WireMock.Owin.HostUrlDetails::get_Scheme()
+
+
+
+
+
+
+
+
+
+
+ System.String WireMock.Owin.HostUrlDetails::get_Host()
+
+
+
+
+
+
+
+
+
+
+ System.Int32 WireMock.Owin.HostUrlDetails::get_Port()
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.Owin.HostUrlOptions
+
+
+
+
+ System.Collections.Generic.ICollection`1<System.String> WireMock.Owin.HostUrlOptions::get_Urls()
+
+
+
+
+
+
System.Nullable`1<System.Int32> WireMock.Owin.HostUrlOptions::get_Port()
-
+
-
+
-
+
WireMock.Types.HostingScheme WireMock.Owin.HostUrlOptions::get_HostingScheme()
-
+
-
+
-
+
System.Nullable`1<System.Boolean> WireMock.Owin.HostUrlOptions::get_UseHttp2()
-
+
-
+
-
+
-
-
+
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Owin.HostUrlDetails> WireMock.Owin.HostUrlOptions::GetDetails()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.String WireMock.Owin.HostUrlOptions::GetSchemeAsString(WireMock.Types.HostingScheme)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Owin.MappingMatcher
-
-
+
+
System.ValueTuple`2<WireMock.Owin.MappingMatcherResult,WireMock.Owin.MappingMatcherResult> WireMock.Owin.MappingMatcher::FindBestMatch(WireMock.RequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.MappingMatcher::LogException(WireMock.IMapping,System.Exception)
-
-
-
-
-
-
-
-
-
-
-
-
- System.String WireMock.Owin.MappingMatcher::GetNextState(WireMock.IMapping)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void WireMock.Owin.MappingMatcher::.ctor(WireMock.Owin.IWireMockMiddlewareOptions,WireMock.Services.IRandomizerDoubleBetween0And1)
-
-
-
-
-
-
-
-
-
-
-
-
-
- WireMock.Owin.MappingMatcherResult
-
-
-
-
- WireMock.IMapping WireMock.Owin.MappingMatcherResult::get_Mapping()
-
-
-
-
-
-
-
-
-
-
- WireMock.Matchers.Request.IRequestMatchResult WireMock.Owin.MappingMatcherResult::get_RequestMatchResult()
-
-
-
-
-
-
-
-
-
-
- System.Void WireMock.Owin.MappingMatcherResult::.ctor(WireMock.IMapping,WireMock.Matchers.Request.IRequestMatchResult)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WireMock.Owin.WireMockMiddleware
-
-
-
-
- System.Threading.Tasks.Task WireMock.Owin.WireMockMiddleware::Invoke(Microsoft.AspNetCore.Http.HttpContext)
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ System.String WireMock.Owin.MappingMatcher::GetNextState(WireMock.IMapping)
+
+
+
+
+
+
+
+
-
-
+
+
+
+
-
+
+
+
+
+
+ System.Void WireMock.Owin.MappingMatcher::.ctor(WireMock.Owin.IWireMockMiddlewareOptions,WireMock.Services.IRandomizerDoubleBetween0And1)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.Owin.MappingMatcherResult
+
+
+
+
+ WireMock.IMapping WireMock.Owin.MappingMatcherResult::get_Mapping()
+
+
+
+
+
+
+
+
+
+
+ WireMock.Matchers.Request.IRequestMatchResult WireMock.Owin.MappingMatcherResult::get_RequestMatchResult()
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Owin.MappingMatcherResult::.ctor(WireMock.IMapping,WireMock.Matchers.Request.IRequestMatchResult)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.Owin.WireMockMiddleware
+
+
+
+
+ System.Threading.Tasks.Task WireMock.Owin.WireMockMiddleware::Invoke(Microsoft.AspNetCore.Http.HttpContext)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
System.Void WireMock.Owin.WireMockMiddleware::UpdateScenarioState(WireMock.IMapping)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.WireMockMiddleware::LogRequest(WireMock.Logging.LogEntry,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.WireMockMiddleware::TryAddLogEntry(WireMock.Logging.LogEntry)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.WireMockMiddleware::TryRemoveLogEntry(WireMock.Logging.LogEntry)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.WireMockMiddleware::.ctor(Microsoft.AspNetCore.Http.RequestDelegate,WireMock.Owin.IWireMockMiddlewareOptions,WireMock.Owin.Mappers.IOwinRequestMapper,WireMock.Owin.Mappers.IOwinResponseMapper,WireMock.Owin.IMappingMatcher,WireMock.Util.IGuidUtils)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -36068,12 +36469,12 @@
System.Void WireMock.Owin.WireMockMiddleware/<>c/<<SendToWebhooksAsync>b__10_1>d::MoveNext()
-
+
-
+
-
+
@@ -36085,12 +36486,12 @@
System.Void WireMock.Owin.WireMockMiddleware/<>c/<<SendToWebhooksAsync>b__10_3>d::MoveNext()
-
+
-
+
-
+
@@ -36102,13 +36503,13 @@
System.Void WireMock.Owin.WireMockMiddleware/<>c__DisplayClass10_0::<SendToWebhooksAsync>b__0()
-
+
-
-
+
+
-
+
@@ -36120,282 +36521,282 @@
System.Void WireMock.Owin.WireMockMiddleware/<>c__DisplayClass10_1/<<SendToWebhooksAsync>b__2>d::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.Owin.WireMockMiddleware/<InvokeInternalAsync>d__9
-
-
+
+
System.Void WireMock.Owin.WireMockMiddleware/<InvokeInternalAsync>d__9::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -36407,796 +36808,796 @@
System.Void WireMock.Owin.WireMockMiddleware/<SendToWebhooksAsync>d__10::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Owin.WireMockMiddlewareOptions
-
-
+
+
WireMock.Logging.IWireMockLogger WireMock.Owin.WireMockMiddlewareOptions::get_Logger()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.TimeSpan> WireMock.Owin.WireMockMiddlewareOptions::get_RequestProcessingDelay()
-
+
-
+
-
+
WireMock.Matchers.IStringMatcher WireMock.Owin.WireMockMiddlewareOptions::get_AuthenticationMatcher()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Owin.WireMockMiddlewareOptions::get_AllowPartialMapping()
-
+
-
+
-
+
-
-
+
+
System.Collections.Concurrent.ConcurrentDictionary`2<System.Guid,WireMock.IMapping> WireMock.Owin.WireMockMiddlewareOptions::get_Mappings()
-
+
-
+
-
+
-
-
+
+
System.Collections.Concurrent.ConcurrentDictionary`2<System.String,WireMock.ScenarioState> WireMock.Owin.WireMockMiddlewareOptions::get_Scenarios()
-
+
-
+
-
+
-
-
+
+
WireMock.Util.ConcurrentObservableCollection`1<WireMock.Logging.LogEntry> WireMock.Owin.WireMockMiddlewareOptions::get_LogEntries()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Int32> WireMock.Owin.WireMockMiddlewareOptions::get_RequestLogExpirationDuration()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Int32> WireMock.Owin.WireMockMiddlewareOptions::get_MaxRequestLogCount()
-
+
-
+
-
+
-
-
+
+
System.Action`1<Microsoft.AspNetCore.Builder.IApplicationBuilder> WireMock.Owin.WireMockMiddlewareOptions::get_PreWireMockMiddlewareInit()
-
+
-
+
-
+
-
-
+
+
System.Action`1<Microsoft.AspNetCore.Builder.IApplicationBuilder> WireMock.Owin.WireMockMiddlewareOptions::get_PostWireMockMiddlewareInit()
-
+
-
+
-
+
-
-
+
+
System.Action`1<Microsoft.Extensions.DependencyInjection.IServiceCollection> WireMock.Owin.WireMockMiddlewareOptions::get_AdditionalServiceRegistration()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<WireMock.Types.CorsPolicyOptions> WireMock.Owin.WireMockMiddlewareOptions::get_CorsPolicyOptions()
-
+
-
+
-
+
-
-
+
+
Microsoft.AspNetCore.Server.Kestrel.Https.ClientCertificateMode WireMock.Owin.WireMockMiddlewareOptions::get_ClientCertificateMode()
-
+
-
+
-
+
-
-
+
+
System.Boolean WireMock.Owin.WireMockMiddlewareOptions::get_AcceptAnyClientCertificate()
-
+
-
+
-
+
-
-
+
+
WireMock.Handlers.IFileSystemHandler WireMock.Owin.WireMockMiddlewareOptions::get_FileSystemHandler()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Owin.WireMockMiddlewareOptions::get_AllowBodyForAllHttpMethods()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Owin.WireMockMiddlewareOptions::get_AllowOnlyDefinedHttpStatusCodeInResponse()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Owin.WireMockMiddlewareOptions::get_DisableJsonBodyParsing()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Owin.WireMockMiddlewareOptions::get_DisableRequestBodyDecompressing()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Owin.WireMockMiddlewareOptions::get_HandleRequestsSynchronously()
-
+
-
+
-
+
System.String WireMock.Owin.WireMockMiddlewareOptions::get_X509StoreName()
-
+
-
+
-
+
System.String WireMock.Owin.WireMockMiddlewareOptions::get_X509StoreLocation()
-
+
-
+
-
+
System.String WireMock.Owin.WireMockMiddlewareOptions::get_X509ThumbprintOrSubjectName()
-
+
-
+
-
+
System.String WireMock.Owin.WireMockMiddlewareOptions::get_X509CertificateFilePath()
-
+
-
+
-
+
System.Security.Cryptography.X509Certificates.X509Certificate2 WireMock.Owin.WireMockMiddlewareOptions::get_X509Certificate()
-
+
-
+
-
+
System.String WireMock.Owin.WireMockMiddlewareOptions::get_X509CertificatePassword()
-
+
-
+
-
+
System.Boolean WireMock.Owin.WireMockMiddlewareOptions::get_CustomCertificateDefined()
-
+
-
-
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Owin.WireMockMiddlewareOptions::get_SaveUnmatchedRequests()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Owin.WireMockMiddlewareOptions::get_DoNotSaveDynamicResponseInLogEntry()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<WireMock.Types.QueryParameterMultipleValueSupport> WireMock.Owin.WireMockMiddlewareOptions::get_QueryParameterMultipleValueSupport()
-
+
-
+
-
+
System.Boolean WireMock.Owin.WireMockMiddlewareOptions::get_ProxyAll()
-
+
-
+
-
+
-
-
+
+
WireMock.Settings.ActivityTracingOptions WireMock.Owin.WireMockMiddlewareOptions::get_ActivityTracingOptions()
-
+
-
+
-
+
-
-
+
+
System.Collections.Concurrent.ConcurrentDictionary`2<System.Guid,WireMock.WebSockets.WebSocketConnectionRegistry> WireMock.Owin.WireMockMiddlewareOptions::get_WebSocketRegistries()
-
+
-
+
-
+
-
-
+
+
WireMock.Settings.WebSocketSettings WireMock.Owin.WireMockMiddlewareOptions::get_WebSocketSettings()
-
+
-
+
-
+
-
+
WireMock.Owin.WireMockMiddlewareOptionsHelper
-
-
+
+
WireMock.Owin.IWireMockMiddlewareOptions WireMock.Owin.WireMockMiddlewareOptionsHelper::InitFromSettings(WireMock.Settings.WireMockServerSettings,WireMock.Owin.IWireMockMiddlewareOptions,System.Action`1<WireMock.Owin.IWireMockMiddlewareOptions>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Owin.Mappers.OwinRequestMapper
-
-
+
+
System.ValueTuple`2<WireMock.Models.UrlDetails,System.String> WireMock.Owin.Mappers.OwinRequestMapper::ParseRequest(Microsoft.AspNetCore.Http.HttpRequest)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Owin.Mappers.OwinRequestMapper/<MapAsync>d__0
-
-
+
+
System.Void WireMock.Owin.Mappers.OwinRequestMapper/<MapAsync>d__0::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Owin.Mappers.OwinResponseMapper
System.Int32 WireMock.Owin.Mappers.OwinResponseMapper::MapStatusCode(System.Int32)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Owin.Mappers.OwinResponseMapper::IsFault(WireMock.IResponseMessage)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Owin.Mappers.OwinResponseMapper::SetResponseHeaders(WireMock.IResponseMessage,System.Boolean,Microsoft.AspNetCore.Http.HttpResponse)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.Mappers.OwinResponseMapper::SetResponseTrailingHeaders(WireMock.IResponseMessage,Microsoft.AspNetCore.Http.HttpResponse)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.Mappers.OwinResponseMapper::AppendResponseHeader(Microsoft.AspNetCore.Http.HttpResponse,System.String,System.String[])
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.Mappers.OwinResponseMapper::.ctor(WireMock.Owin.IWireMockMiddlewareOptions)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.Mappers.OwinResponseMapper::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -37208,56 +37609,56 @@
System.Void WireMock.Owin.Mappers.OwinResponseMapper/<GetNormalBodyAsync>d__10::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -37269,383 +37670,383 @@
System.Void WireMock.Owin.Mappers.OwinResponseMapper/<HandleSseStringAsync>d__7::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Owin.Mappers.OwinResponseMapper/<MapAsync>d__6
-
-
+
+
System.Void WireMock.Owin.Mappers.OwinResponseMapper/<MapAsync>d__6::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Owin.ActivityTracing.WireMockActivitySource
System.String WireMock.Owin.ActivityTracing.WireMockActivitySource::GetVersion()
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Diagnostics.Activity WireMock.Owin.ActivityTracing.WireMockActivitySource::StartRequestActivity(System.String,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Owin.ActivityTracing.WireMockActivitySource::EnrichWithRequest(System.Diagnostics.Activity,WireMock.IRequestMessage,WireMock.Settings.ActivityTracingOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.ActivityTracing.WireMockActivitySource::EnrichWithResponse(System.Diagnostics.Activity,WireMock.IResponseMessage,WireMock.Settings.ActivityTracingOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.ActivityTracing.WireMockActivitySource::EnrichWithMappingMatch(System.Diagnostics.Activity,System.Nullable`1<System.Guid>,System.String,System.Boolean,System.Nullable`1<System.Double>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Owin.ActivityTracing.WireMockActivitySource::EnrichWithLogEntry(System.Diagnostics.Activity,WireMock.Logging.ILogEntry,WireMock.Settings.ActivityTracingOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Owin.ActivityTracing.WireMockActivitySource::RecordException(System.Diagnostics.Activity,System.Exception)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Owin.ActivityTracing.WireMockActivitySource::.cctor()
-
+
-
+
-
+
@@ -37657,94 +38058,94 @@
System.Void WireMock.Models.BlockingQueue`1::Write(T)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.Models.BlockingQueue`1::TryRead(T&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Models.BlockingQueue`1::Close()
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Void WireMock.Models.BlockingQueue`1::.ctor(System.Nullable`1<System.TimeSpan>)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
@@ -37756,103 +38157,103 @@
System.Nullable`1<System.DateTime> WireMock.Models.TimeSettings::get_Start()
-
+
-
+
-
+
System.Nullable`1<System.DateTime> WireMock.Models.TimeSettings::get_End()
-
+
-
+
-
+
System.Nullable`1<System.Int32> WireMock.Models.TimeSettings::get_TTL()
-
+
-
+
-
+
-
+
WireMock.Models.UrlDetails
-
-
+
+
System.Uri WireMock.Models.UrlDetails::get_Url()
-
+
-
+
-
+
-
-
+
+
System.Uri WireMock.Models.UrlDetails::get_AbsoluteUrl()
-
+
-
+
-
+
System.Void WireMock.Models.UrlDetails::.ctor(System.String)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Models.UrlDetails::.ctor(System.Uri)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Models.UrlDetails::.ctor(System.Uri,System.Uri)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -37864,12 +38265,12 @@
WireMock.Models.IWebhookRequest WireMock.Models.Webhook::get_Request()
-
+
-
+
-
+
@@ -37881,111 +38282,111 @@
System.String WireMock.Models.WebhookRequest::get_Url()
-
+
-
+
-
+
System.String WireMock.Models.WebhookRequest::get_Method()
-
+
-
+
-
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.Models.WebhookRequest::get_Headers()
-
+
-
+
-
+
WireMock.Util.IBodyData WireMock.Models.WebhookRequest::get_BodyData()
-
+
-
+
-
+
System.Nullable`1<System.Boolean> WireMock.Models.WebhookRequest::get_UseTransformer()
-
+
-
+
-
+
WireMock.Types.TransformerType WireMock.Models.WebhookRequest::get_TransformerType()
-
+
-
+
-
+
WireMock.Types.ReplaceNodeOptions WireMock.Models.WebhookRequest::get_TransformerReplaceNodeOptions()
-
+
-
+
-
+
System.Nullable`1<System.Int32> WireMock.Models.WebhookRequest::get_Delay()
-
+
-
+
-
+
System.Nullable`1<System.Int32> WireMock.Models.WebhookRequest::get_MinimumRandomDelay()
-
+
-
+
-
+
System.Nullable`1<System.Int32> WireMock.Models.WebhookRequest::get_MaximumRandomDelay()
-
+
-
+
-
+
@@ -37997,125 +38398,125 @@
System.Boolean WireMock.Matchers.AbstractJsonPartialMatcher::IsMatch(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.AbstractJsonPartialMatcher::.ctor(System.String,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.AbstractJsonPartialMatcher::.ctor(System.Object,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.AbstractJsonPartialMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Object,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
@@ -38127,73 +38528,73 @@
System.String WireMock.Matchers.CompositeMatcher::get_Name()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.CompositeMatcher::get_MatchOperator()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.CompositeMatcher::get_MatchBehaviour()
-
+
-
+
-
+
WireMock.Matchers.IMatcher[] WireMock.Matchers.CompositeMatcher::get_Matchers()
-
+
-
+
-
+
System.String WireMock.Matchers.CompositeMatcher::GetCSharpCodeArguments()
-
+
-
-
+
+
-
+
System.Void WireMock.Matchers.CompositeMatcher::.ctor(WireMock.Matchers.IMatcher[],WireMock.Matchers.MatchOperator,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -38205,280 +38606,280 @@
WireMock.Matchers.MatchResult WireMock.Matchers.ContentTypeMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.ContentTypeMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Matchers.ContentTypeMatcher::get_Name()
-
+
-
+
-
+
System.String WireMock.Matchers.ContentTypeMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.ContentTypeMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.ContentTypeMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Boolean)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.ContentTypeMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.ContentTypeMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],System.Boolean)
-
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Matchers.ExactMatcher
-
-
+
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.ExactMatcher::get_MatchBehaviour()
-
+
-
+
-
+
-
-
+
+
WireMock.Matchers.MatchResult WireMock.Matchers.ExactMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.ExactMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
-
-
+
+
WireMock.Matchers.MatchOperator WireMock.Matchers.ExactMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String WireMock.Matchers.ExactMatcher::get_Name()
-
+
-
+
-
+
-
-
+
+
System.Boolean WireMock.Matchers.ExactMatcher::get_IgnoreCase()
-
+
-
+
-
+
System.String WireMock.Matchers.ExactMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.ExactMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.ExactMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.ExactMatcher::.ctor(System.Boolean,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.ExactMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Boolean,WireMock.Matchers.MatchOperator,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -38490,232 +38891,386 @@
WireMock.Matchers.MatchBehaviour WireMock.Matchers.FormUrlEncodedMatcher::get_MatchBehaviour()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.FormUrlEncodedMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Boolean[] WireMock.Matchers.FormUrlEncodedMatcher::GetMatches(System.Collections.Generic.IDictionary`2<System.String,System.String>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.FormUrlEncodedMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Matchers.FormUrlEncodedMatcher::get_Name()
-
+
-
+
-
+
System.Boolean WireMock.Matchers.FormUrlEncodedMatcher::get_IgnoreCase()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.FormUrlEncodedMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String WireMock.Matchers.FormUrlEncodedMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.FormUrlEncodedMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Boolean,WireMock.Matchers.MatchOperator)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.FormUrlEncodedMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Boolean,WireMock.Matchers.MatchOperator)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.FormUrlEncodedMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],System.Boolean,WireMock.Matchers.MatchOperator)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.FormUrlEncodedMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],System.Boolean,WireMock.Matchers.MatchOperator)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
+
+
+
+
+
+ WireMock.Matchers.FuncMatcher
+
+
+
+
+ WireMock.Matchers.MatchBehaviour WireMock.Matchers.FuncMatcher::get_MatchBehaviour()
+
+
+
+
+
+
+
+
+
+
+ WireMock.Matchers.MatchResult WireMock.Matchers.FuncMatcher::IsMatch(System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.Matchers.MatchResult WireMock.Matchers.FuncMatcher::CreateMatchResult(System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String WireMock.Matchers.FuncMatcher::get_Name()
+
+
+
+
+
+
+
+
+
+
+ System.String WireMock.Matchers.FuncMatcher::GetCSharpCodeArguments()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Matchers.FuncMatcher::.ctor(System.Func`2<System.String,System.Boolean>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Matchers.FuncMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Func`2<System.String,System.Boolean>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Matchers.FuncMatcher::.ctor(System.Func`2<System.Byte[],System.Boolean>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void WireMock.Matchers.FuncMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Func`2<System.Byte[],System.Boolean>)
+
+
+
+
+
+
+
+
+
+
@@ -38727,187 +39282,187 @@
System.Object WireMock.Matchers.JmesPathMatcher::get_Value()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.JmesPathMatcher::get_MatchBehaviour()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.JmesPathMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.JmesPathMatcher::IsMatch(System.Object)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.JmesPathMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.JmesPathMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String WireMock.Matchers.JmesPathMatcher::get_Name()
-
+
-
+
-
+
System.String WireMock.Matchers.JmesPathMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.JmesPathMatcher::.ctor(System.String[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JmesPathMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JmesPathMatcher::.ctor(WireMock.Matchers.MatchOperator,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JmesPathMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -38919,349 +39474,349 @@
System.String WireMock.Matchers.JsonMatcher::get_Name()
-
+
-
+
-
+
System.Object WireMock.Matchers.JsonMatcher::get_Value()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.JsonMatcher::get_MatchBehaviour()
-
+
-
+
-
+
System.Boolean WireMock.Matchers.JsonMatcher::get_IgnoreCase()
-
+
-
+
-
+
System.Boolean WireMock.Matchers.JsonMatcher::get_Regex()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.JsonMatcher::IsMatch(System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Matchers.JsonMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Boolean WireMock.Matchers.JsonMatcher::IsMatch(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
Newtonsoft.Json.Linq.JToken WireMock.Matchers.JsonMatcher::RenameJToken(Newtonsoft.Json.Linq.JToken)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
Newtonsoft.Json.Linq.JProperty WireMock.Matchers.JsonMatcher::RenameJProperty(Newtonsoft.Json.Linq.JProperty)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
Newtonsoft.Json.Linq.JArray WireMock.Matchers.JsonMatcher::RenameJArray(Newtonsoft.Json.Linq.JArray)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
Newtonsoft.Json.Linq.JObject WireMock.Matchers.JsonMatcher::RenameJObject(Newtonsoft.Json.Linq.JObject)
-
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Matchers.JsonMatcher::ToUpper(System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Matchers.JsonMatcher::.ctor(System.String,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JsonMatcher::.ctor(System.Object,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JsonMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Object,System.Boolean,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
@@ -39273,84 +39828,84 @@
System.String WireMock.Matchers.JsonPartialMatcher::get_Name()
-
+
-
+
-
+
System.Boolean WireMock.Matchers.JsonPartialMatcher::IsMatch(System.String,System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Matchers.JsonPartialMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.JsonPartialMatcher::.ctor(System.String,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JsonPartialMatcher::.ctor(System.Object,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JsonPartialMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Object,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
@@ -39362,84 +39917,84 @@
System.String WireMock.Matchers.JsonPartialWildcardMatcher::get_Name()
-
+
-
+
-
+
System.Boolean WireMock.Matchers.JsonPartialWildcardMatcher::IsMatch(System.String,System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Matchers.JsonPartialWildcardMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.JsonPartialWildcardMatcher::.ctor(System.String,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JsonPartialWildcardMatcher::.ctor(System.Object,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.JsonPartialWildcardMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Object,System.Boolean,System.Boolean)
-
+
-
-
-
+
+
+
-
+
@@ -39451,230 +40006,230 @@
WireMock.Matchers.MatchBehaviour WireMock.Matchers.JsonPathMatcher::get_MatchBehaviour()
-
+
-
+
-
+
System.Object WireMock.Matchers.JsonPathMatcher::get_Value()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.JsonPathMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.JsonPathMatcher::IsMatch(System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.JsonPathMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.JsonPathMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String WireMock.Matchers.JsonPathMatcher::get_Name()
-
+
-
+
-
+
System.String WireMock.Matchers.JsonPathMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Double WireMock.Matchers.JsonPathMatcher::IsMatch(Newtonsoft.Json.Linq.JToken)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
Newtonsoft.Json.Linq.JToken WireMock.Matchers.JsonPathMatcher::ConvertJTokenToJArrayIfNeeded(Newtonsoft.Json.Linq.JToken)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.JsonPathMatcher::.ctor(System.String[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.JsonPathMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.JsonPathMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -39686,14 +40241,14 @@
System.Boolean WireMock.Matchers.MatcherExtensions::IsPerfectMatch(WireMock.Matchers.IStringMatcher,System.String)
-
+
-
-
-
+
+
+
-
+
@@ -39705,207 +40260,207 @@
WireMock.Matchers.MatchBehaviour WireMock.Matchers.SimMetricsMatcher::get_MatchBehaviour()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.SimMetricsMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.String WireMock.Matchers.SimMetricsMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
SimMetrics.Net.API.IStringMetric WireMock.Matchers.SimMetricsMatcher::GetStringMetricType()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.SimMetricsMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.SimMetricsMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String WireMock.Matchers.SimMetricsMatcher::get_Name()
-
+
-
+
-
+
System.Void WireMock.Matchers.SimMetricsMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,SimMetrics.Net.SimMetricType)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.SimMetricsMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,SimMetrics.Net.SimMetricType)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.SimMetricsMatcher::.ctor(System.String[],SimMetrics.Net.SimMetricType)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.SimMetricsMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],SimMetrics.Net.SimMetricType)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.SimMetricsMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],SimMetrics.Net.SimMetricType,WireMock.Matchers.MatchOperator)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -39917,157 +40472,157 @@
WireMock.Matchers.MatchBehaviour WireMock.Matchers.XPathMatcher::get_MatchBehaviour()
-
+
-
+
-
+
WireMock.Admin.Mappings.XmlNamespace[] WireMock.Matchers.XPathMatcher::get_XmlNamespaceMap()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.XPathMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.XPathMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.XPathMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String WireMock.Matchers.XPathMatcher::get_Name()
-
+
-
+
-
+
System.String WireMock.Matchers.XPathMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.XPathMatcher::CreateMatchResult(System.Double,System.Exception)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.XPathMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.XPathMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,WireMock.Admin.Mappings.XmlNamespace[],AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -40079,217 +40634,217 @@
System.Boolean WireMock.Matchers.XPathMatcher/XPathEvaluator::get_IsXmlDocumentLoaded()
-
+
-
+
-
+
System.Void WireMock.Matchers.XPathMatcher/XPathEvaluator::Load(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Boolean[] WireMock.Matchers.XPathMatcher/XPathEvaluator::Evaluate(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],System.Collections.Generic.IEnumerable`1<WireMock.Admin.Mappings.XmlNamespace>)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Object WireMock.Matchers.XPathMatcher/XPathEvaluator::Evaluate(System.Xml.XPath.XPathNavigator,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Collections.Generic.IEnumerable`1<WireMock.Admin.Mappings.XmlNamespace>)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Xml.XmlNamespaceManager WireMock.Matchers.XPathMatcher/XPathEvaluator::GetXmlNamespaceManager(System.Collections.Generic.IEnumerable`1<WireMock.Admin.Mappings.XmlNamespace>)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Matchers.Request.RequestMatchResult
-
-
+
+
System.Double WireMock.Matchers.Request.RequestMatchResult::get_TotalScore()
-
+
-
+
-
+
-
-
+
+
System.Int32 WireMock.Matchers.Request.RequestMatchResult::get_TotalNumber()
-
+
-
+
-
+
-
-
+
+
System.Boolean WireMock.Matchers.Request.RequestMatchResult::get_IsPerfectMatch()
-
+
-
+
-
+
-
-
+
+
System.Double WireMock.Matchers.Request.RequestMatchResult::get_AverageTotalScore()
-
+
-
+
-
-
+
+
-
+
-
-
+
+
System.Collections.Generic.IList`1<WireMock.Matchers.Request.MatchDetail> WireMock.Matchers.Request.RequestMatchResult::get_MatchDetails()
-
+
-
+
-
+
-
-
+
+
System.Double WireMock.Matchers.Request.RequestMatchResult::AddScore(System.Type,System.Double,System.Exception)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Double WireMock.Matchers.Request.RequestMatchResult::AddMatchDetail(WireMock.Matchers.Request.MatchDetail)
-
+
-
-
-
-
+
+
+
+
-
+
System.Int32 WireMock.Matchers.Request.RequestMatchResult::CompareTo(System.Object)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -40301,285 +40856,285 @@
System.Func`2<System.String,System.Boolean> WireMock.Matchers.Request.RequestMessageBodyMatcher::get_MatchOnBodyAsStringFunc()
-
+
-
+
-
+
System.Func`2<System.Byte[],System.Boolean> WireMock.Matchers.Request.RequestMessageBodyMatcher::get_MatchOnBodyAsBytesFunc()
-
+
-
+
-
+
System.Func`2<System.Object,System.Boolean> WireMock.Matchers.Request.RequestMessageBodyMatcher::get_MatchOnBodyAsJsonFunc()
-
+
-
+
-
+
System.Func`2<WireMock.Util.IBodyData,System.Boolean> WireMock.Matchers.Request.RequestMessageBodyMatcher::get_MatchOnBodyAsBodyDataFunc()
-
+
-
+
-
+
System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String>,System.Boolean> WireMock.Matchers.Request.RequestMessageBodyMatcher::get_MatchOnBodyAsFormUrlEncodedFunc()
-
+
-
+
-
+
WireMock.Matchers.IMatcher[] WireMock.Matchers.Request.RequestMessageBodyMatcher::get_Matchers()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessageBodyMatcher::get_MatchOperator()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageBodyMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageBodyMatcher::CalculateMatchResult(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Byte[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Object)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(System.Func`2<System.String,System.Boolean>)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(System.Func`2<System.Byte[],System.Boolean>)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(System.Func`2<System.Object,System.Boolean>)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(System.Func`2<WireMock.Util.IBodyData,System.Boolean>)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String>,System.Boolean>)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(WireMock.Matchers.IMatcher[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher::.ctor(WireMock.Matchers.MatchOperator,WireMock.Matchers.IMatcher[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -40591,82 +41146,82 @@
System.Func`2<T,System.Boolean> WireMock.Matchers.Request.RequestMessageBodyMatcher`1::get_Func()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessageBodyMatcher`1::get_MatchOperator()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageBodyMatcher`1::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageBodyMatcher`1::CalculateMatchScore(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageBodyMatcher`1::.ctor(System.Func`2<T,System.Boolean>)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -40678,188 +41233,188 @@
System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IStringMatcher> WireMock.Matchers.Request.RequestMessageClientIPMatcher::get_Matchers()
-
+
-
+
-
+
System.Func`2<System.String,System.Boolean>[] WireMock.Matchers.Request.RequestMessageClientIPMatcher::get_Funcs()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessageClientIPMatcher::get_Behaviour()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessageClientIPMatcher::get_MatchOperator()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageClientIPMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageClientIPMatcher::GetMatchResult(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageClientIPMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,System.String[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageClientIPMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageClientIPMatcher::.ctor(System.Func`2<System.String,System.Boolean>[])
-
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Matchers.Request.RequestMessageCompositeMatcher
-
-
+
+
System.Collections.Generic.IEnumerable`1<WireMock.Matchers.Request.IRequestMatcher> WireMock.Matchers.Request.RequestMessageCompositeMatcher::get_RequestMatchers()
-
+
-
+
-
+
-
-
+
+
System.Double WireMock.Matchers.Request.RequestMessageCompositeMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.Request.RequestMessageCompositeMatcher::.ctor(System.Collections.Generic.IEnumerable`1<WireMock.Matchers.Request.IRequestMatcher>,WireMock.Matchers.Request.CompositeMatcherType)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -40871,373 +41426,373 @@
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessageCookieMatcher::get_MatchBehaviour()
-
+
-
+
-
+
System.Boolean WireMock.Matchers.Request.RequestMessageCookieMatcher::get_IgnoreCase()
-
+
-
+
-
+
System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String>,System.Boolean>[] WireMock.Matchers.Request.RequestMessageCookieMatcher::get_Funcs()
-
+
-
+
-
+
System.String WireMock.Matchers.Request.RequestMessageCookieMatcher::get_Name()
-
+
-
+
-
+
WireMock.Matchers.IStringMatcher[] WireMock.Matchers.Request.RequestMessageCookieMatcher::get_Matchers()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageCookieMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageCookieMatcher::GetMatchResult(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageCookieMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String,System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageCookieMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String,System.Boolean,System.String[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageCookieMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String,System.Boolean,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageCookieMatcher::.ctor(System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String>,System.Boolean>[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Matchers.Request.RequestMessageHeaderMatcher
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessageHeaderMatcher::get_MatchBehaviour()
-
+
-
+
-
+
-
-
+
+
System.Boolean WireMock.Matchers.Request.RequestMessageHeaderMatcher::get_IgnoreCase()
-
+
-
+
-
+
-
-
+
+
System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String[]>,System.Boolean>[] WireMock.Matchers.Request.RequestMessageHeaderMatcher::get_Funcs()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Matchers.Request.RequestMessageHeaderMatcher::get_Name()
-
+
-
+
-
+
-
-
+
+
WireMock.Matchers.IStringMatcher[] WireMock.Matchers.Request.RequestMessageHeaderMatcher::get_Matchers()
-
+
-
+
-
+
-
-
+
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessageHeaderMatcher::get_MatchOperator()
-
+
-
+
-
+
-
-
+
+
System.Double WireMock.Matchers.Request.RequestMessageHeaderMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageHeaderMatcher::GetMatchResult(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageHeaderMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String,System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageHeaderMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,System.String,System.Boolean,System.String[])
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.Request.RequestMessageHeaderMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,System.String,System.Boolean,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageHeaderMatcher::.ctor(System.Func`2<System.Collections.Generic.IDictionary`2<System.String,System.String[]>,System.Boolean>[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -41249,128 +41804,128 @@
WireMock.Matchers.IStringMatcher WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::get_Matcher()
-
+
-
+
-
+
System.Func`2<System.String,System.Boolean> WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::get_MatcherOnStringFunc()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::get_Behaviour()
-
+
-
+
-
+
System.String WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::get_HttpVersion()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::GetMatchResult(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.IStringMatcher)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageHttpVersionMatcher::.ctor(System.Func`2<System.String,System.Boolean>)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -41382,78 +41937,78 @@
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessageMethodMatcher::get_MatchBehaviour()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessageMethodMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String[] WireMock.Matchers.Request.RequestMessageMethodMatcher::get_Methods()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageMethodMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageMethodMatcher::.ctor(System.String[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageMethodMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,System.String[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -41465,146 +42020,146 @@
WireMock.Matchers.IMatcher[] WireMock.Matchers.Request.RequestMessageMultiPartMatcher::get_Matchers()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessageMultiPartMatcher::get_MatchOperator()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessageMultiPartMatcher::get_MatchBehaviour()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageMultiPartMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Util.IMimeKitUtils WireMock.Matchers.Request.RequestMessageMultiPartMatcher::LoadMimeKitUtils()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageMultiPartMatcher::.ctor(WireMock.Matchers.IMatcher[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageMultiPartMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,WireMock.Matchers.IMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -41616,346 +42171,346 @@
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessageParamMatcher::get_MatchBehaviour()
-
+
-
+
-
+
System.Func`2<System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>,System.Boolean>[] WireMock.Matchers.Request.RequestMessageParamMatcher::get_Funcs()
-
+
-
+
-
+
System.String WireMock.Matchers.Request.RequestMessageParamMatcher::get_Key()
-
+
-
+
-
+
System.Boolean WireMock.Matchers.Request.RequestMessageParamMatcher::get_IgnoreCase()
-
+
-
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IStringMatcher> WireMock.Matchers.Request.RequestMessageParamMatcher::get_Matchers()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageParamMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageParamMatcher::GetMatchScore(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageParamMatcher::CalculateScore(System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IStringMatcher>,WireMock.Types.WireMockList`1<System.String>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageParamMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageParamMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String,System.Boolean,System.String[])
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageParamMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String,System.Boolean,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageParamMatcher::.ctor(System.Func`2<System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>,System.Boolean>[])
-
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Matchers.Request.RequestMessagePathMatcher
-
-
+
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IStringMatcher> WireMock.Matchers.Request.RequestMessagePathMatcher::get_Matchers()
-
+
-
+
-
+
System.Func`2<System.String,System.Boolean>[] WireMock.Matchers.Request.RequestMessagePathMatcher::get_Funcs()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessagePathMatcher::get_Behaviour()
-
+
-
+
-
+
-
-
+
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessagePathMatcher::get_MatchOperator()
-
+
-
+
-
+
-
-
+
+
System.Double WireMock.Matchers.Request.RequestMessagePathMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessagePathMatcher::GetMatchResult(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.Request.RequestMessagePathMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,System.String[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.Request.RequestMessagePathMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessagePathMatcher::.ctor(System.Func`2<System.String,System.Boolean>[])
-
+
-
-
-
-
+
+
+
+
-
+
@@ -41967,45 +42522,45 @@
System.Double WireMock.Matchers.Request.RequestMessageScenarioAndStateMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
+
+
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageScenarioAndStateMatcher::GetScore()
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageScenarioAndStateMatcher::.ctor(System.String,System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -42017,238 +42572,238 @@
System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IStringMatcher> WireMock.Matchers.Request.RequestMessageUrlMatcher::get_Matchers()
-
+
-
+
-
+
System.Func`2<System.String,System.Boolean>[] WireMock.Matchers.Request.RequestMessageUrlMatcher::get_Funcs()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.Request.RequestMessageUrlMatcher::get_Behaviour()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessageUrlMatcher::get_MatchOperator()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageUrlMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageUrlMatcher::GetMatchResult(WireMock.IRequestMessage)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageUrlMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,System.String[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageUrlMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchOperator,WireMock.Matchers.IStringMatcher[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageUrlMatcher::.ctor(System.Func`2<System.String,System.Boolean>[])
-
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Logging.LogEntry
-
-
+
+
System.Guid WireMock.Logging.LogEntry::get_Guid()
-
+
-
+
-
+
-
-
+
+
WireMock.IRequestMessage WireMock.Logging.LogEntry::get_RequestMessage()
-
+
-
+
-
+
-
-
+
+
WireMock.IResponseMessage WireMock.Logging.LogEntry::get_ResponseMessage()
-
+
-
+
-
+
-
-
+
+
WireMock.Matchers.Request.IRequestMatchResult WireMock.Logging.LogEntry::get_RequestMatchResult()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Guid> WireMock.Logging.LogEntry::get_MappingGuid()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Logging.LogEntry::get_MappingTitle()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Guid> WireMock.Logging.LogEntry::get_PartialMappingGuid()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Logging.LogEntry::get_PartialMappingTitle()
-
+
-
+
-
+
-
-
+
+
WireMock.Matchers.Request.IRequestMatchResult WireMock.Logging.LogEntry::get_PartialMatchResult()
-
+
-
+
-
+
@@ -42260,127 +42815,127 @@
System.Void WireMock.Logging.WireMockConsoleLogger::Debug(System.String,System.Object[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Logging.WireMockConsoleLogger::Info(System.String,System.Object[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Logging.WireMockConsoleLogger::Warn(System.String,System.Object[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Logging.WireMockConsoleLogger::Error(System.String,System.Object[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Logging.WireMockConsoleLogger::Error(System.String,System.Exception)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Logging.WireMockConsoleLogger::DebugRequestResponse(WireMock.Admin.Requests.LogEntryModel,System.Boolean)
-
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Logging.WireMockConsoleLogger::Format(System.String,System.String,System.Object[])
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Logging.WireMockConsoleLogger::.ctor()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
@@ -42392,73 +42947,73 @@
System.Void WireMock.Logging.WireMockNullLogger::Debug(System.String,System.Object[])
-
+
-
-
+
+
-
+
System.Void WireMock.Logging.WireMockNullLogger::Info(System.String,System.Object[])
-
+
-
-
+
+
-
+
System.Void WireMock.Logging.WireMockNullLogger::Warn(System.String,System.Object[])
-
+
-
-
+
+
-
+
System.Void WireMock.Logging.WireMockNullLogger::Error(System.String,System.Object[])
-
+
-
-
+
+
-
+
System.Void WireMock.Logging.WireMockNullLogger::Error(System.String,System.Exception)
-
+
-
-
+
+
-
+
System.Void WireMock.Logging.WireMockNullLogger::DebugRequestResponse(WireMock.Admin.Requests.LogEntryModel,System.Boolean)
-
+
-
-
+
+
-
+
@@ -42470,23 +43025,23 @@
WireMock.Json.IntegerBehavior WireMock.Json.DynamicJsonClassOptions::get_IntegerConvertBehavior()
-
+
-
+
-
+
WireMock.Json.FloatBehavior WireMock.Json.DynamicJsonClassOptions::get_FloatConvertBehavior()
-
+
-
+
-
+
@@ -42498,23 +43053,23 @@
System.Net.Http.ByteArrayContent WireMock.Http.ByteArrayContentHelper::Create(System.Byte[],System.Net.Http.Headers.MediaTypeHeaderValue)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -42526,56 +43081,56 @@
System.Net.Http.HttpClient WireMock.Http.HttpClientBuilder::Build(WireMock.Settings.HttpClientSettings)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -42587,56 +43142,56 @@
System.Net.Http.HttpClient WireMock.Http.HttpClientFactory2::Create(System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Net.Http.HttpClient WireMock.Http.HttpClientFactory2::Create(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Net.Http.HttpMessageHandler WireMock.Http.HttpClientFactory2::CreateHandlerPipeline(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -42648,123 +43203,123 @@
System.Net.Http.HttpRequestMessage WireMock.Http.HttpRequestMessageHelper::Create(WireMock.IRequestMessage,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Http.HttpRequestMessageHelper::.cctor()
-
+
-
-
-
-
+
+
+
+
-
+
@@ -42776,45 +43331,45 @@
System.Boolean WireMock.Http.HttpResponseMessageHelper/<>c::<CreateAsync>b__0_2(System.Collections.Generic.KeyValuePair`2<System.String,System.Collections.Generic.IEnumerable`1<System.String>>)
-
+
-
+
-
+
System.Boolean WireMock.Http.HttpResponseMessageHelper/<>c::<CreateAsync>b__0_0(System.Collections.Generic.KeyValuePair`2<System.String,System.Collections.Generic.IEnumerable`1<System.String>>)
-
+
-
+
-
+
System.Boolean WireMock.Http.HttpResponseMessageHelper/<>c::<CreateAsync>b__0_3(System.Collections.Generic.KeyValuePair`2<System.String,System.Collections.Generic.IEnumerable`1<System.String>>)
-
+
-
+
-
+
System.Boolean WireMock.Http.HttpResponseMessageHelper/<>c::<CreateAsync>b__0_1(System.Collections.Generic.KeyValuePair`2<System.String,System.Collections.Generic.IEnumerable`1<System.String>>)
-
+
-
+
-
+
@@ -42826,77 +43381,77 @@
System.Void WireMock.Http.HttpResponseMessageHelper/<CreateAsync>d__0::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -42908,16 +43463,16 @@
System.Net.Http.StringContent WireMock.Http.StringContentHelper::Create(System.String,System.Net.Http.Headers.MediaTypeHeaderValue)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -42929,51 +43484,51 @@
System.Boolean WireMock.Http.WebhookSender::TryGetDelay(WireMock.Models.IWebhookRequest,System.Nullable`1<System.Int32>&)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Http.WebhookSender::.ctor(WireMock.Settings.WireMockServerSettings)
-
+
-
-
+
+
-
+
System.Void WireMock.Http.WebhookSender::.cctor()
-
+
-
+
-
+
@@ -42985,12 +43540,12 @@
System.String WireMock.Http.WebhookSender/<>c::<SendAsync>b__4_0(System.Collections.Generic.KeyValuePair`2<System.String,WireMock.Types.WireMockList`1<System.String>>)
-
+
-
+
-
+
@@ -43002,55 +43557,55 @@
System.Void WireMock.Http.WebhookSender/<SendAsync>d__4::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -43062,39 +43617,39 @@
System.Net.Http.HttpClient WireMock.Http.WireMockHttpClientFactory::CreateClient(System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Net.Http.HttpClient WireMock.Http.WireMockHttpClientFactory::<.ctor>b__0_0()
-
+
-
+
-
+
System.Void WireMock.Http.WireMockHttpClientFactory::.ctor(WireMock.Server.WireMockServer,System.Net.Http.DelegatingHandler[])
-
+
-
+
-
+
@@ -43106,103 +43661,103 @@
System.Security.Cryptography.X509Certificates.X509Certificate2 WireMock.HttpsCertificate.CertificateLoader::LoadCertificate(WireMock.Owin.IWireMockMiddlewareOptions,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Security.Cryptography.X509Certificates.X509Certificate2 WireMock.HttpsCertificate.CertificateLoader::LoadCertificate(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -43214,362 +43769,362 @@
System.Security.Cryptography.X509Certificates.X509Certificate2 WireMock.HttpsCertificate.PublicCertificateHelper::GetX509Certificate2()
-
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Handlers.LocalFileSystemHandler
System.Boolean WireMock.Handlers.LocalFileSystemHandler::FolderExists(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Handlers.LocalFileSystemHandler::CreateFolder(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Collections.Generic.IEnumerable`1<System.String> WireMock.Handlers.LocalFileSystemHandler::EnumerateFiles(System.String,System.Boolean)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Handlers.LocalFileSystemHandler::GetMappingFolder()
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Handlers.LocalFileSystemHandler::ReadMappingFile(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Handlers.LocalFileSystemHandler::WriteMappingFile(System.String,System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Byte[] WireMock.Handlers.LocalFileSystemHandler::ReadResponseBodyAsFile(System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Handlers.LocalFileSystemHandler::ReadResponseBodyAsString(System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.Handlers.LocalFileSystemHandler::FileExists(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Handlers.LocalFileSystemHandler::WriteFile(System.String,System.Byte[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Handlers.LocalFileSystemHandler::WriteFile(System.String,System.String,System.Byte[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Handlers.LocalFileSystemHandler::DeleteFile(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Byte[] WireMock.Handlers.LocalFileSystemHandler::ReadFile(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Handlers.LocalFileSystemHandler::ReadFileAsString(System.String)
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Handlers.LocalFileSystemHandler::GetUnmatchedRequestsFolder()
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Handlers.LocalFileSystemHandler::WriteUnmatchedRequest(System.String,System.String)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Handlers.LocalFileSystemHandler::AdjustPathForMappingFolder(System.String)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Handlers.LocalFileSystemHandler::.ctor()
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Handlers.LocalFileSystemHandler::.ctor(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Handlers.LocalFileSystemHandler::.cctor()
-
+
-
-
+
+
-
+
-
+
WireMock.Extensions.TimeSettingsExtensions
-
-
+
+
System.Boolean WireMock.Extensions.TimeSettingsExtensions::IsValid(WireMock.Models.ITimeSettings)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -43581,157 +44136,157 @@
System.String WireMock.Authentication.AzureADAuthenticationMatcher::get_Name()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Authentication.AzureADAuthenticationMatcher::get_MatchBehaviour()
-
+
-
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Authentication.AzureADAuthenticationMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
WireMock.Matchers.MatchOperator WireMock.Authentication.AzureADAuthenticationMatcher::get_MatchOperator()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Authentication.AzureADAuthenticationMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Authentication.AzureADAuthenticationMatcher::GetCSharpCodeArguments()
-
+
-
-
+
+
-
+
System.Boolean WireMock.Authentication.AzureADAuthenticationMatcher::TryExtractTenantId(System.String,System.String&)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Authentication.AzureADAuthenticationMatcher::.ctor(System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler,Microsoft.IdentityModel.Protocols.IConfigurationManager`1<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration>,System.String,System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Void WireMock.Authentication.AzureADAuthenticationMatcher::.cctor()
-
+
-
+
-
+
@@ -43743,73 +44298,73 @@
System.String WireMock.Authentication.BasicAuthenticationMatcher::get_Name()
-
+
-
+
-
+
System.String WireMock.Authentication.BasicAuthenticationMatcher::BuildPattern(System.String,System.String)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Authentication.BasicAuthenticationMatcher::.ctor(System.String,System.String)
-
+
-
+
-
+
-
+
WireMock.Net.OpenApiParser.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.OpenApiParser
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -43820,171 +44375,171 @@
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Net.OpenApiParser.WireMockOpenApiParser::FromFile(System.String,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Net.OpenApiParser.WireMockOpenApiParser::FromFile(System.String,WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Net.OpenApiParser.WireMockOpenApiParser::FromDocument(System.Object,WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings)
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Net.OpenApiParser.WireMockOpenApiParser::FromStream(System.IO.Stream,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Net.OpenApiParser.WireMockOpenApiParser::FromStream(System.IO.Stream,WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Net.OpenApiParser.WireMockOpenApiParser::FromText(System.String,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Net.OpenApiParser.WireMockOpenApiParser::FromText(System.String,WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
+
+
+
-
+
Microsoft.OpenApi.OpenApiDocument WireMock.Net.OpenApiParser.WireMockOpenApiParser::Read(System.IO.Stream,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.IO.MemoryStream WireMock.Net.OpenApiParser.WireMockOpenApiParser::ReadStreamIntoMemoryStream(System.IO.Stream)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Net.OpenApiParser.WireMockOpenApiParser::.ctor()
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -43996,27 +44551,27 @@
System.String WireMock.Net.OpenApiParser.Utils.DateTimeUtils::ToRfc3339DateTime(System.DateTime)
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Net.OpenApiParser.Utils.DateTimeUtils::ToRfc3339Date(System.DateTime)
-
+
-
-
-
+
+
+
-
+
@@ -44028,169 +44583,169 @@
System.Text.Json.Nodes.JsonNode WireMock.Net.OpenApiParser.Utils.ExampleValueGenerator::GetExampleValue(Microsoft.OpenApi.IOpenApiSchema)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Net.OpenApiParser.Utils.ExampleValueGenerator::.ctor(WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -44202,33 +44757,33 @@
System.String WireMock.Net.OpenApiParser.Utils.PathUtils::Combine(System.String[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -44240,143 +44795,143 @@
System.Boolean WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_Boolean()
-
+
-
+
-
+
System.Int32 WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_Integer()
-
+
-
+
-
+
System.Single WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_Float()
-
+
-
+
-
+
System.Decimal WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_Decimal()
-
+
-
+
-
+
System.Func`1<System.DateTime> WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_Date()
-
+
-
+
-
-
+
+
-
+
System.Func`1<System.DateTime> WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_DateTime()
-
+
-
+
-
-
+
+
-
+
System.Byte[] WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_Bytes()
-
+
-
+
-
+
System.Object WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_Object()
-
+
-
+
-
+
System.String WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_String()
-
+
-
+
-
-
+
+
-
+
Microsoft.OpenApi.IOpenApiSchema WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::get_Schema()
-
+
-
+
-
+
System.Decimal WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserDynamicExampleValues::SafeConvertFloatToDecimal(System.Single)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -44388,111 +44943,111 @@
System.Boolean WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_Boolean()
-
+
-
+
-
+
System.Int32 WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_Integer()
-
+
-
+
-
+
System.Single WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_Float()
-
+
-
+
-
+
System.Decimal WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_Decimal()
-
+
-
+
-
+
System.Func`1<System.DateTime> WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_Date()
-
+
-
+
-
+
System.Func`1<System.DateTime> WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_DateTime()
-
+
-
+
-
+
System.Byte[] WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_Bytes()
-
+
-
+
-
+
System.Object WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_Object()
-
+
-
+
-
+
System.String WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_String()
-
+
-
+
-
+
Microsoft.OpenApi.IOpenApiSchema WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserExampleValues::get_Schema()
-
+
-
+
-
+
@@ -44504,111 +45059,111 @@
System.Int32 WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_NumberOfArrayItems()
-
+
-
+
-
+
WireMock.Net.OpenApiParser.Types.ExampleValueType WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_PathPatternToUse()
-
+
-
+
-
+
WireMock.Net.OpenApiParser.Types.ExampleValueType WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_HeaderPatternToUse()
-
+
-
+
-
+
WireMock.Net.OpenApiParser.Types.ExampleValueType WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_QueryParameterPatternToUse()
-
+
-
+
-
+
WireMock.Net.OpenApiParser.Settings.IWireMockOpenApiParserExampleValues WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_ExampleValues()
-
+
-
+
-
+
System.Boolean WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_HeaderPatternIgnoreCase()
-
+
-
+
-
+
System.Boolean WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_QueryParameterPatternIgnoreCase()
-
+
-
+
-
+
System.Boolean WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_RequestBodyIgnoreCase()
-
+
-
+
-
+
System.Boolean WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_IgnoreCaseExampleValues()
-
+
-
+
-
+
System.Boolean WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings::get_DynamicExamples()
-
+
-
+
-
+
@@ -44620,34 +45175,34 @@
System.Collections.Generic.List`1<WireMock.Net.OpenApiParser.Models.OpenApiError> WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic::get_Errors()
-
+
-
+
-
+
System.Collections.Generic.List`1<WireMock.Net.OpenApiParser.Models.OpenApiError> WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic::get_Warnings()
-
+
-
+
-
+
RamlToOpenApiConverter.OpenApiSpecificationVersion WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic::get_SpecificationVersion()
-
+
-
+
-
+
@@ -44659,69 +45214,69 @@
System.String WireMock.Net.OpenApiParser.Models.OpenApiError::get_Message()
-
+
-
+
-
+
System.String WireMock.Net.OpenApiParser.Models.OpenApiError::get_Pointer()
-
+
-
+
-
+
System.String WireMock.Net.OpenApiParser.Models.OpenApiError::ToString()
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Net.OpenApiParser.Models.OpenApiError::.ctor(System.String,System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Net.OpenApiParser.Models.OpenApiError::.ctor(WireMock.Net.OpenApiParser.Models.OpenApiError)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -44733,25 +45288,25 @@
WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic WireMock.Net.OpenApiParser.Models.OpenApiMapper::Map(Microsoft.OpenApi.Reader.OpenApiDiagnostic)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -44763,655 +45318,655 @@
System.Collections.Generic.IReadOnlyList`1<WireMock.Admin.Mappings.MappingModel> WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::ToMappingModels(Microsoft.OpenApi.OpenApiPaths,System.Collections.Generic.IList`1<Microsoft.OpenApi.OpenApiServer>)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Admin.Mappings.MappingModel[] WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapPath(System.String,Microsoft.OpenApi.IOpenApiPathItem,System.Collections.Generic.IList`1<Microsoft.OpenApi.OpenApiServer>)
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Admin.Mappings.MappingModel WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapOperationToMappingModel(System.String,System.String,Microsoft.OpenApi.OpenApiOperation,System.Collections.Generic.IList`1<Microsoft.OpenApi.OpenApiServer>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Admin.Mappings.BodyModel WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::GetRequestBodyModel(Microsoft.OpenApi.IOpenApiRequestBody)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Admin.Mappings.ResponseModel WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::GetResponseModel(System.Nullable`1<System.Collections.Generic.KeyValuePair`2<System.String,Microsoft.OpenApi.IOpenApiResponse>>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Admin.Mappings.BodyModel WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapRequestBody(System.Text.Json.Nodes.JsonNode)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::TryGetContent(System.Collections.Generic.IDictionary`2<System.String,Microsoft.OpenApi.OpenApiMediaType>,Microsoft.OpenApi.OpenApiMediaType&,System.String&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Text.Json.Nodes.JsonNode WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapSchemaToObject(Microsoft.OpenApi.IOpenApiSchema)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Text.Json.Nodes.JsonObject WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapSchemaAllOfToObject(Microsoft.OpenApi.IOpenApiSchema)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Text.Json.Nodes.JsonNode WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapPropertyAsJsonNode(Microsoft.OpenApi.IOpenApiSchema)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.String WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapPathWithParameters(System.String,System.Collections.Generic.IEnumerable`1<Microsoft.OpenApi.IOpenApiParameter>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.Object> WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapHeaders(System.String,System.Collections.Generic.IDictionary`2<System.String,Microsoft.OpenApi.IOpenApiHeader>)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IList`1<WireMock.Admin.Mappings.ParamModel> WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapQueryParameters(System.Collections.Generic.IEnumerable`1<Microsoft.OpenApi.IOpenApiParameter>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Collections.Generic.IList`1<WireMock.Admin.Mappings.HeaderModel> WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapRequestHeaders(System.Collections.Generic.IEnumerable`1<Microsoft.OpenApi.IOpenApiParameter>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Admin.Mappings.MatcherModel WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::GetExampleMatcherModel(Microsoft.OpenApi.IOpenApiSchema,WireMock.Net.OpenApiParser.Types.ExampleValueType)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::GetExampleValueAsStringForSchemaType(Microsoft.OpenApi.IOpenApiSchema)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::MapBasePath(System.Collections.Generic.IList`1<Microsoft.OpenApi.OpenApiServer>)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Net.OpenApiParser.Mappers.OpenApiPathsMapper::.ctor(WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings)
-
+
-
-
-
+
+
+
-
+
@@ -45423,145 +45978,145 @@
System.Boolean WireMock.Net.OpenApiParser.Extensions.OpenApiSchemaExtensions::TryGetXNullable(Microsoft.OpenApi.IOpenApiSchema,System.Boolean&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Nullable`1<Microsoft.OpenApi.JsonSchemaType> WireMock.Net.OpenApiParser.Extensions.OpenApiSchemaExtensions::GetSchemaType(Microsoft.OpenApi.IOpenApiSchema,System.Boolean&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Net.OpenApiParser.Types.SchemaFormat WireMock.Net.OpenApiParser.Extensions.OpenApiSchemaExtensions::GetSchemaFormat(Microsoft.OpenApi.IOpenApiSchema)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -45573,76 +46128,76 @@
WireMock.Server.IWireMockServer WireMock.Net.OpenApiParser.Extensions.WireMockServerExtensions::WithMappingFromOpenApiFile(WireMock.Server.IWireMockServer,System.String,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
+
+
+
-
+
WireMock.Server.IWireMockServer WireMock.Net.OpenApiParser.Extensions.WireMockServerExtensions::WithMappingFromOpenApiFile(WireMock.Server.IWireMockServer,System.String,WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.Server.IWireMockServer WireMock.Net.OpenApiParser.Extensions.WireMockServerExtensions::WithMappingFromOpenApiStream(WireMock.Server.IWireMockServer,System.IO.Stream,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
+
+
+
-
+
WireMock.Server.IWireMockServer WireMock.Net.OpenApiParser.Extensions.WireMockServerExtensions::WithMappingFromOpenApiStream(WireMock.Server.IWireMockServer,System.IO.Stream,WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings,WireMock.Net.OpenApiParser.Models.OpenApiDiagnostic&)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
WireMock.Server.IWireMockServer WireMock.Net.OpenApiParser.Extensions.WireMockServerExtensions::WithMappingFromOpenApiDocument(WireMock.Server.IWireMockServer,System.Object,WireMock.Net.OpenApiParser.Settings.WireMockOpenApiParserSettings)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -45654,36 +46209,36 @@
System.Text.Json.Nodes.JsonNode RamlToOpenApiConverter.OpenApiAny::get_Node()
-
+
-
+
-
+
System.Void RamlToOpenApiConverter.OpenApiAny::Write(Microsoft.OpenApi.IOpenApiWriter,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
+
+
+
-
+
System.Void RamlToOpenApiConverter.OpenApiAny::.ctor(System.Text.Json.Nodes.JsonNode)
-
+
-
+
-
+
@@ -45695,362 +46250,362 @@
Microsoft.OpenApi.OpenApiComponents RamlToOpenApiConverter.RamlConverter::MapComponents(Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.Dictionary`2<System.String,Microsoft.OpenApi.IOpenApiSchema> RamlToOpenApiConverter.RamlConverter::MapProperties(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.Object,System.Object> RamlToOpenApiConverter.RamlConverter::ReplaceUses(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Collections.Generic.IDictionary`2<System.Object,System.Object>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.Object,System.Object> RamlToOpenApiConverter.RamlConverter::ReplaceIs(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Collections.Generic.IDictionary`2<System.Object,System.Object>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.Object,System.Object> RamlToOpenApiConverter.RamlConverter::ReplaceTypes(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Collections.Generic.IDictionary`2<System.Object,System.Object>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -46062,34 +46617,34 @@
System.String RamlToOpenApiConverter.RamlConverter/TypeInfo::get_Key()
-
+
-
+
-
+
System.Object RamlToOpenApiConverter.RamlConverter/TypeInfo::get_Value()
-
+
-
+
-
+
System.Boolean RamlToOpenApiConverter.RamlConverter/TypeInfo::get_IsRef()
-
+
-
+
-
+
@@ -46101,19 +46656,19 @@
Microsoft.OpenApi.OpenApiInfo RamlToOpenApiConverter.RamlConverter::MapInfo(System.Collections.Generic.IDictionary`2<System.Object,System.Object>)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -46125,194 +46680,194 @@
System.Collections.Generic.List`1<Microsoft.OpenApi.IOpenApiParameter> RamlToOpenApiConverter.RamlConverter::MapParameters(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IList`1<Microsoft.OpenApi.OpenApiParameter> RamlToOpenApiConverter.RamlConverter::MapParameters(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.ParameterLocation,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
Microsoft.OpenApi.IOpenApiSchema RamlToOpenApiConverter.RamlConverter::MapParameterOrPropertyDetailsToSchema(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
Microsoft.OpenApi.JsonSchemaType RamlToOpenApiConverter.RamlConverter::ParseSchemaType(System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -46324,335 +46879,335 @@
Microsoft.OpenApi.OpenApiPaths RamlToOpenApiConverter.RamlConverter::MapPaths(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Collections.Generic.ICollection`1<System.ValueTuple`2<Microsoft.OpenApi.IOpenApiPathItem,System.String>> RamlToOpenApiConverter.RamlConverter::MapPathItems(System.String,System.Collections.Generic.IList`1<Microsoft.OpenApi.IOpenApiParameter>,System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
Microsoft.OpenApi.OpenApiOperation RamlToOpenApiConverter.RamlConverter::MapOperation(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
Microsoft.OpenApi.OpenApiResponses RamlToOpenApiConverter.RamlConverter::MapResponses(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
Microsoft.OpenApi.OpenApiRequestBody RamlToOpenApiConverter.RamlConverter::MapRequest(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Collections.Generic.Dictionary`2<System.String,Microsoft.OpenApi.OpenApiMediaType> RamlToOpenApiConverter.RamlConverter::MapContents(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Text.Json.Nodes.JsonNode RamlToOpenApiConverter.RamlConverter::MapExample(System.String)
-
+
-
-
-
+
+
+
-
+
Microsoft.OpenApi.IOpenApiSchema RamlToOpenApiConverter.RamlConverter::MapMediaTypeSchema(System.String,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
Microsoft.OpenApi.IOpenApiSchema RamlToOpenApiConverter.RamlConverter::CreateOpenApiReferenceSchema(System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Boolean RamlToOpenApiConverter.RamlConverter::TryMapOperationType(System.String,System.Net.Http.HttpMethod&)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -46664,28 +47219,28 @@
Microsoft.OpenApi.IOpenApiSchema RamlToOpenApiConverter.RamlConverter::MapValuesToSchema(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,Microsoft.OpenApi.OpenApiSpecVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -46697,27 +47252,27 @@
System.Collections.Generic.List`1<Microsoft.OpenApi.OpenApiServer> RamlToOpenApiConverter.RamlConverter::MapServers(System.Collections.Generic.IDictionary`2<System.Object,System.Object>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -46729,129 +47284,129 @@
System.String RamlToOpenApiConverter.RamlConverter::Convert(System.String,RamlToOpenApiConverter.OpenApiSpecificationVersion,System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void RamlToOpenApiConverter.RamlConverter::ConvertToFile(System.String,System.String,RamlToOpenApiConverter.OpenApiSpecificationVersion,System.String)
-
+
-
-
-
-
+
+
+
+
-
+
Microsoft.OpenApi.OpenApiDocument RamlToOpenApiConverter.RamlConverter::ConvertToOpenApiDocument(System.String,RamlToOpenApiConverter.OpenApiSpecificationVersion)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void RamlToOpenApiConverter.RamlConverter::.ctor()
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -46863,12 +47418,12 @@
System.String RamlToOpenApiConverter.Yaml.IncludeRef::get_FileName()
-
+
-
+
-
+
@@ -46880,86 +47435,86 @@
System.Boolean RamlToOpenApiConverter.Yaml.YamlIncludeNodeDeserializer::YamlDotNet.Serialization.INodeDeserializer.Deserialize(YamlDotNet.Core.IParser,System.Type,System.Func`3<YamlDotNet.Core.IParser,System.Type,System.Object>,System.Object&,YamlDotNet.Serialization.ObjectDeserializer)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
System.Object RamlToOpenApiConverter.Yaml.YamlIncludeNodeDeserializer::ReadIncludedFile(System.String,System.Type)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void RamlToOpenApiConverter.Yaml.YamlIncludeNodeDeserializer::.ctor(RamlToOpenApiConverter.Yaml.YamlIncludeNodeDeserializerOptions)
-
+
-
+
-
+
System.Void RamlToOpenApiConverter.Yaml.YamlIncludeNodeDeserializer::.cctor()
-
+
-
-
+
+
-
+
@@ -46971,12 +47526,12 @@
System.String RamlToOpenApiConverter.Yaml.YamlIncludeNodeDeserializerOptions::get_DirectoryName()
-
+
-
+
-
+
@@ -46988,153 +47543,153 @@
System.String RamlToOpenApiConverter.Extensions.DictionaryExtensions::Get(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Object)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
T RamlToOpenApiConverter.Extensions.DictionaryExtensions::Get(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Object)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Collections.Generic.IDictionary`2<System.Object,System.Object> RamlToOpenApiConverter.Extensions.DictionaryExtensions::GetAsDictionary(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Object)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void RamlToOpenApiConverter.Extensions.DictionaryExtensions::Replace(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Collections.Generic.ICollection`1<System.Object> RamlToOpenApiConverter.Extensions.DictionaryExtensions::GetAsCollection(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Object)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.String RamlToOpenApiConverter.Extensions.DictionaryExtensions::GetAsString(System.Collections.Generic.IDictionary`2<System.Object,System.Object>,System.Object)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
T RamlToOpenApiConverter.Extensions.DictionaryExtensions::ChangeTypeEx(System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -47146,20 +47701,20 @@
Microsoft.OpenApi.JsonSchemaType RamlToOpenApiConverter.Extensions.JsonSchemaTypeExtensions::AddNullable(Microsoft.OpenApi.JsonSchemaType,System.Boolean)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
@@ -47171,36 +47726,36 @@
YamlDotNet.Serialization.IDeserializer RamlToOpenApiConverter.Builders.IncludeNodeDeserializerBuilder::Build(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Net.OpenTelemetry.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.OpenTelemetry
-
-
-
+
+
+
@@ -47211,23 +47766,23 @@
System.Boolean WireMock.OpenTelemetry.OpenTelemetryOptions::get_ExcludeAdminRequests()
-
+
-
+
-
+
System.String WireMock.OpenTelemetry.OpenTelemetryOptions::get_OtlpExporterEndpoint()
-
+
-
+
-
+
@@ -47239,29 +47794,29 @@
System.Boolean WireMock.OpenTelemetry.OpenTelemetryOptionsParser::TryParseArguments(System.String[],System.Collections.IDictionary,WireMock.OpenTelemetry.OpenTelemetryOptions&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -47273,125 +47828,125 @@
Microsoft.Extensions.DependencyInjection.IServiceCollection WireMock.OpenTelemetry.WireMockOpenTelemetryExtensions::AddWireMockOpenTelemetry(Microsoft.Extensions.DependencyInjection.IServiceCollection,WireMock.OpenTelemetry.OpenTelemetryOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
OpenTelemetry.Trace.TracerProviderBuilder WireMock.OpenTelemetry.WireMockOpenTelemetryExtensions::AddWireMockInstrumentation(OpenTelemetry.Trace.TracerProviderBuilder,WireMock.OpenTelemetry.OpenTelemetryOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Net.ProtoBuf.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.ProtoBuf
-
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -47402,20 +47957,20 @@
WireMock.ResponseBuilders.IResponseBuilder WireMock.Util.ProtoBufUtils::UpdateResponseBuilder(WireMock.ResponseBuilders.IResponseBuilder,System.String,System.Object,System.String[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
@@ -47427,29 +47982,29 @@
System.Void WireMock.Util.ProtoBufUtils/<GetProtoBufMessageWithHeaderAsync>d__0::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -47461,53 +48016,53 @@
System.Void WireMock.Util.ProtoDefinitionDataHelper/<FromDirectory>d__0::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -47519,94 +48074,94 @@
System.Boolean WireMock.Util.WireMockProtoFileResolver::Exists(System.String)
-
+
-
-
-
+
+
+
-
+
System.IO.TextReader WireMock.Util.WireMockProtoFileResolver::OpenText(System.String)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.Util.WireMockProtoFileResolver::TryGetValidPath(System.String,System.String&)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.WireMockProtoFileResolver::.ctor(System.Collections.Generic.IReadOnlyCollection`1<System.String>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -47618,64 +48173,64 @@
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.IResponseBuilderExtensions::WithBodyAsProtoBuf(WireMock.ResponseBuilders.IResponseBuilder,System.String,System.String,System.Object,JsonConverter.Abstractions.IJsonConverter,JsonConverter.Abstractions.JsonConverterOptions)
-
+
-
-
-
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.IResponseBuilderExtensions::WithBodyAsProtoBuf(WireMock.ResponseBuilders.IResponseBuilder,System.Collections.Generic.IReadOnlyList`1<System.String>,System.String,System.Object,JsonConverter.Abstractions.IJsonConverter,JsonConverter.Abstractions.JsonConverterOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.ResponseBuilders.IResponseBuilder WireMock.ResponseBuilders.IResponseBuilderExtensions::WithBodyAsProtoBuf(WireMock.ResponseBuilders.IResponseBuilder,System.String,System.Object,JsonConverter.Abstractions.IJsonConverter,JsonConverter.Abstractions.JsonConverterOptions)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -47687,103 +48242,103 @@
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.IRequestBuilderExtensions::WithBodyAsProtoBuf(WireMock.RequestBuilders.IRequestBuilder,System.String,System.String,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.IRequestBuilderExtensions::WithBodyAsProtoBuf(WireMock.RequestBuilders.IRequestBuilder,System.String,System.String,WireMock.Matchers.IObjectMatcher,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.IRequestBuilderExtensions::WithBodyAsProtoBuf(WireMock.RequestBuilders.IRequestBuilder,System.Collections.Generic.IReadOnlyList`1<System.String>,System.String,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.IRequestBuilderExtensions::WithBodyAsProtoBuf(WireMock.RequestBuilders.IRequestBuilder,System.Collections.Generic.IReadOnlyList`1<System.String>,System.String,WireMock.Matchers.IObjectMatcher,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.IRequestBuilderExtensions::WithBodyAsProtoBuf(WireMock.RequestBuilders.IRequestBuilder,System.String,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
WireMock.RequestBuilders.IRequestBuilder WireMock.RequestBuilders.IRequestBuilderExtensions::WithBodyAsProtoBuf(WireMock.RequestBuilders.IRequestBuilder,System.String,WireMock.Matchers.IObjectMatcher,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
+
+
+
-
+
System.Func`1<WireMock.Models.IdOrTexts> WireMock.RequestBuilders.IRequestBuilderExtensions::ProtoDefinitionFunc(WireMock.RequestBuilders.IRequestBuilder)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -47795,37 +48350,37 @@
System.Collections.Generic.IReadOnlyList`1<System.String> WireMock.Models.ProtoDefinitionData::ToList(System.String)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Models.ProtoDefinitionData::.ctor(System.Collections.Generic.IDictionary`2<System.String,System.String>)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -47837,115 +48392,115 @@
System.String WireMock.Matchers.ProtoBufMatcher::get_Name()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.ProtoBufMatcher::get_MatchBehaviour()
-
+
-
+
-
+
System.Func`1<WireMock.Models.IdOrTexts> WireMock.Matchers.ProtoBufMatcher::get_ProtoDefinition()
-
+
-
+
-
+
System.String WireMock.Matchers.ProtoBufMatcher::get_MessageType()
-
+
-
+
-
+
WireMock.Matchers.IObjectMatcher WireMock.Matchers.ProtoBufMatcher::get_Matcher()
-
+
-
+
-
+
System.Threading.Tasks.Task`1<System.Object> WireMock.Matchers.ProtoBufMatcher::DecodeAsync(System.Byte[],System.Threading.CancellationToken)
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Matchers.ProtoBufMatcher::GetCSharpCodeArguments()
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.ProtoBufMatcher::.ctor(System.Func`1<WireMock.Models.IdOrTexts>,System.String,WireMock.Matchers.MatchBehaviour,WireMock.Matchers.IObjectMatcher)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.ProtoBufMatcher::.cctor()
-
+
-
+
-
+
@@ -47957,33 +48512,33 @@
System.Void WireMock.Matchers.ProtoBufMatcher/<DecodeAsync>d__20::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -47995,46 +48550,46 @@
System.Void WireMock.Matchers.ProtoBufMatcher/<IsMatchAsync>d__17::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Net.RestClient.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.RestClient
-
-
-
+
+
+
@@ -48045,50 +48600,50 @@
WireMock.Admin.Mappings.ResponseModelBuilder WireMock.Client.Extensions.ResponseModelBuilderExtensions::WithBodyAsJson(WireMock.Admin.Mappings.ResponseModelBuilder,System.Object,System.Text.Encoding,System.Nullable`1<System.Boolean>)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Admin.Mappings.ResponseModelBuilder WireMock.Client.Extensions.ResponseModelBuilderExtensions::WithBodyAsJson(WireMock.Admin.Mappings.ResponseModelBuilder,System.Object,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Client.Extensions.ResponseModelBuilderExtensions::.cctor()
-
+
-
-
+
+
-
+
@@ -48100,31 +48655,31 @@
WireMock.Client.Builders.AdminApiMappingBuilder WireMock.Client.Extensions.WireMockAdminApiExtensions::GetMappingBuilder(WireMock.Client.IWireMockAdminApi)
-
+
-
-
-
+
+
+
-
+
WireMock.Client.IWireMockAdminApi WireMock.Client.Extensions.WireMockAdminApiExtensions::WithAuthorization(WireMock.Client.IWireMockAdminApi,System.String,System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
@@ -48136,19 +48691,19 @@
System.Void WireMock.Client.Extensions.WireMockAdminApiExtensions/<IsHealthyAsync>d__6::MoveNext()
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -48160,38 +48715,38 @@
System.Void WireMock.Client.Extensions.WireMockAdminApiExtensions/<WaitForHealthAsync>d__5::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
@@ -48203,171 +48758,172 @@
System.Void WireMock.Client.Builders.AdminApiMappingBuilder::Given(System.Action`1<WireMock.Admin.Mappings.MappingModelBuilder>)
-
+
-
-
-
+
+
+
-
+
System.Threading.Tasks.Task`1<WireMock.Admin.Mappings.StatusModel> WireMock.Client.Builders.AdminApiMappingBuilder::BuildAndPostAsync(System.Threading.CancellationToken)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Client.Builders.AdminApiMappingBuilder::.ctor(WireMock.Client.IWireMockAdminApi)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
WireMock.Net.Shared.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.Shared
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.WebSockets.WebSocketMessage
-
-
+
+
System.Net.WebSockets.WebSocketMessageType WireMock.WebSockets.WebSocketMessage::get_MessageType()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.WebSockets.WebSocketMessage::get_Text()
-
+
-
+
-
+
System.Byte[] WireMock.WebSockets.WebSocketMessage::get_Bytes()
-
+
-
+
-
+
-
-
+
+
System.Boolean WireMock.WebSockets.WebSocketMessage::get_EndOfMessage()
-
+
-
+
-
+
-
-
+
+
System.DateTime WireMock.WebSockets.WebSocketMessage::get_Timestamp()
-
+
-
+
-
+
@@ -48379,45 +48935,45 @@
System.Boolean WireMock.Settings.ActivityTracingOptions::get_ExcludeAdminRequests()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ActivityTracingOptions::get_RecordRequestBody()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ActivityTracingOptions::get_RecordResponseBody()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ActivityTracingOptions::get_RecordMatchDetails()
-
+
-
+
-
+
@@ -48429,51 +48985,51 @@
WireMock.Types.CustomHandlebarsHelpers WireMock.Settings.HandlebarsSettings::get_AllowedCustomHandlebarsHelpers()
-
+
-
+
-
+
HandlebarsDotNet.Helpers.Enums.Category[] WireMock.Settings.HandlebarsSettings::get_AllowedHandlebarsHelpers()
-
+
-
+
-
+
System.Void WireMock.Settings.HandlebarsSettings::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -48485,45 +49041,45 @@
System.String WireMock.Settings.HttpClientSettings::get_ClientX509Certificate2ThumbprintOrSubjectName()
-
+
-
+
-
+
WireMock.Settings.WebProxySettings WireMock.Settings.HttpClientSettings::get_WebProxySettings()
-
+
-
+
-
+
System.Nullable`1<System.Boolean> WireMock.Settings.HttpClientSettings::get_AllowAutoRedirect()
-
+
-
+
-
+
System.Security.Cryptography.X509Certificates.X509Certificate2 WireMock.Settings.HttpClientSettings::get_Certificate()
-
+
-
+
-
+
@@ -48535,153 +49091,153 @@
System.String WireMock.Settings.ProxyAndRecordSettings::get_Url()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ProxyAndRecordSettings::get_SaveMapping()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ProxyAndRecordSettings::get_SaveMappingToFile()
-
+
-
+
-
+
System.Void WireMock.Settings.ProxyAndRecordSettings::set_SaveMappingForStatusCodePattern(System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Settings.ProxySaveMappingSettings WireMock.Settings.ProxyAndRecordSettings::get_SaveMappingSettings()
-
+
-
+
-
+
System.String[] WireMock.Settings.ProxyAndRecordSettings::get_ExcludedHeaders()
-
+
-
+
-
+
System.String[] WireMock.Settings.ProxyAndRecordSettings::get_ExcludedParams()
-
+
-
+
-
+
System.String[] WireMock.Settings.ProxyAndRecordSettings::get_ExcludedCookies()
-
+
-
+
-
+
WireMock.Settings.ProxyUrlReplaceSettings WireMock.Settings.ProxyAndRecordSettings::get_ReplaceSettings()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ProxyAndRecordSettings::get_UseDefinedRequestMatchers()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ProxyAndRecordSettings::get_AppendGuidToSavedMappingFile()
-
+
-
+
-
+
System.String WireMock.Settings.ProxyAndRecordSettings::get_PrefixForSavedMappingFile()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ProxyAndRecordSettings::get_ProxyAll()
-
+
-
+
-
+
@@ -48693,60 +49249,60 @@
WireMock.Matchers.MatchBehaviour WireMock.Settings.ProxySaveMappingSetting`1::get_MatchBehaviour()
-
+
-
+
-
+
T WireMock.Settings.ProxySaveMappingSetting`1::get_Value()
-
+
-
+
-
+
WireMock.Settings.ProxySaveMappingSetting`1<T> WireMock.Settings.ProxySaveMappingSetting`1::op_Implicit(T)
-
+
-
+
-
+
T WireMock.Settings.ProxySaveMappingSetting`1::op_Implicit(WireMock.Settings.ProxySaveMappingSetting`1<T>)
-
+
-
+
-
+
System.Void WireMock.Settings.ProxySaveMappingSetting`1::.ctor(T,WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -48758,23 +49314,23 @@
WireMock.Settings.ProxySaveMappingSetting`1<System.String> WireMock.Settings.ProxySaveMappingSettings::get_StatusCodePattern()
-
+
-
+
-
+
WireMock.Settings.ProxySaveMappingSetting`1<System.String[]> WireMock.Settings.ProxySaveMappingSettings::get_HttpMethods()
-
+
-
+
-
+
@@ -48786,67 +49342,67 @@
System.String WireMock.Settings.ProxyUrlReplaceSettings::get_OldValue()
-
+
-
+
-
+
System.String WireMock.Settings.ProxyUrlReplaceSettings::get_NewValue()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ProxyUrlReplaceSettings::get_IgnoreCase()
-
+
-
+
-
+
System.String WireMock.Settings.ProxyUrlReplaceSettings::get_TransformTemplate()
-
+
-
+
-
+
System.Boolean WireMock.Settings.ProxyUrlReplaceSettings::get_UseTransformer()
-
+
-
+
-
+
WireMock.Types.TransformerType WireMock.Settings.ProxyUrlReplaceSettings::get_TransformerType()
-
+
-
+
-
+
@@ -48858,398 +49414,398 @@
System.Collections.Generic.IDictionary`2<System.String,System.String[]> WireMock.Settings.SimpleSettingsParser::get_Arguments()
-
+
-
+
-
+
System.Void WireMock.Settings.SimpleSettingsParser::Parse(System.String[],System.Collections.IDictionary)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Boolean WireMock.Settings.SimpleSettingsParser::Contains(System.String)
-
+
-
-
-
+
+
+
-
+
System.Boolean WireMock.Settings.SimpleSettingsParser::ContainsAny(System.String[])
-
+
-
-
-
+
+
+
-
+
System.String[] WireMock.Settings.SimpleSettingsParser::GetValues(System.String,System.String[])
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.String[] WireMock.Settings.SimpleSettingsParser::GetValues(System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
T WireMock.Settings.SimpleSettingsParser::GetValue(System.String,System.Func`2<System.String[],T>,T)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
T WireMock.Settings.SimpleSettingsParser::GetValue(System.String,System.Func`2<System.String[],T>)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.Settings.SimpleSettingsParser::GetBoolValue(System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Boolean WireMock.Settings.SimpleSettingsParser::GetBoolWithDefault(System.String,System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Settings.SimpleSettingsParser::GetBoolSwitchValue(System.String)
-
+
-
-
-
+
+
+
-
+
System.Nullable`1<System.Int32> WireMock.Settings.SimpleSettingsParser::GetIntValue(System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Int32 WireMock.Settings.SimpleSettingsParser::GetIntValue(System.String,System.Int32)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Nullable`1<TEnum> WireMock.Settings.SimpleSettingsParser::GetEnumValue(System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
TEnum WireMock.Settings.SimpleSettingsParser::GetEnumValue(System.String,TEnum)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
TEnum[] WireMock.Settings.SimpleSettingsParser::GetEnumValues(System.String,TEnum[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.String WireMock.Settings.SimpleSettingsParser::GetStringValue(System.String,System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.String WireMock.Settings.SimpleSettingsParser::GetStringValue(System.String)
-
+
-
-
-
+
+
+
-
+
T WireMock.Settings.SimpleSettingsParser::GetObjectValueFromJson(System.String)
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Settings.SimpleSettingsParser::.cctor()
-
+
-
+
-
+
@@ -49261,13 +49817,13 @@
System.Void WireMock.Settings.WebhookSettings::PostTransform(WireMock.IMapping,System.String,WireMock.Util.IBodyData,System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>>)
-
+
-
-
+
+
-
+
@@ -49279,34 +49835,34 @@
System.String WireMock.Settings.WebProxySettings::get_Address()
-
+
-
+
-
+
System.String WireMock.Settings.WebProxySettings::get_UserName()
-
+
-
+
-
+
System.String WireMock.Settings.WebProxySettings::get_Password()
-
+
-
+
-
+
@@ -49318,23 +49874,23 @@
System.Int32 WireMock.Settings.WebSocketSettings::get_MaxConnections()
-
+
-
+
-
+
System.Int32 WireMock.Settings.WebSocketSettings::get_KeepAliveIntervalSeconds()
-
+
-
+
-
+
@@ -49346,646 +49902,646 @@
System.String WireMock.Settings.WireMockCertificateSettings::get_X509StoreName()
-
+
-
+
-
+
System.String WireMock.Settings.WireMockCertificateSettings::get_X509StoreLocation()
-
+
-
+
-
+
System.String WireMock.Settings.WireMockCertificateSettings::get_X509StoreThumbprintOrSubjectName()
-
+
-
+
-
+
System.String WireMock.Settings.WireMockCertificateSettings::get_X509CertificateFilePath()
-
+
-
+
-
+
System.Security.Cryptography.X509Certificates.X509Certificate2 WireMock.Settings.WireMockCertificateSettings::get_X509Certificate()
-
+
-
+
-
+
System.String WireMock.Settings.WireMockCertificateSettings::get_X509CertificatePassword()
-
+
-
+
-
+
System.Boolean WireMock.Settings.WireMockCertificateSettings::get_IsDefined()
-
+
-
-
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Settings.WireMockServerSettings
-
-
+
+
System.Nullable`1<System.Int32> WireMock.Settings.WireMockServerSettings::get_Port()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_UseSSL()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<WireMock.Types.HostingScheme> WireMock.Settings.WireMockServerSettings::get_HostingScheme()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_UseHttp2()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_StartAdminInterface()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_ReadStaticMappings()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_WatchStaticMappings()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_WatchStaticMappingsInSubdirectories()
-
+
-
+
-
+
-
-
+
+
WireMock.Settings.ProxyAndRecordSettings WireMock.Settings.WireMockServerSettings::get_ProxyAndRecordSettings()
-
+
-
+
-
+
-
-
+
+
System.String[] WireMock.Settings.WireMockServerSettings::get_Urls()
-
+
-
+
-
+
-
-
+
+
System.Int32 WireMock.Settings.WireMockServerSettings::get_StartTimeout()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_AllowPartialMapping()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Settings.WireMockServerSettings::get_AdminUsername()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Settings.WireMockServerSettings::get_AdminPassword()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Settings.WireMockServerSettings::get_AdminAzureADTenant()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Settings.WireMockServerSettings::get_AdminAzureADAudience()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Int32> WireMock.Settings.WireMockServerSettings::get_RequestLogExpirationDuration()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Int32> WireMock.Settings.WireMockServerSettings::get_MaxRequestLogCount()
-
+
-
+
-
+
-
-
+
+
System.Action`1<System.Object> WireMock.Settings.WireMockServerSettings::get_PreWireMockMiddlewareInit()
-
+
-
+
-
+
-
-
+
+
System.Action`1<System.Object> WireMock.Settings.WireMockServerSettings::get_PostWireMockMiddlewareInit()
-
+
-
+
-
+
-
-
+
+
System.Action`1<Microsoft.Extensions.DependencyInjection.IServiceCollection> WireMock.Settings.WireMockServerSettings::get_AdditionalServiceRegistration()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<WireMock.Types.CorsPolicyOptions> WireMock.Settings.WireMockServerSettings::get_CorsPolicyOptions()
-
+
-
+
-
+
-
-
+
+
WireMock.Logging.IWireMockLogger WireMock.Settings.WireMockServerSettings::get_Logger()
-
+
-
+
-
+
-
-
+
+
WireMock.Handlers.IFileSystemHandler WireMock.Settings.WireMockServerSettings::get_FileSystemHandler()
-
+
-
+
-
+
System.Action`2<HandlebarsDotNet.IHandlebars,WireMock.Handlers.IFileSystemHandler> WireMock.Settings.WireMockServerSettings::get_HandlebarsRegistrationCallback()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_AllowCSharpCodeMatcher()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_AllowBodyForAllHttpMethods()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_AllowOnlyDefinedHttpStatusCodeInResponse()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_DisableJsonBodyParsing()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_DisableRequestBodyDecompressing()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_DisableDeserializeFormUrlEncoded()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_HandleRequestsSynchronously()
-
+
-
+
-
+
-
-
+
+
WireMock.Settings.WireMockCertificateSettings WireMock.Settings.WireMockServerSettings::get_CertificateSettings()
-
+
-
+
-
+
-
-
+
+
System.Boolean WireMock.Settings.WireMockServerSettings::get_CustomCertificateDefined()
-
+
-
+
-
-
+
+
-
+
-
-
+
+
WireMock.Types.ClientCertificateMode WireMock.Settings.WireMockServerSettings::get_ClientCertificateMode()
-
+
-
+
-
+
-
-
+
+
System.Boolean WireMock.Settings.WireMockServerSettings::get_AcceptAnyClientCertificate()
-
+
-
+
-
+
-
-
+
+
WireMock.Settings.WebhookSettings WireMock.Settings.WireMockServerSettings::get_WebhookSettings()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_UseRegexExtended()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_SaveUnmatchedRequests()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<System.Boolean> WireMock.Settings.WireMockServerSettings::get_DoNotSaveDynamicResponseInLogEntry()
-
+
-
+
-
+
-
-
+
+
System.Nullable`1<WireMock.Types.QueryParameterMultipleValueSupport> WireMock.Settings.WireMockServerSettings::get_QueryParameterMultipleValueSupport()
-
+
-
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.Func`2<WireMock.Admin.Mappings.MatcherModel,WireMock.Matchers.IMatcher>> WireMock.Settings.WireMockServerSettings::get_CustomMatcherMappings()
-
+
-
+
-
+
Newtonsoft.Json.JsonSerializerSettings WireMock.Settings.WireMockServerSettings::get_JsonSerializerSettings()
-
+
-
+
-
+
-
-
+
+
System.Globalization.CultureInfo WireMock.Settings.WireMockServerSettings::get_Culture()
-
+
-
+
-
+
-
-
+
+
System.Collections.Generic.Dictionary`2<System.String,System.String[]> WireMock.Settings.WireMockServerSettings::get_ProtoDefinitions()
-
+
-
+
-
+
-
-
+
+
System.Collections.Generic.Dictionary`2<System.String,WireMock.Models.GraphQLSchemaDetails> WireMock.Settings.WireMockServerSettings::get_GraphQLSchemas()
-
+
-
+
-
+
-
-
+
+
System.String WireMock.Settings.WireMockServerSettings::get_AdminPath()
-
+
-
+
-
+
-
-
+
+
WireMock.Settings.HandlebarsSettings WireMock.Settings.WireMockServerSettings::get_HandlebarsSettings()
-
+
-
+
-
+
-
-
+
+
WireMock.Settings.ActivityTracingOptions WireMock.Settings.WireMockServerSettings::get_ActivityTracingOptions()
-
+
-
+
-
+
-
-
+
+
WireMock.Settings.WebSocketSettings WireMock.Settings.WireMockServerSettings::get_WebSocketSettings()
-
+
-
+
-
+
@@ -49997,34 +50553,34 @@
System.Void WireMock.Serialization.JsonSerializationConstants::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -50036,103 +50592,103 @@
System.String WireMock.RegularExpressions.RegexExtended::ReplaceGuidPattern(System.String)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.RegularExpressions.RegexExtended::.ctor(System.String)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.RegularExpressions.RegexExtended::.ctor(System.String,System.Text.RegularExpressions.RegexOptions)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.RegularExpressions.RegexExtended::.ctor(System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.RegularExpressions.RegexExtended::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -50144,76 +50700,76 @@
System.String WireMock.Models.GraphQLSchemaDetails::get_SchemaAsString()
-
+
-
+
-
+
System.Nullable`1<WireMock.Models.StringPattern> WireMock.Models.GraphQLSchemaDetails::get_SchemaAsStringPattern()
-
+
-
+
-
+
WireMock.Models.GraphQL.ISchemaData WireMock.Models.GraphQLSchemaDetails::get_SchemaAsISchemaData()
-
+
-
+
-
+
System.Nullable`1<AnyOfTypes.AnyOf`3<System.String,WireMock.Models.StringPattern,WireMock.Models.GraphQL.ISchemaData>> WireMock.Models.GraphQLSchemaDetails::get_Schema()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.Type> WireMock.Models.GraphQLSchemaDetails::get_CustomScalars()
-
+
-
+
-
+
@@ -50225,304 +50781,304 @@
System.Text.Encoding WireMock.Util.BodyData::get_Encoding()
-
+
-
+
-
+
System.String WireMock.Util.BodyData::get_BodyAsString()
-
+
-
+
-
+
System.Collections.Generic.IDictionary`2<System.String,System.String> WireMock.Util.BodyData::get_BodyAsFormUrlEncoded()
-
+
-
+
-
+
System.Object WireMock.Util.BodyData::get_BodyAsJson()
-
+
-
+
-
+
System.Byte[] WireMock.Util.BodyData::get_BodyAsBytes()
-
+
-
+
-
+
System.Nullable`1<System.Boolean> WireMock.Util.BodyData::get_BodyAsJsonIndented()
-
+
-
+
-
+
System.String WireMock.Util.BodyData::get_BodyAsFile()
-
+
-
+
-
+
System.Nullable`1<System.Boolean> WireMock.Util.BodyData::get_BodyAsFileIsCached()
-
+
-
+
-
+
System.Nullable`1<WireMock.Types.BodyType> WireMock.Util.BodyData::get_DetectedBodyType()
-
+
-
+
-
+
System.Nullable`1<WireMock.Types.BodyType> WireMock.Util.BodyData::get_DetectedBodyTypeFromContentType()
-
+
-
+
-
+
System.String WireMock.Util.BodyData::get_DetectedCompression()
-
+
-
+
-
+
System.String WireMock.Util.BodyData::get_IsFuncUsed()
-
+
-
+
-
+
System.Func`1<WireMock.Models.IdOrTexts> WireMock.Util.BodyData::get_ProtoDefinition()
-
+
-
+
-
+
System.String WireMock.Util.BodyData::get_ProtoBufMessageType()
-
+
-
+
-
+
WireMock.Models.IBlockingQueue`1<System.String> WireMock.Util.BodyData::get_SseStringQueue()
-
+
-
+
-
+
System.Threading.Tasks.Task WireMock.Util.BodyData::get_BodyAsSseStringTask()
-
+
-
+
-
+
-
+
WireMock.Util.BodyParser
-
-
+
+
System.Boolean WireMock.Util.BodyParser::ShouldParseBody(System.String,System.Boolean)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.Types.BodyType WireMock.Util.BodyParser::DetectBodyTypeFromContentType(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Util.BodyParser::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -50534,12 +51090,12 @@
System.Boolean WireMock.Util.BodyParser/<>c__DisplayClass10_0::<ParseAsync>b__0(System.Text.Encoding)
-
+
-
+
-
+
@@ -50551,80 +51107,80 @@
System.Void WireMock.Util.BodyParser/<ParseAsync>d__10::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -50636,32 +51192,32 @@
System.Void WireMock.Util.BodyParser/<ReadBytesAsync>d__11::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -50673,67 +51229,67 @@
System.IO.Stream WireMock.Util.BodyParserSettings::get_Stream()
-
+
-
+
-
+
System.String WireMock.Util.BodyParserSettings::get_ContentType()
-
+
-
+
-
+
System.String WireMock.Util.BodyParserSettings::get_ContentEncoding()
-
+
-
+
-
+
System.Boolean WireMock.Util.BodyParserSettings::get_DecompressGZipAndDeflate()
-
+
-
+
-
+
System.Boolean WireMock.Util.BodyParserSettings::get_DeserializeJson()
-
+
-
+
-
+
System.Boolean WireMock.Util.BodyParserSettings::get_DeserializeFormUrlEncoded()
-
+
-
+
-
+
@@ -50745,291 +51301,291 @@
System.Boolean WireMock.Util.BytesEncodingUtils::TryGetEncoding(System.Byte[],System.Text.Encoding&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Boolean WireMock.Util.BytesEncodingUtils::StartsWith(System.Collections.Generic.IEnumerable`1<System.Byte>,System.Collections.Generic.IReadOnlyCollection`1<System.Byte>)
-
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.BytesEncodingUtils::IsUtf8(System.Collections.Generic.IReadOnlyList`1<System.Byte>,System.Int32)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.BytesEncodingUtils::IsValid(System.Collections.Generic.IReadOnlyList`1<System.Byte>,System.Int32,System.Int32,System.Int32&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -51041,58 +51597,58 @@
System.Byte[] WireMock.Util.CompressionUtils::Compress(System.String,System.Byte[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.Byte[] WireMock.Util.CompressionUtils::Decompress(System.String,System.Byte[])
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.IO.Stream WireMock.Util.CompressionUtils::Create(System.String,System.IO.Stream,System.IO.Compression.CompressionMode)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -51104,288 +51660,288 @@
System.String WireMock.Util.CSharpFormatter::ConvertToAnonymousObjectDefinition(System.Object,System.Int32)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
System.String WireMock.Util.CSharpFormatter::ConvertJsonToAnonymousObjectDefinition(Newtonsoft.Json.Linq.JToken,System.Int32)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.String WireMock.Util.CSharpFormatter::ToCSharpIntLiteral(System.Nullable`1<System.Int32>)
-
+
-
+
-
-
+
+
-
+
System.String WireMock.Util.CSharpFormatter::ToCSharpBooleanLiteral(System.Boolean)
-
+
-
+
-
-
+
+
-
+
System.String WireMock.Util.CSharpFormatter::ToCSharpStringLiteral(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Util.CSharpFormatter::FormatPropertyName(System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.String WireMock.Util.CSharpFormatter::FormatObject(Newtonsoft.Json.Linq.JObject,System.Int32)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.String WireMock.Util.CSharpFormatter::FormatArray(Newtonsoft.Json.Linq.JArray,System.Int32)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Util.CSharpFormatter::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -51397,64 +51953,64 @@
System.String WireMock.Util.FilePathUtils::CleanPath(System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.String WireMock.Util.FilePathUtils::RemoveLeadingDirectorySeparators(System.String)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.String WireMock.Util.FilePathUtils::Combine(System.String,System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Util.FilePathUtils::GetRelativePath(System.String,System.String)
-
+
-
-
-
+
+
+
-
+
@@ -51466,187 +52022,187 @@
System.Boolean WireMock.Util.JsonUtils::IsJson(System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
System.Boolean WireMock.Util.JsonUtils::TryParseAsJObject(System.String,Newtonsoft.Json.Linq.JObject&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.String WireMock.Util.JsonUtils::Serialize(System.Object)
-
+
-
-
-
+
+
+
-
+
System.Byte[] WireMock.Util.JsonUtils::SerializeAsPactFile(System.Object)
-
+
-
-
-
-
+
+
+
+
-
+
Newtonsoft.Json.Linq.JToken WireMock.Util.JsonUtils::Parse(System.String)
-
+
-
-
-
+
+
+
-
+
System.Object WireMock.Util.JsonUtils::DeserializeObject(System.String)
-
+
-
-
-
+
+
+
-
+
T WireMock.Util.JsonUtils::DeserializeObject(System.String)
-
+
-
-
-
+
+
+
-
+
T WireMock.Util.JsonUtils::TryDeserializeObject(System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
T WireMock.Util.JsonUtils::ParseJTokenToObject(System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
Newtonsoft.Json.Linq.JToken WireMock.Util.JsonUtils::ConvertValueToJToken(System.Object)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -51658,27 +52214,27 @@
System.String WireMock.Util.MappingConverterUtils::ToCSharpCodeArguments(System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.IMatcher>)
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Util.MappingConverterUtils::ToCSharpCodeArguments(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
+
+
+
-
+
@@ -51690,123 +52246,123 @@
WireMock.Models.IdOrTexts WireMock.Util.ProtoDefinitionUtils::GetIdOrTexts(WireMock.Settings.WireMockServerSettings,System.String[])
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Util.QueryStringParser
System.Boolean WireMock.Util.QueryStringParser::TryParse(System.String,System.Boolean,System.Collections.Generic.IDictionary`2<System.String,System.String>&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Collections.Generic.IDictionary`2<System.String,WireMock.Types.WireMockList`1<System.String>> WireMock.Util.QueryStringParser::Parse(System.String,System.Nullable`1<WireMock.Types.QueryParameterMultipleValueSupport>)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Util.QueryStringParser::.cctor()
-
+
-
+
-
+
@@ -51818,26 +52374,26 @@
System.String[] WireMock.Util.QueryStringParser/<>c__DisplayClass2_0::<Parse>g__JoinParts|5(System.Boolean,System.String[])
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -51849,12 +52405,12 @@
System.Void WireMock.Util.SingletonLock::.cctor()
-
+
-
+
-
+
@@ -51866,299 +52422,299 @@
T WireMock.Util.SingletonFactory`1::GetInstance()
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Util.TypeLoader
System.Boolean WireMock.Util.TypeLoader::TryLoadNewInstance(TInterface&,System.Object[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Boolean WireMock.Util.TypeLoader::TryLoadStaticInstance(TInterface&,System.Object[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.TypeLoader::TryLoadNewInstanceByFullName(TInterface&,System.String,System.Object[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.TypeLoader::TryLoadStaticInstanceByFullName(TInterface&,System.String,System.Object[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Boolean WireMock.Util.TypeLoader::TryGetPluginType(System.Type&)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.TypeLoader::TryGetPluginTypeByFullName(System.String,System.Type&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.Boolean WireMock.Util.TypeLoader::TryFindTypeInDlls(System.String,System.Type&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Boolean WireMock.Util.TypeLoader::TryGetImplementationTypeByInterfaceAndOptionalFullName(System.Reflection.Assembly,System.String,System.Type&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Util.TypeLoader::.cctor()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -52170,401 +52726,401 @@
System.Object WireMock.Matchers.ExactObjectMatcher::get_Value()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.ExactObjectMatcher::get_MatchBehaviour()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.ExactObjectMatcher::IsMatch(System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.String WireMock.Matchers.ExactObjectMatcher::get_Name()
-
+
-
+
-
+
System.String WireMock.Matchers.ExactObjectMatcher::GetCSharpCodeArguments()
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.ExactObjectMatcher::.ctor(System.Object)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.ExactObjectMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Object)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Matchers.ExactObjectMatcher::.ctor(System.Byte[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.ExactObjectMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Byte[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
WireMock.Matchers.MatchBehaviourHelper
-
-
+
+
System.Double WireMock.Matchers.MatchBehaviourHelper::Convert(WireMock.Matchers.MatchBehaviour,System.Double)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.MatchBehaviourHelper::Convert(WireMock.Matchers.MatchBehaviour,WireMock.Matchers.MatchResult)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
WireMock.Matchers.MatchResult
System.Double WireMock.Matchers.MatchResult::get_Score()
-
+
-
+
-
+
System.Exception WireMock.Matchers.MatchResult::get_Exception()
-
+
-
+
-
+
System.String WireMock.Matchers.MatchResult::get_Name()
-
+
-
+
-
+
-
-
-
- WireMock.Matchers.MatchResult[] WireMock.Matchers.MatchResult::get_MatchResults()
-
-
-
-
-
-
-
-
+
- System.Boolean WireMock.Matchers.MatchResult::IsPerfect()
-
+ WireMock.Matchers.MatchResult[] WireMock.Matchers.MatchResult::get_MatchResults()
+
-
+
-
+
+
+
+
+
+ System.Boolean WireMock.Matchers.MatchResult::IsPerfect()
+
+
+
+
+
+
WireMock.Matchers.MatchResult WireMock.Matchers.MatchResult::From(System.String,System.Double,System.Exception)
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
- WireMock.Matchers.MatchResult WireMock.Matchers.MatchResult::From(System.String,System.Exception)
-
-
-
-
-
-
-
-
-
-
-
-
- WireMock.Matchers.MatchResult WireMock.Matchers.MatchResult::From(System.String,System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.MatchResult>,WireMock.Matchers.MatchOperator)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
- System.ValueTuple`2<System.Double,System.Exception> WireMock.Matchers.MatchResult::Expand()
-
+ WireMock.Matchers.MatchResult WireMock.Matchers.MatchResult::From(System.String,System.Exception)
+
-
-
-
+
+
+
-
+
-
-
+
+
- WireMock.Matchers.Request.MatchDetail WireMock.Matchers.MatchResult::ToMatchDetail()
-
+ WireMock.Matchers.MatchResult WireMock.Matchers.MatchResult::From(System.String,System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.MatchResult>,WireMock.Matchers.MatchOperator)
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
+
+
+
+
+ System.ValueTuple`2<System.Double,System.Exception> WireMock.Matchers.MatchResult::Expand()
+
+
+
+
+
+
+
+
+
+
+
+
+ WireMock.Matchers.Request.MatchDetail WireMock.Matchers.MatchResult::ToMatchDetail()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Matchers.MatchScores
System.Boolean WireMock.Matchers.MatchScores::IsPerfect(System.Double)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Double WireMock.Matchers.MatchScores::ToScore(System.Boolean)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Double WireMock.Matchers.MatchScores::ToScore(System.Collections.Generic.IReadOnlyCollection`1<System.Boolean>,WireMock.Matchers.MatchOperator)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Double WireMock.Matchers.MatchScores::ToScore(System.Collections.Generic.IReadOnlyCollection`1<System.Double>,WireMock.Matchers.MatchOperator)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -52576,424 +53132,424 @@
System.String WireMock.Matchers.NotNullOrEmptyMatcher::get_Name()
-
+
-
+
-
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.NotNullOrEmptyMatcher::get_MatchBehaviour()
-
+
-
+
-
+
System.Object WireMock.Matchers.NotNullOrEmptyMatcher::get_Value()
-
+
-
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.NotNullOrEmptyMatcher::IsMatch(System.Object)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.NotNullOrEmptyMatcher::IsMatch(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.NotNullOrEmptyMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.NotNullOrEmptyMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String WireMock.Matchers.NotNullOrEmptyMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.NotNullOrEmptyMatcher::.ctor(WireMock.Matchers.MatchBehaviour)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
WireMock.Matchers.RegexMatcher
-
-
+
+
WireMock.Matchers.MatchBehaviour WireMock.Matchers.RegexMatcher::get_MatchBehaviour()
-
+
-
+
-
+
-
-
+
+
WireMock.Matchers.MatchResult WireMock.Matchers.RegexMatcher::IsMatch(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.RegexMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
System.String WireMock.Matchers.RegexMatcher::get_Name()
-
+
-
+
-
+
System.Boolean WireMock.Matchers.RegexMatcher::get_IgnoreCase()
-
+
-
+
-
+
-
-
+
+
WireMock.Matchers.MatchOperator WireMock.Matchers.RegexMatcher::get_MatchOperator()
-
+
-
+
-
+
System.String WireMock.Matchers.RegexMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.RegexMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Boolean,System.Boolean,WireMock.Matchers.MatchOperator)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.RegexMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Boolean,System.Boolean,WireMock.Matchers.MatchOperator)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.RegexMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],System.Boolean,System.Boolean,WireMock.Matchers.MatchOperator)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Matchers.WildcardMatcher
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.WildcardMatcher::GetPatterns()
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.String WireMock.Matchers.WildcardMatcher::get_Name()
-
+
-
+
-
+
System.String WireMock.Matchers.WildcardMatcher::GetCSharpCodeArguments()
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Matchers.WildcardMatcher::CreateArray(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.WildcardMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.WildcardMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>,System.Boolean)
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Matchers.WildcardMatcher::.ctor(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],System.Boolean)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.WildcardMatcher::.ctor(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[],System.Boolean,WireMock.Matchers.MatchOperator)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -53005,157 +53561,157 @@
WireMock.Matchers.IMatcher[] WireMock.Matchers.Request.RequestMessageGraphQLMatcher::get_Matchers()
-
+
-
+
-
+
WireMock.Matchers.MatchOperator WireMock.Matchers.Request.RequestMessageGraphQLMatcher::get_MatchOperator()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageGraphQLMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageGraphQLMatcher::CalculateMatchResult(WireMock.IRequestMessage,WireMock.Matchers.IMatcher)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<WireMock.Matchers.MatchResult> WireMock.Matchers.Request.RequestMessageGraphQLMatcher::CalculateMatchResults(WireMock.IRequestMessage)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Matchers.IMatcher[] WireMock.Matchers.Request.RequestMessageGraphQLMatcher::CreateMatcherArray(WireMock.Matchers.MatchBehaviour,AnyOfTypes.AnyOf`3<System.String,WireMock.Models.StringPattern,WireMock.Models.GraphQL.ISchemaData>,System.Collections.Generic.IDictionary`2<System.String,System.Type>)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageGraphQLMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.String,System.Collections.Generic.IDictionary`2<System.String,System.Type>)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageGraphQLMatcher::.ctor(WireMock.Matchers.MatchBehaviour,WireMock.Models.GraphQL.ISchemaData,System.Collections.Generic.IDictionary`2<System.String,System.Type>)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageGraphQLMatcher::.ctor(WireMock.Matchers.IMatcher[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageGraphQLMatcher::.ctor(WireMock.Matchers.MatchOperator,WireMock.Matchers.IMatcher[])
-
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -53167,64 +53723,64 @@
WireMock.Matchers.IProtoBufMatcher WireMock.Matchers.Request.RequestMessageProtoBufMatcher::get_Matcher()
-
+
-
+
-
+
System.Double WireMock.Matchers.Request.RequestMessageProtoBufMatcher::GetMatchingScore(WireMock.IRequestMessage,WireMock.Matchers.Request.IRequestMatchResult)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Matchers.MatchResult WireMock.Matchers.Request.RequestMessageProtoBufMatcher::GetMatchResult(WireMock.IRequestMessage)
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Matchers.Request.RequestMessageProtoBufMatcher::.ctor(WireMock.Matchers.MatchBehaviour,System.Func`1<WireMock.Models.IdOrTexts>,System.String,WireMock.Matchers.IObjectMatcher)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -53236,89 +53792,89 @@
WireMock.Matchers.MatchResult WireMock.Matchers.Helpers.BodyDataMatchScoreCalculator::CalculateMatchScore(WireMock.Util.IBodyData,WireMock.Matchers.IMatcher)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Void WireMock.Matchers.Helpers.BodyDataMatchScoreCalculator::.cctor()
-
+
-
+
-
+
@@ -53330,37 +53886,37 @@
System.Boolean WireMock.Http.HttpKnownHeaderNames::IsRestrictedResponseHeader(System.String)
-
+
-
+
-
+
System.Void WireMock.Http.HttpKnownHeaderNames::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -53372,56 +53928,56 @@
System.String WireMock.Extensions.AnyOfExtensions::GetPattern(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.String[] WireMock.Extensions.AnyOfExtensions::GetPatterns(AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[])
-
+
-
-
-
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern>[] WireMock.Extensions.AnyOfExtensions::ToAnyOfPatterns(System.Collections.Generic.IEnumerable`1<System.String>)
-
+
-
-
-
+
+
+
-
+
AnyOfTypes.AnyOf`2<System.String,WireMock.Models.StringPattern> WireMock.Extensions.AnyOfExtensions::ToAnyOfPattern(System.String)
-
+
-
-
-
+
+
+
-
+
@@ -53433,58 +53989,58 @@
System.Boolean WireMock.Extensions.DictionaryExtensions::TryGetStringValue(System.Collections.IDictionary,System.String,System.String&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
WireMock.Extensions.EnumExtensions
-
-
+
+
System.String WireMock.Extensions.EnumExtensions::GetFullyQualifiedEnumValue(T)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -53496,24 +54052,24 @@
System.Exception WireMock.Extensions.ExceptionExtensions::ToException(System.Exception[])
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -53525,31 +54081,31 @@
System.String WireMock.Extensions.StringExtensions::GetDeterministicHashCodeAsString(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -53561,80 +54117,149 @@
System.Void WireMock.Exceptions.WireMockException::.ctor()
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Exceptions.WireMockException::.ctor(System.String)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Exceptions.WireMockException::.ctor(System.String,System.Exception)
-
+
-
-
-
+
+
+
-
+
-
+
WireMock.Constants.RegexConstants
-
-
+
+
System.Void WireMock.Constants.RegexConstants::.cctor()
-
+
-
+
-
+
+
+
+
+
+
+ System.Buffers.Lease`1
+
+
+
+
+ T[] System.Buffers.Lease`1::get_Rented()
+
+
+
+
+
+
+
+
+
+
+ T[] System.Buffers.Lease`1::op_Implicit(System.Buffers.Lease`1<T>)
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Buffers.Lease`1::Dispose()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Buffers.Lease`1::.ctor(System.Buffers.ArrayPool`1<T>,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+ System.Buffers.ArrayPoolExtensions
+
+
+
+
+ System.Buffers.Lease`1<T> System.Buffers.ArrayPoolExtensions::Lease(System.Buffers.ArrayPool`1<T>,System.Int32)
+
+
+
+
+
+
-
+
WireMock.Net.Testcontainers.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:20
WireMock.Net.Testcontainers
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -53645,12 +54270,12 @@
System.Void WireMock.Constants.RegexConstants::.cctor()
-
+
-
+
-
+
@@ -53662,278 +54287,278 @@
System.Int32 WireMock.Util.EnhancedFileSystemWatcher::get_Interval()
-
+
-
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::set_Interval(System.Int32)
-
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.EnhancedFileSystemWatcher::get_FilterRecentEvents()
-
+
-
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnChanged(System.IO.FileSystemEventArgs)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnCreated(System.IO.FileSystemEventArgs)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnDeleted(System.IO.FileSystemEventArgs)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnRenamed(System.IO.RenamedEventArgs)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::InitializeMembers(System.Int32)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
System.Boolean WireMock.Util.EnhancedFileSystemWatcher::HasAnotherFileEventOccurredRecently(System.String)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnChanged(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnCreated(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnDeleted(System.Object,System.IO.FileSystemEventArgs)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::OnRenamed(System.Object,System.IO.RenamedEventArgs)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::.ctor(System.Int32)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::.ctor(System.String,System.Int32)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Util.EnhancedFileSystemWatcher::.ctor(System.String,System.String,System.Int32)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
@@ -53945,105 +54570,105 @@
System.Int32 WireMock.Util.PortUtils::FindFreeTcpPort()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
System.Collections.Generic.IReadOnlyList`1<System.Int32> WireMock.Util.PortUtils::FindFreeTcpPorts(System.Int32)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Boolean WireMock.Util.PortUtils::TryExtract(System.String,System.Boolean&,System.Boolean&,System.String&,System.String&,System.Int32&)
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Util.PortUtils::.cctor()
-
+
-
+
-
+
@@ -54055,56 +54680,56 @@
System.Net.Http.HttpClient WireMock.Http.HttpClientFactory2::Create(System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Net.Http.HttpClient WireMock.Http.HttpClientFactory2::Create(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
+
+
+
+
-
+
System.Net.Http.HttpMessageHandler WireMock.Http.HttpClientFactory2::CreateHandlerPipeline(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -54116,225 +54741,225 @@
System.String WireMock.Net.Testcontainers.WireMockConfiguration::get_Username()
-
+
-
+
-
+
System.String WireMock.Net.Testcontainers.WireMockConfiguration::get_Password()
-
+
-
+
-
+
System.String WireMock.Net.Testcontainers.WireMockConfiguration::get_StaticMappingsPath()
-
+
-
+
-
+
System.Boolean WireMock.Net.Testcontainers.WireMockConfiguration::get_WatchStaticMappings()
-
+
-
+
-
+
System.Boolean WireMock.Net.Testcontainers.WireMockConfiguration::get_WatchStaticMappingsInSubdirectories()
-
+
-
+
-
+
System.Boolean WireMock.Net.Testcontainers.WireMockConfiguration::get_HasBasicAuthentication()
-
+
-
+
-
-
+
+
-
+
System.Collections.Generic.List`1<System.String> WireMock.Net.Testcontainers.WireMockConfiguration::get_AdditionalUrls()
-
+
-
+
-
+
System.Collections.Generic.Dictionary`2<System.String,System.String[]> WireMock.Net.Testcontainers.WireMockConfiguration::get_ProtoDefinitions()
-
+
-
+
-
+
WireMock.Net.Testcontainers.WireMockConfiguration WireMock.Net.Testcontainers.WireMockConfiguration::WithStaticMappingsPath(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockConfiguration WireMock.Net.Testcontainers.WireMockConfiguration::WithWatchStaticMappings(System.Boolean)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockConfiguration WireMock.Net.Testcontainers.WireMockConfiguration::WithAdditionalUrl(System.String)
-
+
-
-
-
-
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockConfiguration WireMock.Net.Testcontainers.WireMockConfiguration::AddProtoDefinition(System.String,System.String[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockConfiguration::.ctor(System.String,System.String)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockConfiguration::.ctor(DotNet.Testcontainers.Configurations.IResourceConfiguration`1<Docker.DotNet.Models.CreateContainerParameters>)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockConfiguration::.ctor(DotNet.Testcontainers.Configurations.IContainerConfiguration)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockConfiguration::.ctor(WireMock.Net.Testcontainers.WireMockConfiguration)
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockConfiguration::.ctor(WireMock.Net.Testcontainers.WireMockConfiguration,WireMock.Net.Testcontainers.WireMockConfiguration)
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -54346,229 +54971,229 @@
System.String WireMock.Net.Testcontainers.WireMockContainer::GetPublicUrl()
-
+
-
+
-
+
System.Collections.Generic.IDictionary`2<System.Int32,System.String> WireMock.Net.Testcontainers.WireMockContainer::GetPublicUrls()
-
+
-
+
-
+
System.String WireMock.Net.Testcontainers.WireMockContainer::GetMappedPublicUrl(System.Int32)
-
+
-
-
-
+
+
+
-
+
WireMock.Client.IWireMockAdminApi WireMock.Net.Testcontainers.WireMockContainer::CreateWireMockAdminClient()
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
System.Net.Http.HttpClient WireMock.Net.Testcontainers.WireMockContainer::CreateClient(System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Net.Http.HttpClient WireMock.Net.Testcontainers.WireMockContainer::CreateClient(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Threading.Tasks.Task WireMock.Net.Testcontainers.WireMockContainer::CallAdditionalActionsAfterReadyAsync()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Threading.Tasks.ValueTask WireMock.Net.Testcontainers.WireMockContainer::DisposeAsyncCore()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockContainer::ValidateIfRunning()
-
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockContainer::RegisterEnhancedFileSystemWatcher()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
System.Uri WireMock.Net.Testcontainers.WireMockContainer::GetPublicUri()
-
+
-
+
-
+
System.Collections.Generic.IDictionary`2<System.Int32,System.Uri> WireMock.Net.Testcontainers.WireMockContainer::GetPublicUris()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockContainer::.ctor(WireMock.Net.Testcontainers.WireMockConfiguration)
-
+
-
-
+
+
-
+
@@ -54580,39 +55205,39 @@
System.Void WireMock.Net.Testcontainers.WireMockContainer/<AddProtoDefinitionsAsync>d__20::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -54624,23 +55249,23 @@
System.Void WireMock.Net.Testcontainers.WireMockContainer/<CopyAsync>d__13::MoveNext()
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -54652,21 +55277,21 @@
System.Void WireMock.Net.Testcontainers.WireMockContainer/<FileCreatedChangedOrDeleted>d__21::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -54678,15 +55303,15 @@
System.Void WireMock.Net.Testcontainers.WireMockContainer/<PathStartsWithContainerMappingsPath>d__17::MoveNext()
-
+
-
-
-
-
+
+
+
+
-
+
@@ -54698,27 +55323,27 @@
System.Void WireMock.Net.Testcontainers.WireMockContainer/<ReloadStaticMappingsAsync>d__14::MoveNext()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -54730,15 +55355,15 @@
System.Void WireMock.Net.Testcontainers.WireMockContainer/<ReloadStaticMappingsAsync>d__22::MoveNext()
-
+
-
-
-
-
+
+
+
+
-
+
@@ -54750,398 +55375,398 @@
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithImage()
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithLinuxImage()
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithWindowsImage()
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithImage(System.String)
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithCustomImage(System.String)
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithAdminUserNameAndPassword(System.String,System.String)
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithNullLogger()
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithReadStaticMappings()
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithWatchStaticMappings(System.Boolean)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithMappings(System.String,System.Boolean)
-
+
-
-
-
-
-
+
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithHttp2()
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::AddUrl(System.String)
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::AddProtoDefinition(System.String,System.String[])
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithCommand(System.String,System.Boolean)
-
+
-
-
-
+
+
+
-
-
+
+
-
+
WireMock.Net.Testcontainers.WireMockConfiguration WireMock.Net.Testcontainers.WireMockContainerBuilder::get_DockerResourceConfiguration()
-
+
-
+
-
+
WireMock.Net.Testcontainers.WireMockContainer WireMock.Net.Testcontainers.WireMockContainerBuilder::Build()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::Init()
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::Clone(DotNet.Testcontainers.Configurations.IContainerConfiguration)
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::Clone(DotNet.Testcontainers.Configurations.IResourceConfiguration`1<Docker.DotNet.Models.CreateContainerParameters>)
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::Merge(WireMock.Net.Testcontainers.WireMockConfiguration,WireMock.Net.Testcontainers.WireMockConfiguration)
-
+
-
-
-
+
+
+
-
+
WireMock.Net.Testcontainers.WireMockContainerBuilder WireMock.Net.Testcontainers.WireMockContainerBuilder::WithImage(System.Runtime.InteropServices.OSPlatform)
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockContainerBuilder::.ctor()
-
+
-
-
-
-
+
+
+
+
-
+
System.Void WireMock.Net.Testcontainers.WireMockContainerBuilder::.ctor(WireMock.Net.Testcontainers.WireMockConfiguration)
-
+
-
-
-
-
+
+
+
+
-
+
@@ -55158,21 +55783,21 @@
System.Void WireMock.Net.Testcontainers.WireMockWaitStrategy/<UntilAsync>d__0::MoveNext()
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
+
@@ -55184,32 +55809,32 @@
System.Collections.Generic.List`1<T> WireMock.Net.Testcontainers.Utils.CombineUtils::Combine(System.Collections.Generic.List`1<T>,System.Collections.Generic.List`1<T>)
-
+
-
-
-
+
+
+
-
+
System.Collections.Generic.Dictionary`2<TKey,TValue> WireMock.Net.Testcontainers.Utils.CombineUtils::Combine(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Collections.Generic.Dictionary`2<TKey,TValue>)
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
@@ -55221,50 +55846,50 @@
System.Void WireMock.Net.Testcontainers.Utils.ContainerInfoProvider::.cctor()
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
WireMock.Net.Testcontainers.Utils.TestcontainersUtils
-
-
+
+
System.Void WireMock.Net.Testcontainers.Utils.TestcontainersUtils::.cctor()
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
WireMock.Net.Testcontainers.Utils.TestcontainersUtils/<>c/<<-cctor>b__1_0>d
@@ -55276,36 +55901,36 @@
System.String WireMock.Net.Testcontainers.Models.ContainerInfo::get_Image()
-
+
-
+
-
+
System.String WireMock.Net.Testcontainers.Models.ContainerInfo::get_MappingsPath()
-
+
-
+
-
+
System.Void WireMock.Net.Testcontainers.Models.ContainerInfo::.ctor(System.String,System.String)
-
+
-
-
-
+
+
+
-
+
@@ -55317,190 +55942,190 @@
DotNet.Testcontainers.Configurations.HttpWaitStrategy DotNet.Testcontainers.Configurations.HttpWaitStrategyExtensions::WithBasicAuthentication(DotNet.Testcontainers.Configurations.HttpWaitStrategy,WireMock.Net.Testcontainers.WireMockConfiguration)
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
-
+
WireMock.Net.xUnit.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:21
WireMock.Net.xUnit
-
+
-
+
WireMock.Net.Xunit.TestOutputHelperWireMockLogger
-
-
+
+
System.Void WireMock.Net.Xunit.TestOutputHelperWireMockLogger::Debug(System.String,System.Object[])
-
+
-
-
-
+
+
+
-
+
-
-
+
+
System.Void WireMock.Net.Xunit.TestOutputHelperWireMockLogger::Info(System.String,System.Object[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Net.Xunit.TestOutputHelperWireMockLogger::Warn(System.String,System.Object[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Net.Xunit.TestOutputHelperWireMockLogger::Error(System.String,System.Object[])
-
+
-
-
-
+
+
+
-
+
System.Void WireMock.Net.Xunit.TestOutputHelperWireMockLogger::Error(System.String,System.Exception)
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Net.Xunit.TestOutputHelperWireMockLogger::DebugRequestResponse(WireMock.Admin.Requests.LogEntryModel,System.Boolean)
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
System.String WireMock.Net.Xunit.TestOutputHelperWireMockLogger::Format(System.String,System.String,System.Object[])
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
-
+
+
System.Void WireMock.Net.Xunit.TestOutputHelperWireMockLogger::.ctor(Xunit.Abstractions.ITestOutputHelper)
-
+
-
-
-
-
+
+
+
+
-
+
-
+
WireMock.Org.Abstractions.dll
- 2026-02-10T05:47:01
+ 2026-02-11T10:36:21
WireMock.Org.Abstractions
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -55511,133 +56136,133 @@
System.String WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_Id()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_Uuid()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_Name()
-
+
-
+
-
+
WireMock.Org.Abstractions.WireMockOrgRequest WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_Request()
-
+
-
+
-
+
WireMock.Org.Abstractions.WireMockOrgResponse WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_Response()
-
+
-
+
-
+
System.Boolean WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_Persistent()
-
+
-
+
-
+
System.Int32 WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_Priority()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_ScenarioName()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_RequiredScenarioState()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_NewScenarioState()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_PostServeActions()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.GetAdminMappingsByStubMappingIdResult::get_Metadata()
-
+
-
+
-
+
@@ -55649,23 +56274,23 @@
WireMock.Org.Abstractions.Mapping[] WireMock.Org.Abstractions.GetAdminMappingsResult::get_Mappings()
-
+
-
+
-
+
WireMock.Org.Abstractions.Meta WireMock.Org.Abstractions.GetAdminMappingsResult::get_Meta()
-
+
-
+
-
+
@@ -55677,12 +56302,12 @@
System.String WireMock.Org.Abstractions.GetAdminRecordingsStatusResult::get_Status()
-
+
-
+
-
+
@@ -55694,12 +56319,12 @@
WireMock.Org.Abstractions.NearMisses WireMock.Org.Abstractions.GetAdminRequestsUnmatchedNearMissesResult::get_NearMisses()
-
+
-
+
-
+
@@ -55711,12 +56336,12 @@
WireMock.Org.Abstractions.Scenarios WireMock.Org.Abstractions.GetAdminScenariosResult::get_Scenarios()
-
+
-
+
-
+
@@ -55728,133 +56353,133 @@
System.String WireMock.Org.Abstractions.Mapping::get_Id()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.Mapping::get_Uuid()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.Mapping::get_Name()
-
+
-
+
-
+
WireMock.Org.Abstractions.MappingsRequest WireMock.Org.Abstractions.Mapping::get_Request()
-
+
-
+
-
+
WireMock.Org.Abstractions.MappingsResponse WireMock.Org.Abstractions.Mapping::get_Response()
-
+
-
+
-
+
System.Boolean WireMock.Org.Abstractions.Mapping::get_Persistent()
-
+
-
+
-
+
System.Int32 WireMock.Org.Abstractions.Mapping::get_Priority()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.Mapping::get_ScenarioName()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.Mapping::get_RequiredScenarioState()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.Mapping::get_NewScenarioState()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.Mapping::get_PostServeActions()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.Mapping::get_Metadata()
-
+
-
+
-
+
@@ -55866,111 +56491,111 @@
System.String WireMock.Org.Abstractions.MappingsRequest::get_Method()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsRequest::get_Url()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsRequest::get_UrlPath()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsRequest::get_UrlPathPattern()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsRequest::get_UrlPattern()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.MappingsRequest::get_QueryParameters()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.MappingsRequest::get_Headers()
-
+
-
+
-
+
WireMock.Org.Abstractions.MappingsRequestBasicAuthCredentials WireMock.Org.Abstractions.MappingsRequest::get_BasicAuthCredentials()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.MappingsRequest::get_Cookies()
-
+
-
+
-
+
System.Object[] WireMock.Org.Abstractions.MappingsRequest::get_BodyPatterns()
-
+
-
+
-
+
@@ -55982,23 +56607,23 @@
System.String WireMock.Org.Abstractions.MappingsRequestBasicAuthCredentials::get_Password()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsRequestBasicAuthCredentials::get_Username()
-
+
-
+
-
+
@@ -56010,166 +56635,166 @@
System.Int32 WireMock.Org.Abstractions.MappingsResponse::get_Status()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsResponse::get_StatusMessage()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.MappingsResponse::get_Headers()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.MappingsResponse::get_AdditionalProxyRequestHeaders()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsResponse::get_Body()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsResponse::get_Base64Body()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.MappingsResponse::get_JsonBody()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsResponse::get_BodyFileName()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsResponse::get_Fault()
-
+
-
+
-
+
System.Int32 WireMock.Org.Abstractions.MappingsResponse::get_FixedDelayMilliseconds()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.MappingsResponse::get_DelayDistribution()
-
+
-
+
-
+
System.Nullable`1<System.Boolean> WireMock.Org.Abstractions.MappingsResponse::get_FromConfiguredStub()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.MappingsResponse::get_ProxyBaseUrl()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.MappingsResponse::get_TransformerParameters()
-
+
-
+
-
+
System.String[] WireMock.Org.Abstractions.MappingsResponse::get_Transformers()
-
+
-
+
-
+
@@ -56181,12 +56806,12 @@
System.Int32 WireMock.Org.Abstractions.Meta::get_Total()
-
+
-
+
-
+
@@ -56198,67 +56823,67 @@
System.String WireMock.Org.Abstractions.NearMisses::get_Method()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.NearMisses::get_Url()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.NearMisses::get_AbsoluteUrl()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.NearMisses::get_Headers()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.NearMisses::get_Cookies()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.NearMisses::get_Body()
-
+
-
+
-
+
@@ -56270,23 +56895,23 @@
WireMock.Org.Abstractions.Mapping[] WireMock.Org.Abstractions.PostAdminMappingsFindByMetadataResult::get_Mappings()
-
+
-
+
-
+
WireMock.Org.Abstractions.Meta WireMock.Org.Abstractions.PostAdminMappingsFindByMetadataResult::get_Meta()
-
+
-
+
-
+
@@ -56298,133 +56923,133 @@
System.String WireMock.Org.Abstractions.PostAdminMappingsResult::get_Id()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PostAdminMappingsResult::get_Uuid()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PostAdminMappingsResult::get_Name()
-
+
-
+
-
+
WireMock.Org.Abstractions.WireMockOrgRequest WireMock.Org.Abstractions.PostAdminMappingsResult::get_Request()
-
+
-
+
-
+
WireMock.Org.Abstractions.WireMockOrgResponse WireMock.Org.Abstractions.PostAdminMappingsResult::get_Response()
-
+
-
+
-
+
System.Boolean WireMock.Org.Abstractions.PostAdminMappingsResult::get_Persistent()
-
+
-
+
-
+
System.Int32 WireMock.Org.Abstractions.PostAdminMappingsResult::get_Priority()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PostAdminMappingsResult::get_ScenarioName()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PostAdminMappingsResult::get_RequiredScenarioState()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PostAdminMappingsResult::get_NewScenarioState()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.PostAdminMappingsResult::get_PostServeActions()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.PostAdminMappingsResult::get_Metadata()
-
+
-
+
-
+
@@ -56436,12 +57061,12 @@
WireMock.Org.Abstractions.NearMisses WireMock.Org.Abstractions.PostAdminNearMissesRequestPatternResult::get_NearMisses()
-
+
-
+
-
+
@@ -56453,12 +57078,12 @@
WireMock.Org.Abstractions.NearMisses WireMock.Org.Abstractions.PostAdminNearMissesRequestResult::get_NearMisses()
-
+
-
+
-
+
@@ -56470,23 +57095,23 @@
WireMock.Org.Abstractions.Mapping[] WireMock.Org.Abstractions.PostAdminRecordingsSnapshotResult::get_Mappings()
-
+
-
+
-
+
WireMock.Org.Abstractions.Meta WireMock.Org.Abstractions.PostAdminRecordingsSnapshotResult::get_Meta()
-
+
-
+
-
+
@@ -56498,23 +57123,23 @@
WireMock.Org.Abstractions.Mapping[] WireMock.Org.Abstractions.PostAdminRecordingsStopResult::get_Mappings()
-
+
-
+
-
+
WireMock.Org.Abstractions.Meta WireMock.Org.Abstractions.PostAdminRecordingsStopResult::get_Meta()
-
+
-
+
-
+
@@ -56526,12 +57151,12 @@
System.Int32 WireMock.Org.Abstractions.PostAdminRequestsCountResult::get_Count()
-
+
-
+
-
+
@@ -56543,133 +57168,133 @@
System.String WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_Id()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_Uuid()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_Name()
-
+
-
+
-
+
WireMock.Org.Abstractions.WireMockOrgRequest WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_Request()
-
+
-
+
-
+
WireMock.Org.Abstractions.WireMockOrgResponse WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_Response()
-
+
-
+
-
+
System.Boolean WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_Persistent()
-
+
-
+
-
+
System.Int32 WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_Priority()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_ScenarioName()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_RequiredScenarioState()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_NewScenarioState()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_PostServeActions()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.PutAdminMappingsByStubMappingIdResult::get_Metadata()
-
+
-
+
-
+
@@ -56681,111 +57306,111 @@
System.String WireMock.Org.Abstractions.WireMockOrgRequest::get_Method()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgRequest::get_Url()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgRequest::get_UrlPath()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgRequest::get_UrlPathPattern()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgRequest::get_UrlPattern()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.WireMockOrgRequest::get_QueryParameters()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.WireMockOrgRequest::get_Headers()
-
+
-
+
-
+
WireMock.Org.Abstractions.RequestBasicAuthCredentials WireMock.Org.Abstractions.WireMockOrgRequest::get_BasicAuthCredentials()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.WireMockOrgRequest::get_Cookies()
-
+
-
+
-
+
System.Object[] WireMock.Org.Abstractions.WireMockOrgRequest::get_BodyPatterns()
-
+
-
+
-
+
@@ -56797,23 +57422,23 @@
System.String WireMock.Org.Abstractions.RequestBasicAuthCredentials::get_Password()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.RequestBasicAuthCredentials::get_Username()
-
+
-
+
-
+
@@ -56825,166 +57450,166 @@
System.Int32 WireMock.Org.Abstractions.WireMockOrgResponse::get_Status()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgResponse::get_StatusMessage()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.WireMockOrgResponse::get_Headers()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.WireMockOrgResponse::get_AdditionalProxyRequestHeaders()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgResponse::get_Body()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgResponse::get_Base64Body()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.WireMockOrgResponse::get_JsonBody()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgResponse::get_BodyFileName()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgResponse::get_Fault()
-
+
-
+
-
+
System.Int32 WireMock.Org.Abstractions.WireMockOrgResponse::get_FixedDelayMilliseconds()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.WireMockOrgResponse::get_DelayDistribution()
-
+
-
+
-
+
System.Nullable`1<System.Boolean> WireMock.Org.Abstractions.WireMockOrgResponse::get_FromConfiguredStub()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.WireMockOrgResponse::get_ProxyBaseUrl()
-
+
-
+
-
+
System.Object WireMock.Org.Abstractions.WireMockOrgResponse::get_TransformerParameters()
-
+
-
+
-
+
System.String[] WireMock.Org.Abstractions.WireMockOrgResponse::get_Transformers()
-
+
-
+
-
+
@@ -56996,45 +57621,45 @@
System.String WireMock.Org.Abstractions.Scenarios::get_Id()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.Scenarios::get_Name()
-
+
-
+
-
+
System.String[] WireMock.Org.Abstractions.Scenarios::get_PossibleStates()
-
+
-
+
-
+
System.String WireMock.Org.Abstractions.Scenarios::get_State()
-
+
-
+
-
+