コード例 #1
0
ファイル: If.cs プロジェクト: rolandzwaga/sharptiles
 public override object InternalEvaluate(TagModel model)
 {
     bool test = XmlHelper.GetAndEvaluateAsBool(Source, Select, model, false);
     return (test ? GetAsString(Body, model) : null);
 }