public override bool SetFilterMode(WordFilterMode mode)
 {
     return(QCARWrapper.Instance.WordListSetFilterMode((int)mode) == 1);
 }
예제 #2
0
 public abstract bool SetFilterMode(WordFilterMode mode);
예제 #3
0
 /// <summary>
 /// Sets the mode for the filter list
 /// The filter list allows an application to specify a subset of Words
 /// from the word list that will be detected and tracked. It can do this
 /// in two modes of operation. In black list mode, any word in the filter
 /// list will be prevented from being detected. In the white list mode,
 /// only words in the the filter list can be detected.
 /// </summary>
 public abstract bool SetFilterMode(WordFilterMode mode);
예제 #4
0
 /// <summary>
 /// Sets the mode for the filter list
 /// The filter list allows an application to specify a subset of Words
 /// from the word list that will be detected and tracked. It can do this
 /// in two modes of operation. In black list mode, any word in the filter
 /// list will be prevented from being detected. In the white list mode,
 /// only words in the the filter list can be detected.
 /// </summary>
 public override bool SetFilterMode(WordFilterMode mode)
 {
     return QCARWrapper.Instance.WordListSetFilterMode((int)mode) == 1;
 }