From 07f15ba2d430abf40e63e41e4f43f1a188fc7a7d Mon Sep 17 00:00:00 2001 From: Naveen Date: Mon, 21 Sep 2015 20:53:04 -0400 Subject: [PATCH] Making EncodedContent public Making EncodedContent public to get the raw bytes of a file. #861 --- Octokit/Models/Response/RepositoryContent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/Models/Response/RepositoryContent.cs b/Octokit/Models/Response/RepositoryContent.cs index 2eef415b..6ea9f009 100644 --- a/Octokit/Models/Response/RepositoryContent.cs +++ b/Octokit/Models/Response/RepositoryContent.cs @@ -31,7 +31,7 @@ namespace Octokit /// The Base64 encoded content if this is a file. Otherwise it's null. /// [Parameter(Key = "content")] - protected string EncodedContent { get; set; } + public string EncodedContent { get; set; } /// /// The unencoded content. Only access this if the content is expected to be text and not binary content.