This code snippet demonstrates how you might retrieve a list of child keywords for a given named category in a particular publication.
private List FindKeywords(string categoryName)
{
var list = new List();
var taxonomyFactory = new TaxonomyFactory... Read the full text.