Opc.Ua.ObjectTypeNode.Read C# (CSharp) 메소드

Read() 보호된 메소드

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

            return base.Read(attributeId);
        }