We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider the following snipped
using var subject = new HttpResponseMessage(HttpStatusCode.BadRequest) { Content = new StringContent(/*lang=json,strict*/ """ { "type":"https://tools.ietf.org/html/rfc7231#section-6.5.1", "title":"One or more validation errors occurred.", "status":400, "traceId":"00-deb7480af23a884e942f7b85cac6bd35-c1abe72874d40c4a-00", "errors":{ "Status":[ "Cannot add at Revoked Status." ] } } """, Encoding.UTF8, "application/json") };
My use case would be to select the json in this string literal and then to prettify/format it.
Is this something that can be implemented within this extension?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider the following snipped
My use case would be to select the json in this string literal and then to prettify/format it.
Is this something that can be implemented within this extension?
The text was updated successfully, but these errors were encountered: