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

GetPropertyValues() public method

Gets the property values.
public GetPropertyValues ( string itemId, int propertyIds ) : DaValue[]
itemId string The item id.
propertyIds int The property ids.
return DaValue[]
        public DaValue[] GetPropertyValues(string itemId, int[] propertyIds)
        {
            Session session = Session;

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

            return m_browseManager.GetPropertyValues(session, itemId, propertyIds);
        }