blob: 3b7d489e698c74d4f18afbb01a874ce9aa84d233 (
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
39
40
|
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>
/// <param name="group">The remote assistance group.</param>
/// <param name="environment">The machine working environment.</param>
/// <returns></returns>
Task InstallRemoteAssistance(String machineSerialNumber, String group, String environment);
}
}
|