Merge pull request #622 from gbaychev/master

The property GravatarId in User and Author models is marked as obsolete
This commit is contained in:
Brendan Forster
2014-12-11 08:58:35 +10:30
2 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -15,8 +15,12 @@ namespace Octokit
public string AvatarUrl { get; set; }
/// <summary>
/// Hex Gravatar identifier
/// Hex Gravatar identifier, now obsolete
/// </summary>
/// <remarks>
/// For more details: https://developer.github.com/changes/2014-09-05-removing-gravatar-id/
/// </remarks>
[Obsolete("This property is now obsolete, use AvatarUrl instead")]
public string GravatarId { get; set; }
public string Url { get; set; }
+5 -1
View File
@@ -11,8 +11,12 @@ namespace Octokit
public class User : Account
{
/// <summary>
/// Hex Gravatar identifier
/// Hex Gravatar identifier, now obsolete
/// </summary>
/// <remarks>
/// For more details: https://developer.github.com/changes/2014-09-05-removing-gravatar-id/
/// </remarks>
[Obsolete("This property is now obsolete, use AvatarUrl instead")]
public string GravatarId { get; set; }
/// <summary>