CDXML modules don’t expose the verb and the noun of the cmdlets they publish. If you want to discover the set of nouns in a CDXML module you need a bit of brute force:
Get-Command -Module DhcpServer |
foreach {
($_.Name -split "-")[1]
} | sort | group -NoElement | sort count –Descending