using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperWebSocket { /// /// The converter interface for converting binary data to text message /// public interface IBinaryDataConverter { /// /// Returns a that represents this instance. /// /// The data. /// The offset. /// The length. /// /// A that represents this instance. /// string ToString(byte[] data, int offset, int length); } }