Opc.Ua.Com.Server.ComHdaBrowser.BrowseUp C# (CSharp) Method

BrowseUp() public method

Moves the current browse position up.
public BrowseUp ( ) : void
return void
        public void BrowseUp()
        {
            Session session = m_server.Session;

            if (session == null)
            {
                throw ComUtils.CreateComException(ResultIds.E_FAIL);
            }

            m_browseManager.BrowseUp(session);
        }