System.IO.BACnet.BacnetClient.ProcessSegmentAck C# (CSharp) Method

ProcessSegmentAck() protected method

protected ProcessSegmentAck ( BacnetAddress adr, BacnetPduTypes type, byte original_invoke_id, byte sequence_number, byte actual_window_size, byte buffer, int offset, int length ) : void
adr BacnetAddress
type BacnetPduTypes
original_invoke_id byte
sequence_number byte
actual_window_size byte
buffer byte
offset int
length int
return void
        protected void ProcessSegmentAck(BacnetAddress adr, BacnetPduTypes type, byte original_invoke_id, byte sequence_number, byte actual_window_size, byte[] buffer, int offset, int length)
        {
            try
            {
                Trace.WriteLine("SegmentAck", null);
                if (OnSegmentAck != null) OnSegmentAck(this, adr, type, original_invoke_id, sequence_number, actual_window_size, buffer, offset, length);
            }
            catch (Exception ex)
            {
                Trace.TraceError("Error in ProcessSegmentAck: " + ex.Message);
            }
        }
BacnetClient