using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Transport.Adapters
{
///
/// Represents a mode.
///
public enum SignalRTransportAdapterMode
{
///
/// The adapter should initiate a session with a remote adapter.
///
CreateSession,
///
/// The adapter should join an existing session.
///
JoinSession
}
}