document the Authentication namespace

This commit is contained in:
Brendan Forster
2014-12-21 14:21:25 +09:30
committed by Haacked
parent 6d933679f3
commit a797583c8e
@@ -1,9 +1,21 @@
namespace Octokit
{
/// <summary>
/// Authentication protocols supported by the GitHub API
/// </summary>
public enum AuthenticationType
{
/// <summary>
/// No credentials provided
/// </summary>
Anonymous,
/// <summary>
/// Username &amp; password
/// </summary>
Basic,
/// <summary>
/// Delegated access to a third party
/// </summary>
Oauth
}
}