Accord.CommunicationBufferEventArgs.CommunicationBufferEventArgs C# (CSharp) Method

CommunicationBufferEventArgs() public method

Initializes a new instance of the CommunicationBufferEventArgs class.
public CommunicationBufferEventArgs ( byte buffer, int index, int length ) : System
buffer byte Buffer containing the message being transferred during communication process.
index int Starting index of the message within the buffer.
length int Length of the message within the buffer.
return System
        public CommunicationBufferEventArgs(byte[] buffer, int index, int length)
        {
            this.message = buffer;
            this.index = index;
            this.length = length;
        }

Same methods

CommunicationBufferEventArgs::CommunicationBufferEventArgs ( byte message ) : System