Accord.CommunicationBufferEventArgs.GetMessage C# (CSharp) Method

GetMessage() public method

Get the transfered message.
public GetMessage ( ) : byte[]
return byte[]
        public byte[] GetMessage()
        {
            byte[] ret = new byte[length];
            Array.Copy(message, index, ret, 0, length);
            return ret;
        }