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

SupportsAttribute() public method

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

            return base.SupportsAttribute(attributeId);
        }