diff --git a/src/Http/Http.Extensions/src/HttpResponseJsonExtensions.cs b/src/Http/Http.Extensions/src/HttpResponseJsonExtensions.cs index b35c4f2b3214..aa0d67b37160 100644 --- a/src/Http/Http.Extensions/src/HttpResponseJsonExtensions.cs +++ b/src/Http/Http.Extensions/src/HttpResponseJsonExtensions.cs @@ -18,7 +18,7 @@ public static partial class HttpResponseJsonExtensions { /// /// Write the specified value as JSON to the response body. The response content-type will be set to - /// application/json; charset=utf-8 and the status code set to 200. + /// application/json; charset=utf-8. /// /// The type of object to write. /// The response to write JSON to. @@ -36,7 +36,7 @@ public static Task WriteAsJsonAsync( /// /// Write the specified value as JSON to the response body. The response content-type will be set to - /// application/json; charset=utf-8 and the status code set to 200. + /// application/json; charset=utf-8. /// /// The type of object to write. /// The response to write JSON to. @@ -56,7 +56,7 @@ public static Task WriteAsJsonAsync( /// /// Write the specified value as JSON to the response body. The response content-type will be set to - /// the specified content-type and the status code set to 200. + /// the specified content-type. /// /// The type of object to write. /// The response to write JSON to. @@ -86,7 +86,7 @@ public static Task WriteAsJsonAsync( /// /// Write the specified value as JSON to the response body. The response content-type will be set to - /// application/json; charset=utf-8 and the status code set to 200. + /// application/json; charset=utf-8. /// /// The response to write JSON to. /// The value to write as JSON. @@ -105,7 +105,7 @@ public static Task WriteAsJsonAsync( /// /// Write the specified value as JSON to the response body. The response content-type will be set to - /// application/json; charset=utf-8 and the status code set to 200. + /// application/json; charset=utf-8. /// /// The response to write JSON to. /// The value to write as JSON. @@ -126,7 +126,7 @@ public static Task WriteAsJsonAsync( /// /// Write the specified value as JSON to the response body. The response content-type will be set to - /// the specified content-type and the status code set to 200. + /// the specified content-type. /// /// The response to write JSON to. /// The value to write as JSON.