blob: 288b5c652da8fe0b90e160d0b79eb3a0d0dd3e47 (
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
|
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="groupName">Name of the group.</param>
/// <param name="computerName">Name of the computer.</param>
/// <returns></returns>
Task InstallRemoteAssistance(String groupName, String computerName);
}
}
|