Making Encodedcontent public #861
This commit is contained in:
Phil Haack
2015-09-22 22:22:35 -07:00
+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; private set; }
/// <summary>
/// The unencoded content. Only access this if the content is expected to be text and not binary content.