Opc.Ua.Client.NodeCache.FindSuperType C# (CSharp) 메소드

FindSuperType() 공개 메소드

Returns the immediate supertype for the type.
public FindSuperType ( ExpandedNodeId typeId ) : NodeId
typeId ExpandedNodeId The extended type identifier.
리턴 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