ABB.Swum.Tagger.TagNounPhrase C# (CSharp) Method

TagNounPhrase() public abstract method

Assigns part-of-speech tags to the word nodes in the given phrase, assuming it is a noun phrase. Only the words between startIndex and stopIndex, inclusive, are tagged.
public abstract TagNounPhrase ( PhraseNode nounPhrase, int startIndex, int stopIndex ) : void
nounPhrase ABB.Swum.Nodes.PhraseNode The noun phrase to tag.
startIndex int The index of the first word to tag.
stopIndex int The index of the last word to tag.
return void
        public abstract void TagNounPhrase(PhraseNode nounPhrase, int startIndex, int stopIndex);
        /// <summary>

Same methods

Tagger::TagNounPhrase ( PhraseNode nounPhrase ) : void