예제 #1
0
        public string Tokenize(string template, dynamic context)
        {
            if (string.IsNullOrEmpty(template))
            {
                return(template);
            }

            return(_tokenizer.Tokenize(template, context, _serviceProvider));
        }
예제 #2
0
 public string Tokenize(string template, dynamic context)
 {
     return(_tokenizer.Tokenize(template, context, _serviceProvider));
 }