C# (CSharp) YukiYume.GitHub Пространство имен

Пространства имен

YukiYume.GitHub.Configuration
YukiYume.GitHub.Json
YukiYume.GitHub.Tests

Классы

Имя Описание
BaseService All GitHub services should inherit from BaseService BaseService sets up a GitHubClient for inheriting classes to use
Comment Encapsulates information about a comment on a GitHub issue
Commit Encapsulates GitHub commit information See http://develop.github.com/p/commits.html for more information
CommitAuthor Encapsluates information about a commit's author See http://develop.github.com/p/commits.html for more information
CommitFile Encapsulates information about a file added/removed/modified in a commit See http://develop.github.com/p/commits.html for more information
CommitParent Encapsulates information about a commit parent See http://develop.github.com/p/commits.html for more information
Format
Github The GitHub class provides an easy way of working with the various GitHub services The easiest way of working with it is to use Ninject, such as in the following: var kernel = new StandardKernel(new JsonModule()); var github = kernel.Get<Github>(); or if you want to use a GitHub API username / token different from the default var kernel = new StandardKernel(new JsonModule("username", "apitoken")); var github = kernel.Get<Github>(); then with your gitHub object, you can use the various services: var user = github.User.Get("someusername"); etc.
GithubClient
Issue
NetworkCommit Encapsulates network commit information See http://develop.github.com/p/network.html for more information
NetworkMeta Encapsulates network meta information for a GitHub repository See http://develop.github.com/p/network.html for more information
NetworkMetaBlock Encapsulates network meta block information See http://develop.github.com/p/network.html for more info
NetworkMetaHead Encapsulates user head information See http://develop.github.com/p/network.html for more information
NetworkMetaUser Encapsulates network meta user information See http://develop.github.com/p/network.html for more information
PublicKey
Repository Encapsulates information about a GitHub Git repository See http://develop.github.com/p/repo.html for more information
SearchRepository
SearchUser
TreeEntry Encapsulates information about a Git tree entry See http://develop.github.com/p/object.html for more information
User
UserPlan