mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-26 18:59:02 +02:00
Updated Stubbing (markdown)
@@ -70,7 +70,7 @@ var allRequests = server.RequestLogs;
|
|||||||
```
|
```
|
||||||
If you need to be more specific on the requests that have been send to the server, you can use the very same fluent API that allows to define routes:
|
If you need to be more specific on the requests that have been send to the server, you can use the very same fluent API that allows to define routes:
|
||||||
```csharp
|
```csharp
|
||||||
var customerReadRequests = server.SearchLogsFor(
|
var customerReadRequests = server.FindLogEntries(
|
||||||
Request.Create().WithPath("/api/customer*").UsingGet()
|
Request.Create().WithPath("/api/customer*").UsingGet()
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user