CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
WebCallCapabilities.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="HttpProxy.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Exposes platform-specific web call capabilities</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Runtime.InteropServices;
10
12{
13
17 internal static class WebCallCapabilities
18 {
19
25 public static bool AreSyncWebClientMethodsSupported()
26 {
27 bool isWebAssembly;
28
29#if NETFRAMEWORK
30 isWebAssembly = false;
31#elif NETSTANDARD
32 // Use textual OSDescription to identify WebAssembly on .NET Standard
33 string osDescription = RuntimeInformation.OSDescription;
34 isWebAssembly = osDescription.Equals("web", StringComparison.InvariantCultureIgnoreCase);
35#else
36 isWebAssembly = RuntimeInformation.OSArchitecture == Architecture.Wasm;
37#endif
38
39 return !isWebAssembly;
40 }
41
42 }
43}