forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FetchOptionsBase.cs
52 lines (44 loc) · 1.76 KB
/
FetchOptionsBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
{
/// <summary>
/// Base collection of parameters controlling Fetch behavior.
/// </summary>
public abstract class FetchOptionsBase
{
internal FetchOptionsBase()
{ }
/// <summary>
/// Handler for network transfer and indexing progress information.
/// </summary>
public ProgressHandler OnProgress { get; set; }
/// <summary>
/// Handler for updates to remote tracking branches.
/// </summary>
public UpdateTipsHandler OnUpdateTips { get; set; }
/// <summary>
/// Handler for data transfer progress.
/// <para>
/// Reports the client's state regarding the received and processed (bytes, objects) from the server.
/// </para>
/// </summary>
public TransferProgressHandler OnTransferProgress { get; set; }
/// <summary>
/// Handler to generate <see cref="LibGit2Sharp.Credentials"/> for authentication.
/// </summary>
public CredentialsHandler CredentialsProvider { get; set; }
/// <summary>
/// This hanlder will be called to let the user make a decision on whether to allow
/// the connection to preoceed based on the certificate presented by the server.
/// </summary>
public CertificateCheckHandler CertificateCheck { get; set; }
/// <summary>
/// Starting to operate on a new repository.
/// </summary>
public RepositoryOperationStarting RepositoryOperationStarting { get; set; }
/// <summary>
/// Completed operating on the current repository.
/// </summary>
public RepositoryOperationCompleted RepositoryOperationCompleted { get; set; }
}
}