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

SupportedCredentialTypes.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc38a259e951c7d6eeec6953e07fccdb3f4c65c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;

namespace LibGit2Sharp
{
    /// <summary>
    /// Credential types supported by the server. If the server supports a particular type of
    /// authentication, it will be set to true.
    /// </summary>
    [Flags]
    public enum SupportedCredentialTypes
    {
        /// <summary>
        /// Plain username and password combination
        /// </summary>
        UsernamePassword = (1 << 0),

        /// <summary>
        /// Ask Windows to provide its default credentials for the current user (e.g. NTLM)
        /// </summary>
        Default = (1 << 1),
    }
}