Opc.Ua.Com.Server.ComDaProxy.GetProperties C# (CSharp) Method

GetProperties() public method

Gets the properties.
public GetProperties ( string itemId ) : IList
itemId string The item id.
return IList
        public IList<DaProperty> GetProperties(string itemId)
        {
            Session session = Session;

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

            return m_browseManager.GetAvailableProperties(session, itemId);
        }

Same methods

ComDaProxy::GetProperties ( ComDaReadPropertiesRequest requests ) : IList