Opc.Ua.Com.Server.ComAeNamespaceMapper.GetCategory C# (CSharp) 메소드

GetCategory() 공개 메소드

Returns the category with the specified category id.
public GetCategory ( uint categoryId ) : AeEventCategory
categoryId uint
리턴 AeEventCategory
        public AeEventCategory GetCategory(uint categoryId)
        {
            AeEventCategory category = null;

            if (!m_categories.TryGetValue(categoryId, out category))
            {
                return null;
            }

            return category;
        }

Same methods

ComAeNamespaceMapper::GetCategory ( NodeId typeId ) : AeEventCategory