using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Hazel
{
///
/// Represents the state a is currently in.
///
public enum ConnectionState
{
///
/// The Connection has either not been established yet or has been disconnected.
///
NotConnected,
///
/// The Connection is currently connecting to an endpoint.
///
Connecting,
///
/// The Connection is connected and data can be transfered.
///
Connected,
}
}