Opc.Ua.Com.Server.ComAe2Subscription.SelectAttributes C# (CSharp) Method

SelectAttributes() public method

Selects the attributes for the event category.
public SelectAttributes ( uint categoryId, uint attributeIds ) : void
categoryId uint
attributeIds uint
return void
        public void SelectAttributes(
            uint categoryId,
            uint[] attributeIds)
        {
            ThrowIfDisposed();

            lock (m_lock)
            {
                if (!m_filter.SelectAttributes(categoryId, attributeIds))
                {
                    throw ComUtils.CreateComException(ResultIds.E_INVALIDARG);
                }
            }
        }