()
| 171 | /// <returns>A JSON-encoded string representing this <see cref="Response"/> object.</returns> |
| 172 | |
| 173 | [RequiresUnreferencedCode("Untyped JSON serialization is not trim- or AOT- safe.")] |
| 174 | [RequiresDynamicCode("Untyped JSON serialization is not trim- or AOT- safe.")] |
| 175 | public string ToJson() |
| 176 | { |
| 177 | return JsonSerializer.Serialize(this); |
| 178 | } |
| 179 | |
| 180 | /// <summary> |
| 181 | /// Throws if <see cref="Value"/> is <see langword="null"/>. |