Update docs/src/release-notes-csharp.md

Co-authored-by: Yury Semikhatsky <yurys@chromium.org>
Signed-off-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Max Schmitt 2024-05-17 19:06:39 +02:00 committed by GitHub
parent 68d1f309a8
commit 8307fdd84f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,7 +48,8 @@ await Page.RemoveLocatorHandlerAsync(locator);
**Miscellaneous options** **Miscellaneous options**
- [`Multipart`](./api/class-apirequestcontext#api-request-context-fetch-option-multipart) option in `APIRequestContext.FetchAsync()` supports now repeating fields with the same name using [`method: FormData.append`]: - New method [`method: FormData.append`] allows to specify repeating fields with the same name in [`Multipart`](./api/class-apirequestcontext#api-request-context-fetch-option-multipart) option in `APIRequestContext.FetchAsync()`:
- ```
```csharp ```csharp
var formData = Context.APIRequest.CreateFormData(); var formData = Context.APIRequest.CreateFormData();
formData.Append("file", new FilePayload() formData.Append("file", new FilePayload()