ef583813eb
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
19 lines
272 B
C#
19 lines
272 B
C#
namespace System.Net.Http
|
|
{
|
|
partial class HttpRequestMessage
|
|
{
|
|
static bool IsAllowedAbsoluteUri (Uri uri)
|
|
{
|
|
if (!uri.IsAbsoluteUri)
|
|
return true;
|
|
|
|
#if WASM
|
|
if (uri.Scheme == "blob")
|
|
return true;
|
|
#endif
|
|
|
|
return HttpUtilities.IsHttpUri (uri);
|
|
}
|
|
}
|
|
}
|