using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.BL.Connectivity
{
public enum ConnectivityVerificationMethod
{
///
/// Send a request to google.
///
Default,
///
/// Use the CodePack API to detect a network with an active Internet connection.
///
Windows,
///
/// Send a CheckInternetRequest to the gateway service. (not implemented)
///
Gateway,
///
/// The connectivity provider will return positive response without checking anything.
///
AlwaysOnline,
}
}