Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RemoteCompletionType.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fb6c44065bb13188f8e88eb22f86064ee74c9a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace LibGit2Sharp
{
    /// <summary>
    /// git_remote_completion types.
    /// </summary>
    public enum RemoteCompletionType
    {
        /// <summary>
        /// Download.
        /// </summary>
        Download = 0, /* GIT_REMOTE_COMPLETION_DOWNLOAD */

        /// <summary>
        /// Indexing.
        /// </summary>
        Indexing, /* GIT_REMOTE_COMPLETION_INDEXING */

        /// <summary>
        /// Error.
        /// </summary>
        Error,    /* GIT_REMOTE_COMPLETION_ERROR */
    }
}