Build 1.01.318.0

[This is preliminary documentation and is subject to change.]

A collection of Boolean values.

Namespace: Opc.Ua
Assembly: Opc.Ua.Core (in Opc.Ua.Core.dll) Version: 1.1.318.1 (1.01.318.1)

Syntax

C#
public class BooleanCollection : List<bool>, 
	ICloneable
Visual Basic
Public Class BooleanCollection _
	Inherits List(Of Boolean) _
	Implements ICloneable
Visual C++
public ref class BooleanCollection : public List<bool>, 
	ICloneable

Remarks

Provides a strongly-typed collection of Boolean values.

Examples

CopyC#
BooleanCollection bools = new BooleanCollection();
bools.AddRange( new bool[]{true, false, true, false} );
Copy 
Dim bools As New BooleanCollection()
bools.AddRange( New Boolean(){ True, False, True, False } )

Inheritance Hierarchy

System..::..Object
  System.Collections.Generic..::..List<(Of <(<'Boolean>)>)>
    Opc.Ua..::..BooleanCollection

See Also