mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-25 17:58:33 +02:00
Added some more Checks
This commit is contained in:
@@ -35,13 +35,13 @@ namespace WireMock.RequestBuilders
|
||||
/// </summary>
|
||||
/// <param name="body">The body string function.</param>
|
||||
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
||||
IRequestBuilder WithBody(Func<string, bool> body);
|
||||
IRequestBuilder WithBody([NotNull] Func<string, bool> body);
|
||||
|
||||
/// <summary>
|
||||
/// The with body byte[] func.
|
||||
/// </summary>
|
||||
/// <param name="body">The body byte[] function.</param>
|
||||
/// <returns>The <see cref="IRequestBuilder"/>.</returns>
|
||||
IRequestBuilder WithBody(Func<byte[], bool> body);
|
||||
IRequestBuilder WithBody([NotNull] Func<byte[], bool> body);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user