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

GetItemId() public method

Gets the item id for the specified browse element.
public GetItemId ( string browseName ) : string
browseName string The name of the browse element.
return string
        public string GetItemId(string browseName)
        {
            Session session = m_server.Session;

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

            return m_browseManager.GetItemId(session, browseName);
        }
        #endregion