blob: e877fd255e956b7cbe20ecf976fcaef8f1a9915c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Common.Connectivity
{
/// <summary>
/// Represents an Internet connection validation provider with automatic checking by interval.
/// </summary>
public interface IConnectivityProvider : BL.Connectivity.IConnectivityProvider
{
/// <summary>
/// Gets or sets a value indicating whether to enable the automatic checking.
/// </summary>
bool EnableAutoCheck { get; set; }
/// <summary>
/// Gets or sets the automatic checking interval.
/// </summary>
TimeSpan AutoCheckInterval { get; set; }
}
}
|