Opc.Ua.Server.ObjectTypeSource.SupportsAttribute C# (CSharp) Метод

SupportsAttribute() публичный Метод

public SupportsAttribute ( uint attributeId ) : bool
attributeId uint
Результат bool
        public override bool SupportsAttribute(uint attributeId)
        {
            lock (DataLock)
            {
                switch (attributeId)
                {
                    case Attributes.IsAbstract:
                    {
                        return true;
                    }

                    default:
                    {
                        return base.SupportsAttribute(attributeId);
                    }
                }
            }
        }
        #endregion