mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-23 17:41:01 +01:00
* ProtoBuf
* .
* x
* ---
* x
* fx
* ...
* sc
* ...
* .
* groen
* x
* fix tests
* ok!?
* fix tests
* fix tests
* !
* x
* 6
* .
* x
* ivaluematcher
* transformer
* .
* sc
* .
* mapping
* x
* tra
* com
* ...
* .
* .
* .
* AddProtoDefinition
* .
* set
* grpahj
* .
* .
* IdOrText
* ...
* async
* async2
* .
* t
* nuget
* <PackageReference Include="ProtoBufJsonConverter" Version="0.2.0-preview-04" />
* http version
* tests
* .WithHttpVersion("2")
* <PackageReference Include="ProtoBufJsonConverter" Version="0.2.0" />
* HttpVersionParser
101 lines
3.0 KiB
C#
101 lines
3.0 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Stef.Validation;
|
|
using WireMock.Types;
|
|
|
|
namespace WireMock.ResponseBuilders;
|
|
|
|
public partial class Response
|
|
{
|
|
/// <inheritdoc />
|
|
public IResponseBuilder WithHeader(string name, params string[] values)
|
|
{
|
|
Guard.NotNull(name);
|
|
|
|
ResponseMessage.AddHeader(name, values);
|
|
return this;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IResponseBuilder WithHeaders(IDictionary<string, string> headers)
|
|
{
|
|
Guard.NotNull(headers);
|
|
|
|
ResponseMessage.Headers = headers.ToDictionary(header => header.Key, header => new WireMockList<string>(header.Value));
|
|
return this;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IResponseBuilder WithHeaders(IDictionary<string, string[]> headers)
|
|
{
|
|
Guard.NotNull(headers);
|
|
|
|
ResponseMessage.Headers = headers.ToDictionary(header => header.Key, header => new WireMockList<string>(header.Value));
|
|
return this;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IResponseBuilder WithHeaders(IDictionary<string, WireMockList<string>> headers)
|
|
{
|
|
Guard.NotNull(headers);
|
|
|
|
ResponseMessage.Headers = headers;
|
|
return this;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IResponseBuilder WithTrailingHeader(string name, params string[] values)
|
|
{
|
|
#if !TRAILINGHEADERS
|
|
throw new System.NotSupportedException("The WithBodyAsProtoBuf method can not be used for .NETStandard1.3 or .NET Framework 4.6.1 or lower.");
|
|
#else
|
|
|
|
Guard.NotNull(name);
|
|
|
|
ResponseMessage.AddTrailingHeader(name, values);
|
|
return this;
|
|
#endif
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IResponseBuilder WithTrailingHeaders(IDictionary<string, string> headers)
|
|
{
|
|
#if !TRAILINGHEADERS
|
|
throw new System.NotSupportedException("The WithBodyAsProtoBuf method can not be used for .NETStandard1.3 or .NET Framework 4.6.1 or lower.");
|
|
#else
|
|
|
|
Guard.NotNull(headers);
|
|
|
|
ResponseMessage.TrailingHeaders = headers.ToDictionary(header => header.Key, header => new WireMockList<string>(header.Value));
|
|
return this;
|
|
#endif
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IResponseBuilder WithTrailingHeaders(IDictionary<string, string[]> headers)
|
|
{
|
|
#if !TRAILINGHEADERS
|
|
throw new System.NotSupportedException("The WithBodyAsProtoBuf method can not be used for .NETStandard1.3 or .NET Framework 4.6.1 or lower.");
|
|
#else
|
|
|
|
Guard.NotNull(headers);
|
|
|
|
ResponseMessage.TrailingHeaders = headers.ToDictionary(header => header.Key, header => new WireMockList<string>(header.Value));
|
|
return this;
|
|
#endif
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IResponseBuilder WithTrailingHeaders(IDictionary<string, WireMockList<string>> headers)
|
|
{
|
|
#if !TRAILINGHEADERS
|
|
throw new System.NotSupportedException("The WithBodyAsProtoBuf method can not be used for .NETStandard1.3 or .NET Framework 4.6.1 or lower.");
|
|
#else
|
|
|
|
Guard.NotNull(headers);
|
|
|
|
ResponseMessage.TrailingHeaders = headers;
|
|
return this;
|
|
#endif
|
|
}
|
|
} |