blob: cafb8dab93f0dca1c439a0bf91b5b17d81e71400 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Common.RemoteAssistance
{
/// <summary>
/// Represents a remote assistance provider.
/// </summary>
public interface IRemoteAssistanceProvider
{
/// <summary>
/// Gets a value indicating whether the remote assistance service is enabled.
/// </summary>
bool IsEnabled { get; }
/// <summary>
/// Enables the remote assistance.
/// </summary>
/// <returns></returns>
Task EnableRemoteAssistance();
/// <summary>
/// Disables the remote assistance.
/// </summary>
/// <returns></returns>
Task DisableRemoteAssistance();
/// <summary>
/// Installs the remote assistance.
/// </summary>
/// <param name="machineSerialNumber">The machine serial number.</param>
/// <returns></returns>
Task InstallRemoteAssistance(String machineSerialNumber);
}
}
|