Exemple #1
0
        private static CloudVocabularyPreprocessor PreprocessorConstructor(TagCloudContext cloudContext)
        {
            CloudVocabularyPreprocessor preprocessor = new ExcludingPreprocessor(null, cloudContext);

            preprocessor = new ToLowerPreprocessor(preprocessor);

            return(preprocessor);
        }
Exemple #2
0
 public ExcludingPreprocessor(CloudVocabularyPreprocessor nextPreprocessor,
                              TagCloudContext cloudContext) : base(nextPreprocessor) =>
     this.cloudContext = cloudContext;