generated from Integry/Template_NetMauiBlazorHybrid
11 lines
258 B
C#
11 lines
258 B
C#
using ConSegna.Shared.Core.Interfaces;
|
|
|
|
namespace ConSegna.Maui.Core.Services;
|
|
|
|
public class NetworkService : INetworkService
|
|
{
|
|
public bool IsNetworkAvailable()
|
|
{
|
|
return Connectivity.Current.NetworkAccess == NetworkAccess.Internet;
|
|
}
|
|
} |