Opc.Ua.JsonEncoder.WriteDataValueArray C# (CSharp) Method

WriteDataValueArray() public method

Writes an DataValue array to the stream.
public WriteDataValueArray ( string fieldName, IList values ) : void
fieldName string
values IList
return void
        public void WriteDataValueArray(string fieldName, IList<DataValue> values)
        {
            PushArray(fieldName);

            // check the length.
            if (m_context.MaxArrayLength > 0 && m_context.MaxArrayLength < values.Count)
            {
                throw new ServiceResultException(StatusCodes.BadEncodingLimitsExceeded);
            }

            if (values != null)
            {
                for (int ii = 0; ii < values.Count; ii++)
                {
                    WriteDataValue(null, values[ii]);
                }
            }

            PopArray();
        }