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

Read() protected method

Reads the value of an attribute.
protected Read ( uint attributeId ) : object
attributeId uint The attribute identifier.
return object
        protected override object Read(uint attributeId)
        {
            switch (attributeId)
            {
                case Attributes.EventNotifier:   return m_eventNotifier;
                case Attributes.ContainsNoLoops: return m_containsNoLoops; 
            }

            return base.Read(attributeId);
        }