Opc.Ua.ViewNode.SupportsAttribute C# (CSharp) Method

SupportsAttribute() public method

Whether the node supports the specified attribute.
public SupportsAttribute ( uint attributeId ) : bool
attributeId uint The attribute identifier.
return bool
        public override bool SupportsAttribute(uint attributeId)
        {
            switch (attributeId)
            {
                case Attributes.EventNotifier:
                case Attributes.ContainsNoLoops:
                {
                    return true;
                }
            }

            return base.SupportsAttribute(attributeId);
        }