diff --git a/Request-Matcher-FormUrlEncodedMatcher.md b/Request-Matcher-FormUrlEncodedMatcher.md index 66c1179..34e1c8c 100644 --- a/Request-Matcher-FormUrlEncodedMatcher.md +++ b/Request-Matcher-FormUrlEncodedMatcher.md @@ -1,7 +1,7 @@ ## FormUrlEncodedMatcher Can be used to check if a Form Url Encoded body contains the key-value pairs. -#### C# option +### C# option ```csharp var server = WireMockServer.Start(); server.Given( @@ -16,7 +16,7 @@ server.Given( ); ``` -#### JSON Mapping option +### JSON Mapping option ``` json { "Request": { @@ -59,3 +59,7 @@ server.Given( } } ``` + +### :memo: Notes +- You can also use `IgnoreCase` +- And you can also use wildcards like: `name=John*` \ No newline at end of file