コード例 #1
0
ファイル: VariableHelper.cs プロジェクト: rslijp/sharptiles
 public static string Evaluate(ITagWithVariable tag, TagModel model)
 {
     object result = tag.InternalEvaluate(model);
     string var = tag.GetAutoValueAsString("Var", model);
     string scope = tag.GetAutoValueAsString("Scope", model);
     model[scope + "." + var] = result;
     return String.Empty;
 }
コード例 #2
0
ファイル: VariableHelper.cs プロジェクト: rslijp/sharptiles
 public static string EvaluateOptional(ITagWithVariable tag, TagModel model)
 {
     object result = tag.InternalEvaluate(model);
     if (tag.Var != null)
     {
         string var = tag.GetAutoValueAsString("Var", model);
         string scope = tag.GetAutoValueAsString("Scope", model);
         model[scope + "." + var] = result;
         return String.Empty;
     }
     return result != null ? result.ToString() : String.Empty;
 }
コード例 #3
0
        public static string EvaluateOptional(ITagWithVariable tag, TagModel model)
        {
            var result = tag.InternalEvaluate(model);

            if (tag.Var != null)
            {
                var var   = tag.GetAutoValueAsString("Var", model);
                var scope = tag.GetAutoValueAsString("Scope", model);
                model[scope + "." + var] = result;
            }
            var postTag = tag as ITagWithVariableAndPostEvaluate;

            postTag?.PostEvaluate(model, result);
            return(tag.Var == null ? (result?.ToString() ?? string.Empty) : string.Empty);
        }
コード例 #4
0
        public static string Evaluate(ITagWithVariable tag, TagModel model, bool naturalLanguage = false)
        {
            var result = tag.InternalEvaluate(model);
            var var    = tag.GetAutoValueAsString("Var", model);

            if (naturalLanguage)
            {
                var = LanguageHelper.CamelCaseAttribute(var);
            }
            var scope = tag.GetAutoValueAs <VariableScope>("Scope", model);

            if (scope != VariableScope.Page || !model.TryUpdateTag(var, result))
            {
                model[scope + "." + var] = result;
            }
            var postTag = tag as ITagWithVariableAndPostEvaluate;

            postTag?.PostEvaluate(model, result);
            return(string.Empty);
        }