9using System.Runtime.InteropServices;
17 internal static class WebCallCapabilities
25 public static bool AreSyncWebClientMethodsSupported()
30 isWebAssembly =
false;
33 string osDescription = RuntimeInformation.OSDescription;
34 isWebAssembly = osDescription.Equals(
"web", StringComparison.InvariantCultureIgnoreCase);
36 isWebAssembly = RuntimeInformation.OSArchitecture == Architecture.Wasm;
39 return !isWebAssembly;