mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-10 19:27:09 +02:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
88 lines
4.2 KiB
C#
88 lines
4.2 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using WireMock.Matchers;
|
|
|
|
namespace WireMock.RequestBuilders;
|
|
|
|
/// <summary>
|
|
/// The HeadersRequestBuilder interface.
|
|
/// </summary>
|
|
public interface IHeadersRequestBuilder : ICookiesRequestBuilder
|
|
{
|
|
/// <summary>
|
|
/// WithHeader: matching based on name, pattern and matchBehaviour.
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="pattern">The pattern.</param>
|
|
/// <param name="matchBehaviour">The match behaviour.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHeader(string name, string pattern, MatchBehaviour matchBehaviour);
|
|
|
|
/// <summary>
|
|
/// WithHeader: matching based on name, pattern, ignoreCase and matchBehaviour.
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="pattern">The pattern.</param>
|
|
/// <param name="ignoreCase">Ignore the case from the pattern.</param>
|
|
/// <param name="matchBehaviour">The match behaviour.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHeader(string name, string pattern, bool ignoreCase = true, MatchBehaviour matchBehaviour = MatchBehaviour.AcceptOnMatch);
|
|
|
|
/// <summary>
|
|
/// WithHeader: matching based on name, patterns and matchBehaviour.
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="patterns">The patterns.</param>
|
|
/// <param name="matchBehaviour">The match behaviour.</param>
|
|
/// <param name="matchOperator">The <see cref="MatchOperator"/> to use.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHeader(string name, string[] patterns, MatchBehaviour matchBehaviour, MatchOperator matchOperator = MatchOperator.Or);
|
|
|
|
/// <summary>
|
|
/// WithHeader: matching based on name, patterns, ignoreCase and matchBehaviour.
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="patterns">The patterns.</param>
|
|
/// <param name="ignoreCase">Ignore the case from the pattern.</param>
|
|
/// <param name="matchBehaviour">The match behaviour.</param>
|
|
/// <param name="matchOperator">The <see cref="MatchOperator"/> to use.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHeader(string name, string[] patterns, bool ignoreCase = true, MatchBehaviour matchBehaviour = MatchBehaviour.AcceptOnMatch, MatchOperator matchOperator = MatchOperator.Or);
|
|
|
|
/// <summary>
|
|
/// WithHeader: matching based on name and IStringMatcher[].
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="matchers">The matchers.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHeader(string name, params IStringMatcher[] matchers);
|
|
|
|
/// <summary>
|
|
/// WithHeader: matching based on name, ignoreCase and IStringMatcher[].
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="ignoreCase">Ignore the case from the header-keys.</param>
|
|
/// <param name="matchers">The matchers.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHeader(string name, bool ignoreCase, params IStringMatcher[] matchers);
|
|
|
|
/// <summary>
|
|
/// WithHeader: matching based on name, ignoreCase, matchBehaviour and IStringMatcher[].
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="ignoreCase">Ignore the case from the header-keys.</param>
|
|
/// <param name="matchBehaviour">The match behaviour.</param>
|
|
/// <param name="matchOperator">The <see cref="MatchOperator"/> to use.</param>
|
|
/// <param name="matchers">The matchers.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHeader(string name, bool ignoreCase, MatchBehaviour matchBehaviour, MatchOperator matchOperator = MatchOperator.Or, params IStringMatcher[] matchers);
|
|
|
|
/// <summary>
|
|
/// WithHeader: matching based on functions.
|
|
/// </summary>
|
|
/// <param name="funcs">The headers funcs.</param>
|
|
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
|
IRequestBuilder WithHeader(params Func<IDictionary<string, string[]>, bool>[] funcs);
|
|
} |