BlogEngine.Core.Avatar.GetAvatar C# (CSharp) Method

GetAvatar() public static method

Returns the avatar/gravatar that matches the specified email, website or avatar Url.
public static GetAvatar ( int size, string email, Uri website, string avatarUrl, string description ) : Avatar
size int /// The image size. ///
email string /// Email address. ///
website System.Uri /// The website URL. ///
avatarUrl string /// An optional avatar URL to use instead of the default. ///
description string /// Description used for the Alt/Title attributes. ///
return Avatar
        public static Avatar GetAvatar(int size, string email, Uri website, string avatarUrl, string description)
        {
            return GetAvatar(email, website, avatarUrl, description, size, size);
        }

Same methods

Avatar::GetAvatar ( string email, Uri website = null, string avatarUrl = "", string description = "", int width = 80, int height = 80 ) : Avatar