using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Integration.ExternalBridge;
///
/// Contains extension methods.
///
public static class IExternalBridgeClientExtensions
{
///
/// Casts the external bridge client to the specified type T.
///
///
/// The client.
///
public static T As(this IExternalBridgeClient client) where T : IExternalBridgeClient
{
return (T)client;
}
}