Accord.CommunicationBufferEventArgs.CommunicationBufferEventArgs C# (CSharp) Method

CommunicationBufferEventArgs() public method

Initializes a new instance of the CommunicationBufferEventArgs class.
public CommunicationBufferEventArgs ( byte message ) : System
message byte Message being transfered during communication process.
return System
        public CommunicationBufferEventArgs(byte[] message)
        {
            this.message = message;
            this.index = 0;
            this.length = message.Length;
        }

Same methods

CommunicationBufferEventArgs::CommunicationBufferEventArgs ( byte buffer, int index, int length ) : System