File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -48,5 +48,7 @@ internal FetchOptionsBase()
48
48
/// Completed operating on the current repository.
49
49
/// </summary>
50
50
public RepositoryOperationCompleted RepositoryOperationCompleted { get ; set ; }
51
+
52
+ public ProxyOptions ProxyOptions { get ; set ; }
51
53
}
52
54
}
Original file line number Diff line number Diff line change
1
+ using LibGit2Sharp . Handlers ;
2
+
3
+ namespace LibGit2Sharp
4
+ {
5
+ public class ProxyOptions
6
+ {
7
+ public ProxyType ProxyType { get ; set ; }
8
+
9
+ public string Url { get ; set ; }
10
+
11
+ public CredentialsHandler CredentialsProvider { get ; set ; }
12
+
13
+ public CertificateCheckHandler CertificateCheck { get ; set ; }
14
+ }
15
+ }
Original file line number Diff line number Diff line change
1
+ namespace LibGit2Sharp
2
+ {
3
+ public enum ProxyType
4
+ {
5
+ None ,
6
+ Auto ,
7
+ Specified
8
+ }
9
+ }
You can’t perform that action at this time.
0 commit comments