blob: 56eb1976df029921e26eaf80114033fc8b879692 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Services
{
/// <summary>
/// Represents a secure external bridge client which requires authentication.
/// </summary>
/// <seealso cref="Tango.Integration.Services.IExternalBridgeClient" />
public interface IExternalBridgeSecureClient : IExternalBridgeClient
{
/// <summary>
/// Authenticates with the service using the specified password.
/// </summary>
/// <param name="password">The password.</param>
/// <returns></returns>
Task<bool> Authenticate(String password);
}
}
|