コード例 #1
0
        public static SocialIconBuilder SocialIcon(this VertexHelper helper, Action <SocialIcon> action)
        {
            var model = new SocialIcon();

            action.Invoke(model);
            return(new SocialIconBuilder(helper.HtmlHelper, model));
        }
コード例 #2
0
 public static SocialIconBuilder SocialIcon(this VertexHelper helper, SocialIcon model)
 {
     return(new SocialIconBuilder(helper.HtmlHelper, model));
 }