Opc.Ua.ReferenceTypeNode.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.IsAbstract:
                case Attributes.InverseName:
                case Attributes.Symmetric:
                {
                    return true;
                }
            }

            return base.SupportsAttribute(attributeId);
        }