You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+101Lines changed: 101 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,17 @@ This component allows user to query an IP address if it was being used as VPN an
5
5
* Free IP2Proxy BIN Data: https://lite.ip2location.com
6
6
* Commercial IP2Proxy BIN Data: https://www.ip2location.com/database/ip2proxy
7
7
8
+
As an alternative, this component can also call the IP2Proxy Web Service. This requires an API key. If you don't have an existing API key, you can subscribe for one at the below:
9
+
10
+
https://www.ip2location.com/web-service/ip2proxy
11
+
8
12
## Requirements
9
13
10
14
Microsoft .NET 4.72 framework or later.
11
15
Compatible with .NET Core 2.x/3.x SDK.
12
16
17
+
## QUERY USING THE BIN FILE
18
+
13
19
## Methods
14
20
Below are the methods supported in this class.
15
21
@@ -134,3 +140,98 @@ End If
134
140
proxy.Close()
135
141
136
142
```
143
+
144
+
## QUERY USING THE IP2PROXY PROXY DETECTION WEB SERVICE
145
+
146
+
## Methods
147
+
Below are the methods supported in this class.
148
+
149
+
|Method Name|Description|
150
+
|---|---|
151
+
|Open(ByVal APIKey As String, ByVal Package As String, ByVal Optional UseSSL As Boolean = True)| Expects 2 or 3 input parameters:<ol><li>IP2Proxy API Key.</li><li>Package (PX1 - PX11)</li></li><li>Use HTTPS or HTTP</li></ol> |
152
+
|IPQuery(ByVal IP As String)|Query IP address. This method returns a JObject containing the proxy info. <ul><li>countryCode</li><li>countryName</li><li>regionName</li><li>cityName</li><li>isp</li><li>domain</li><li>usageType</li><li>asn</li><li>as</li><li>lastSeen</li><li>threat</li><li>proxyType</li><li>isProxy</li><li>provider</li><ul>|
153
+
|GetCredit()|This method returns the web service credit balance in a JObject.|
0 commit comments