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
There is a strong need for URI support:
We should add the following APIs to the reader, writer, and JsonElement:
public ref partial struct Utf8JsonReader { public System.Uri GetUri() { throw null; } public bool TryGetUri(out System.Uri value) { throw null; } } public sealed partial class Utf8JsonWriter : System.IAsyncDisposable, System.IDisposable { public void WriteString(System.ReadOnlySpan<byte> utf8PropertyName, System.Uri value) { } public void WriteString(System.ReadOnlySpan<char> propertyName, System.Uri value) { } public void WriteString(string propertyName, System.Uri value) { } public void WriteString(System.Text.Json.JsonEncodedText propertyName, System.Uri value) { } public void WriteStringValue(System.Uri value) { } } public readonly partial struct JsonElement { public System.Uri GetUri() { throw null; } public bool TryGetUri(out System.Uri value) { throw null; } }
cc @ahsonkhan, @steveharter, @JeremyKuhne, @bartonjs
The text was updated successfully, but these errors were encountered:
We reviewed this today:
Uri
Sorry, something went wrong.
ahsonkhan
No branches or pull requests
There is a strong need for URI support:
We should add the following APIs to the reader, writer, and JsonElement:
cc @ahsonkhan, @steveharter, @JeremyKuhne, @bartonjs
The text was updated successfully, but these errors were encountered: