Opc.Ua.DataTypeNode.Read C# (CSharp) Method

Read() protected method

Reads the value of an attribute.
protected Read ( uint attributeId ) : object
attributeId uint The attribute id.
return object
        protected override object Read(uint attributeId)
        {
            switch (attributeId)
            {
                case Attributes.IsAbstract: return m_isAbstract;
            }

            return base.Read(attributeId);
        }