mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-24 19:24:52 +01:00
28 lines
928 B
C#
28 lines
928 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using JetBrains.Annotations;
|
|
using WireMock.Util;
|
|
|
|
namespace WireMock.RequestBuilders
|
|
{
|
|
/// <summary>
|
|
/// The ParametersRequestBuilder interface.
|
|
/// </summary>
|
|
public interface IParamsRequestBuilder
|
|
{
|
|
/// <summary>
|
|
/// The with parameters.
|
|
/// </summary>
|
|
/// <param name="key">The key.</param>
|
|
/// <param name="values">The values.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithParam([NotNull] string key, [CanBeNull] params string[] values);
|
|
|
|
/// <summary>
|
|
/// The with parameters.
|
|
/// </summary>
|
|
/// <param name="funcs">The funcs.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithParam([NotNull] params Func<IDictionary<string, WireMockList<string>>, bool>[] funcs);
|
|
}
|
|
} |