-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Open
Labels
api-ready-for-reviewAPI is ready for review, it is NOT ready for implementationAPI is ready for review, it is NOT ready for implementationarea-System.Net
Milestone
Description
Is your feature request related to a problem? Please describe.
We have constants for http, https, etc., but not for data: URIs.
Describe the solution you'd like
A new constant in the System.Uri class:
namespace System
{
public partial class Uri
{
public static readonly string UriSchemeHttp;
public static readonly string UriSchemeHttps;
// +14 other schemes following the same pattern
+ public static readonly string UriSchemeData = "data";
}
}Additional context
n/a
Metadata
Metadata
Assignees
Labels
api-ready-for-reviewAPI is ready for review, it is NOT ready for implementationAPI is ready for review, it is NOT ready for implementationarea-System.Net