mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-30 06:12:18 +02:00
WireMockList
This commit is contained in:
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using WireMock.Matchers;
|
||||
using WireMock.Matchers.Request;
|
||||
using WireMock.Util;
|
||||
|
||||
namespace WireMock.RequestBuilders
|
||||
{
|
||||
@@ -299,7 +300,7 @@ namespace WireMock.RequestBuilders
|
||||
/// <returns>
|
||||
/// The <see cref="IRequestMatcher"/>.
|
||||
/// </returns>
|
||||
public IRequestMatcher WithParam(Func<IDictionary<string, List<string>>, bool> func)
|
||||
public IRequestMatcher WithParam(Func<IDictionary<string, WireMockList<string>>, bool> func)
|
||||
{
|
||||
_requestMatchers.Add(new RequestMessageParamMatcher(func));
|
||||
return this;
|
||||
|
||||
Reference in New Issue
Block a user