Opc.Ua.Server.AggregateManager.IsSupported C# (CSharp) Method

IsSupported() public method

Checks if the aggregate is supported by the server.
public IsSupported ( NodeId aggregateId ) : bool
aggregateId NodeId The id of the aggregate function.
return bool
        public bool IsSupported(NodeId aggregateId)
        {
            if (NodeId.IsNull(aggregateId))
            {
                return false;
            }

            lock (m_lock)
            {
                return m_factories.ContainsKey(aggregateId);
            }
        }