using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Integration.Services { /// /// Represents a secure external bridge client which requires authentication. /// /// public interface IExternalBridgeSecureClient : IExternalBridgeClient { /// /// Authenticates with the service using the specified password. /// /// The password. /// Task Authenticate(String password); } }