namespace EmbedIO.WebSockets
{
///
/// Interface for WebSocket Receive Result object.
///
public interface IWebSocketReceiveResult
{
///
/// Gets the count.
///
///
/// The count.
///
int Count { get; }
///
/// Gets a value indicating whether [end of message].
///
///
/// true if [end of message]; otherwise, false.
///
bool EndOfMessage { get; }
///
/// Gets the type of the message.
///
///
/// The type of the message.
///
int MessageType { get; }
}
}