/// <summary> /// Reads a boolean array from the stream. /// </summary> public BooleanCollection ReadBooleanArray(string fieldName) { int length = ReadArrayLength(); if (length == -1) { return null; } BooleanCollection values = new BooleanCollection(length); for (int ii = 0; ii < length; ii++) { values.Add(ReadBoolean(null)); } return values; }
/// <summary> /// Reads a boolean array from the stream. /// </summary> public BooleanCollection ReadBooleanArray(string fieldName) { bool isNil = false; BooleanCollection values = new BooleanCollection(); if (BeginField(fieldName, true, out isNil)) { PushNamespace(Namespaces.OpcUaXsd); while (MoveToElement("Boolean")) { values.Add(ReadBoolean("Boolean")); } // check the length. if (m_context.MaxArrayLength > 0 && m_context.MaxArrayLength < values.Count) { throw new ServiceResultException(StatusCodes.BadEncodingLimitsExceeded); } PopNamespace(); EndField(fieldName); return values; } if (isNil) { return null; } return values; }
/// <summary> /// Reads a boolean array from the stream. /// </summary> public BooleanCollection ReadBooleanArray(string fieldName) { var values = new BooleanCollection(); List<object> token = null; if (!ReadArrayField(fieldName, out token)) { return values; } for (int ii = 0; ii < token.Count; ii++) { try { m_stack.Push(token[ii]); values.Add(ReadBoolean(null)); } finally { m_stack.Pop(); } } return values; }