5 instantiations of ItemElement
System.Speech (5)
Internal\GrammarBuilding\ItemElement.cs (1)
81
ItemElement item =
new
(_minRepeat, _maxRepeat);
Internal\GrammarBuilding\OneOfElement.cs (1)
36
ItemElement newItem = item as ItemElement ?? new
ItemElement
(item);
Recognition\Choices.cs (1)
57
_oneOf.Items.Add(new
ItemElement
(alternateChoice));
Recognition\GrammarBuilder.cs (2)
99
AddItem(new
ItemElement
(elementPhrase, minRepeat, maxRepeat));
170
AddItem(new
ItemElement
(builder.InternalBuilder.Items, minRepeat, maxRepeat));
4 references to ItemElement
System.Speech (4)
Internal\GrammarBuilding\ItemElement.cs (2)
60
if (obj is not
ItemElement
refObj)
81
ItemElement
item = new(_minRepeat, _maxRepeat);
Internal\GrammarBuilding\OneOfElement.cs (2)
36
ItemElement
newItem = item as
ItemElement
?? new ItemElement(item);