using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.Connectivity { /// /// Represents an Internet connection validation provider with automatic checking by interval. /// public interface IConnectivityProvider : BL.Connectivity.IConnectivityProvider { /// /// Gets or sets a value indicating whether to enable the automatic checking. /// bool EnableAutoCheck { get; set; } /// /// Gets or sets the automatic checking interval. /// TimeSpan AutoCheckInterval { get; set; } } }