mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-21 08:59:50 +01: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:
|
||||
```csharp
|
||||
var customerReadRequests = server.SearchLogsFor(
|
||||
var customerReadRequests = server.FindLogEntries(
|
||||
Request.Create().WithPath("/api/customer*").UsingGet()
|
||||
);
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user