You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Write the specified value as JSON to the response body using the default <see cref="ObjectSerializer"/> configured for this worker.
83
+
/// Asynchronously writes the specified value as JSON to the response body using the default <see cref="ObjectSerializer"/> configured for this worker.
72
84
/// The response content-type will be set to <code>application/json; charset=utf-8</code> and the status code set to 200.
73
85
/// </summary>
74
86
/// <typeparam name="T">The type of object to write.</typeparam>
@@ -82,7 +94,7 @@ public static ValueTask WriteAsJsonAsync<T>(this HttpResponseData response, T in
82
94
}
83
95
84
96
/// <summary>
85
-
/// Write the specified value as JSON to the response body using the default <see cref="ObjectSerializer"/> configured for this worker.
97
+
/// Asynchronously writes the specified value as JSON to the response body using the default <see cref="ObjectSerializer"/> configured for this worker.
86
98
/// The response content-type will be set to <code>application/json; charset=utf-8</code> and the status code set to the provided <paramref name="statusCode"/>.
87
99
/// </summary>
88
100
/// <typeparam name="T">The type of object to write.</typeparam>
@@ -98,7 +110,7 @@ public static ValueTask WriteAsJsonAsync<T>(this HttpResponseData response, T in
98
110
}
99
111
100
112
/// <summary>
101
-
/// Write the specified value as JSON to the response body using the default <see cref="ObjectSerializer"/> configured for this worker.
113
+
/// Asynchronously writes the specified value as JSON to the response body using the default <see cref="ObjectSerializer"/> configured for this worker.
102
114
/// The response content-type will be set to the provided <paramref name="contentType"/> and the status code set to 200.
103
115
/// </summary>
104
116
/// <typeparam name="T">The type of object to write.</typeparam>
@@ -120,7 +132,7 @@ public static ValueTask WriteAsJsonAsync<T>(this HttpResponseData response, T in
120
132
}
121
133
122
134
/// <summary>
123
-
/// Write the specified value as JSON to the response body using the default <see cref="ObjectSerializer"/> configured for this worker.
135
+
/// Asynchronously writes the specified value as JSON to the response body using the default <see cref="ObjectSerializer"/> configured for this worker.
124
136
/// The response content-type will be set to the provided <paramref name="contentType"/> and the status code set to the provided <paramref name="statusCode"/>.
125
137
/// </summary>
126
138
/// <typeparam name="T">The type of object to write.</typeparam>
@@ -145,7 +157,7 @@ public static ValueTask WriteAsJsonAsync<T>(this HttpResponseData response, T in
145
157
146
158
147
159
/// <summary>
148
-
/// Write the specified value as JSON to the response body using the provided <see cref="ObjectSerializer"/>.
160
+
/// Asynchronously writes the specified value as JSON to the response body using the provided <see cref="ObjectSerializer"/>.
149
161
/// The response content-type will be set to <code>application/json; charset=utf-8</code> and the status code set to 200.
150
162
/// </summary>
151
163
/// <typeparam name="T">The type of object to write.</typeparam>
@@ -160,7 +172,7 @@ public static ValueTask WriteAsJsonAsync<T>(this HttpResponseData response, T in
160
172
}
161
173
162
174
/// <summary>
163
-
/// Write the specified value as JSON to the response body using the provided <see cref="ObjectSerializer"/>.
175
+
/// Asynchronously writes the specified value as JSON to the response body using the provided <see cref="ObjectSerializer"/>.
164
176
/// The response content-type will be set to <code>application/json; charset=utf-8</code> and the status code set to the provided <paramref name="statusCode"/>.
165
177
/// </summary>
166
178
/// <typeparam name="T">The type of object to write.</typeparam>
@@ -177,7 +189,7 @@ public static ValueTask WriteAsJsonAsync<T>(this HttpResponseData response, T in
177
189
}
178
190
179
191
/// <summary>
180
-
/// Write the specified value as JSON to the response body using the provided <see cref="ObjectSerializer"/>.
192
+
/// Asynchronously writes the specified value as JSON to the response body using the provided <see cref="ObjectSerializer"/>.
181
193
/// The response content-type will be set to the provided <paramref name="contentType"/> and the status code set to 200.
182
194
/// </summary>
183
195
/// <typeparam name="T">The type of object to write.</typeparam>
@@ -195,7 +207,7 @@ public static ValueTask WriteAsJsonAsync<T>(this HttpResponseData response, T in
195
207
}
196
208
197
209
/// <summary>
198
-
/// Write the specified value as JSON to the response body using the provided <see cref="ObjectSerializer"/>.
210
+
/// Asynchronously writes the specified value as JSON to the response body using the provided <see cref="ObjectSerializer"/>.
199
211
/// The response content-type will be set to the provided <paramref name="contentType"/> and the status code set to the provided <paramref name="statusCode"/>.
200
212
/// </summary>
201
213
/// <typeparam name="T">The type of object to write.</typeparam>
0 commit comments