Giter Site home page Giter Site logo

proxysdk's Introduction

ProxySDK

Download:https://github.com/jamesheck2019/ProxySDK/releases
NuGet: NuGet

Features

  • Assemblies for .NET 4.5.2 and .NET Standard 2.0 and .NET Core 2.1
  • Just one external reference (Newtonsoft.Json)
  • Easy installation using NuGet
  • Proxy Support

Supported Providers:

  • gimmeproxy.com
  • ip2proxy.com
  • pubproxy.com
  • getproxylist.com
  • proxy-list.download
  • proxycheck.io

Code simple:

    Sub SetClient()
        Dim MyClient As ProxySDK.IProxy = New ProxySDK.ProxyClient()
    End Sub
    Sub SetClientWithOptions()
         Dim Optians As New ProxySDK.ProxyConfig With {.ProxyIP = "172.0.0.0", .ProxyPort = 80, .ProxyUsername = "myname", .ProxyPassword = "myPass", .SetProxy = True}
        Dim MyClient As ProxySDK.IProxy = New ProxySDK.ProxyClient(Optians)
    End Sub
    Async Sub GetProxyFromGimme()
        Dim result = Await MyClient.Gimme()
        DataGridView1.Rows.Add(result.ip, result.ipPort, result.country)
    End Sub
    Async Sub GetProxyFromPubproxy()
        Dim result = Await MyClient.Pubproxy()
        For Each vid In result.data
            DataGridView1.Rows.Add(vid.ip, vid.ipPort, vid.country, vid.speed)
        Next
    End Sub
    Async Sub GetProxyFromGetproxylist()
        Dim result = Await MyClient.Getproxylist()
        DataGridView1.Rows.Add(result.ip, result.port, result.country, result.uptime)
    End Sub
    Async Sub GetProxyFromProxylistdownload()
        Dim result = Await MyClient.Proxylistdownload(ProxyTypeEnum.https, AnonTypeEnum.anonymous, ProxyCountryEnum.US)
        For Each vid In result
            DataGridView1.Rows.Add(vid.ip, vid.port, vid.IP_AND_PORT)
        Next
    End Sub
    Async Sub CheckProxy()
        Dim result = Await MyClient.CheckProxyStatus("172.1.0.0", 80)
        DataGridView1.Rows.Add(result.proxy, result.provider, result.type, result.city, result.country)
    End Sub

proxysdk's People

Contributors

jamesheck2019 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.