System.Web.Mvc.GravatarHelper.Gravatar C# (CSharp) Method

Gravatar() public static method

public static Gravatar ( this helper, string email, int size ) : string
helper this
email string
size int
return string
        public static string Gravatar(this HtmlHelper helper, string email, int size)
        {
            var result = "<img src=\"{0}\" alt=\"Gravatar\" class=\"gravatar\" />";
            var url = GetGravatarURL(email, size);
            return string.Format(result, url);
        }