From d3f589255f5b21b240d8dd42b08110697ed94c11 Mon Sep 17 00:00:00 2001 From: Rawr Date: Fri, 26 Mar 2021 20:11:33 -0500 Subject: [PATCH 1/2] Update Remoting.md Added a link to FSharp.SystemTextJson --- src/Website/docs/Remoting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Website/docs/Remoting.md b/src/Website/docs/Remoting.md index bff5306..d144eda 100644 --- a/src/Website/docs/Remoting.md +++ b/src/Website/docs/Remoting.md @@ -25,7 +25,7 @@ type MyService = member this.BasePath = "/myService" ``` -Remote calls are `POST` requests to the function's URL. Arguments and return values are automatically serialized to JSON. +Remote calls are `POST` requests to the function's URL. Arguments and return values are automatically serialized to JSON via `System.Text.Json`. Since it has trouble with F# types like `list`, consider configuring it with [FSharp.SystemTextJson](https://github.com/Tarmil/FSharp.SystemTextJson/blob/master/docs/Using.md#using-with-bolero) ### Calling on the client side From 3b254a8557d5438150b97587ce761e43907588a4 Mon Sep 17 00:00:00 2001 From: Rawr Date: Fri, 26 Mar 2021 20:13:00 -0500 Subject: [PATCH 2/2] Update Remoting.md --- src/Website/docs/Remoting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Website/docs/Remoting.md b/src/Website/docs/Remoting.md index d144eda..e79a9d1 100644 --- a/src/Website/docs/Remoting.md +++ b/src/Website/docs/Remoting.md @@ -25,7 +25,7 @@ type MyService = member this.BasePath = "/myService" ``` -Remote calls are `POST` requests to the function's URL. Arguments and return values are automatically serialized to JSON via `System.Text.Json`. Since it has trouble with F# types like `list`, consider configuring it with [FSharp.SystemTextJson](https://github.com/Tarmil/FSharp.SystemTextJson/blob/master/docs/Using.md#using-with-bolero) +Remote calls are `POST` requests to the function's URL. Arguments and return values are automatically serialized to JSON via `System.Text.Json`. Since it has trouble with F# types like `list`, consider configuring it with [FSharp.SystemTextJson](https://github.com/Tarmil/FSharp.SystemTextJson/blob/master/docs/Using.md#using-with-bolero). ### Calling on the client side