forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFetchOptionsBase.cs
More file actions
37 lines (32 loc) · 1.11 KB
/
FetchOptionsBase.cs
File metadata and controls
37 lines (32 loc) · 1.11 KB
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
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; }
}
}