ChiakiYu.Common.Extensions.Html.HtmlHelperShareToThirdExtensions.ShareToThird C# (CSharp) Method

ShareToThird() public static method

分享到其他网站
public static ShareToThird ( this htmlHelper, ShareDisplayType shareDisplayType = ShareDisplayType.Icon, ShareDisplayIconSize shareDisplayIconSize = ShareDisplayIconSize.Middle ) : System.Web.Mvc.MvcHtmlString
htmlHelper this
shareDisplayType ShareDisplayType
shareDisplayIconSize ShareDisplayIconSize
return System.Web.Mvc.MvcHtmlString
        public static MvcHtmlString ShareToThird(this HtmlHelper htmlHelper,
            ShareDisplayType shareDisplayType = ShareDisplayType.Icon,
            ShareDisplayIconSize shareDisplayIconSize = ShareDisplayIconSize.Middle)
        {
            //展示形式
            htmlHelper.ViewData["ShareToThirdDisplayType"] = shareDisplayType;
            //图标形式展示大小
            htmlHelper.ViewData["ShareDisplayIconSize"] = shareDisplayIconSize;
            return htmlHelper.Partial("~/Plugins/ShareToThird/Baidu.cshtml");
        }
HtmlHelperShareToThirdExtensions