GraphQLTest: Add Proxy config

This commit is contained in:
Jonathan Jenne
2020-05-05 13:21:35 +02:00
parent 729b4d8195
commit 6e577627d3
4 changed files with 154 additions and 18 deletions

View File

@@ -5,4 +5,17 @@
Public Property Email As String = "foo.bar@wisag.de"
Public Property Password As String = "Password"
Public Property BaseUrl As String = "https://data.api.wisag.de:8443"
Public Property ProxyHost As String = ""
Public Property ProxyPort As Integer = 0
Public Property ProxyUsername As String = ""
Public Property ProxyPassword As String = ""
Public Function HasProxySet() As Boolean
Return ProxyHost <> "" And ProxyPort > 0
End Function
Public Function HasProxyCredentialsSet() As Boolean
Return ProxyUsername <> "" And ProxyPassword <> ""
End Function
End Class