12 references to NotSet
System.Speech (12)
Recognition\SrgsGrammar\SrgsItem.cs (12)
139return _minRepeat == NotSet ? 1 : _minRepeat; 147return _maxRepeat == NotSet ? 1 : _maxRepeat; 191if (_minRepeat != NotSet) 196else if (_maxRepeat == int.MaxValue || _maxRepeat == NotSet) 204int minRepeat = _minRepeat == NotSet ? 1 : _minRepeat; 239if (_minRepeat != _maxRepeat || _maxRepeat != NotSet) 246else if (_maxRepeat == int.MaxValue || _maxRepeat == NotSet) 254int minRepeat = _minRepeat == NotSet ? 1 : _minRepeat; 310private int _minRepeat = NotSet; 312private int _maxRepeat = NotSet; 389private int _minRepeat = NotSet; 390private int _maxRepeat = NotSet;