Opc.Ua.Com.Server.ComAeNamespaceMapper.GetCategory C# (CSharp) Method

GetCategory() public method

Returns the category with the specified event type id.
public GetCategory ( NodeId typeId ) : AeEventCategory
typeId NodeId
return AeEventCategory
        public AeEventCategory GetCategory(NodeId typeId)
        {
            AeEventCategory category = null;

            if (!this.m_eventTypes.TryGetValue(typeId, out category))
            {
                return null;
            }

            return category;
        }

Same methods

ComAeNamespaceMapper::GetCategory ( uint categoryId ) : AeEventCategory