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

WriteDateTimeArray() public method

Writes a UTC date/time array to the stream.
public WriteDateTimeArray ( string fieldName, IList values ) : void
fieldName string
values IList
return void
        public void WriteDateTimeArray(string fieldName, IList<DateTime> 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++)
                {
                    WriteDateTime(null, values[ii]);
                }
            }

            PopArray();
        }