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: 8e48e161e11a08a9a55a4d1248ac8a447d57eeba (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 */
    }
}