Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#if NET
using System.Buffers;
using System.Buffers.Text;
using System.ComponentModel;
#endif
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
Expand Down Expand Up @@ -142,6 +143,9 @@ public DataContent(ReadOnlyMemory<byte> data, string mediaType)
/// or from a <see cref="System.Uri"/>.
/// </remarks>
[StringSyntax(StringSyntaxAttribute.Uri)]
#if NET
[Description("A data URI representing the content.")]
#endif
public string Uri
{
get
Expand Down
Loading