Opc.Ua.Client.NodeCache.FindSuperType C# (CSharp) Method

FindSuperType() public method

Returns the immediate supertype for the type.
public FindSuperType ( ExpandedNodeId typeId ) : NodeId
typeId ExpandedNodeId The extended type identifier.
return NodeId
        public NodeId FindSuperType(ExpandedNodeId typeId)
        {
            INode type = Find(typeId);

            if (type == null)
            {
                return null;
            }

            return m_typeTree.FindSuperType(typeId);
        }

Same methods

NodeCache::FindSuperType ( NodeId typeId ) : NodeId