Opc.Ua.ObjectTypeNode.SupportsAttribute C# (CSharp) Méthode

SupportsAttribute() public méthode

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

            return base.SupportsAttribute(attributeId);
        }