예제 #1
0
파일: Program.cs 프로젝트: NightQnEarth/fp
        private static CloudVocabularyPreprocessor PreprocessorConstructor(TagCloudContext cloudContext)
        {
            CloudVocabularyPreprocessor preprocessor = new ExcludingPreprocessor(null, cloudContext);

            preprocessor = new ToLowerPreprocessor(preprocessor);

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