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

BuildBrowsePath() public method

Builds the relative path from a type to a node.
public BuildBrowsePath ( ILocalNode node, IList browsePath ) : NodeId
node ILocalNode
browsePath IList
return NodeId
        public NodeId BuildBrowsePath(ILocalNode node, IList<QualifiedName> browsePath)
        {
            NodeId typeId = null;
           
            browsePath.Add(node.BrowseName);

            return typeId;
        }
        #endregion