Opc.Ua.Bindings.ArraySegmentStream.GetAbsoluteLength C# (CSharp) Method

GetAbsoluteLength() private method

Returns the total length in all buffers.
private GetAbsoluteLength ( ) : int
return int
        private int GetAbsoluteLength()
        {
            int length = 0;

            for (int ii = 0; ii < m_buffers.Count; ii++)
            {
                length += GetBufferCount(ii);
            }

            return length;
        }