Added DebuggerDisplay message to Feed

This commit is contained in:
Sam Williamson
2014-02-20 13:44:56 -05:00
parent e1908f7ae7
commit 600467b3aa
+11 -1
View File
@@ -1,5 +1,7 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Threading.Tasks;
namespace Octokit
@@ -17,5 +19,13 @@ namespace Octokit
// TODO: Note, the deserializer didn't work when this was named Links
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "links"), System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1707:IdentifiersShouldNotContainUnderscores")]
public FeedLinks _links { get; set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "Public Url: {0} ", CurrentUserPublicUrl);
}
}
}
}