Making EncodedContent public

Making EncodedContent public to get the raw bytes of a file. #861
This commit is contained in:
Naveen
2015-09-21 20:53:04 -04:00
parent bda82ac473
commit 07f15ba2d4
+1 -1
View File
@@ -31,7 +31,7 @@ namespace Octokit
/// The Base64 encoded content if this is a file. Otherwise it's null.
/// </summary>
[Parameter(Key = "content")]
protected string EncodedContent { get; set; }
public string EncodedContent { get; set; }
/// <summary>
/// The unencoded content. Only access this if the content is expected to be text and not binary content.