コード例 #1
0
        public Accessibility Process <T, TValue>(IHtmlHelper <T> helper, Expression <Func <T, TValue> > exp, string cont, string extra = null)
        {
            string id = RazorUtils.GetIdentifier(exp);

            if (extra != null)
            {
                id += extra;
            }
            return(Process(helper, id, cont.ToString()));
        }
コード例 #2
0
        public Accessibility ProcessCell <T, TValue>(IHtmlHelper <T> helper, Expression <Func <T, TValue> > exp, string cont, MoldsterHtmlContainer parent = null)
        {
            string id = RazorUtils.GetIdentifier(exp);

            return(ProcessCell(helper, id, cont, parent));
        }