Giter Site home page Giter Site logo

htputsdk's Introduction

htputSDK

Download:https://github.com/loudKode/htputSDK/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
  • Upload/Download tracking support
  • Proxy Support
  • Upload/Download cancellation support

Functions:

  • AppendPage
  • DeletePage
  • GetPageAs
  • ReplacePage
  • CreateNewPage

Code simple:

    Sub SetClient()
        Dim MyClient As htputSDK.IClient = New htputSDK.HClient()
    End Sub
    Sub SetClientWithOptions()
        Dim Optians As New htputSDK.ConnectionSettings With {.CloseConnection = True, .TimeOut = TimeSpan.FromMinutes(30), .Proxy = New htputSDK.ProxyConfig With {.ProxyIP = "172.0.0.0", .ProxyPort = 80, .ProxyUsername = "myname", .ProxyPassword = "myPass", .SetProxy = True}}
        Dim MyClient As htputSDK.IClient = New htputSDK.HClient(Optians)
    End Sub
    Async Sub CreateNewPage()
        Dim UploadCancellationToken As New Threading.CancellationTokenSource()
        Dim _ReportCls As New Progress(Of htputSDK.ReportStatus)(Sub(ReportClass As htputSDK.ReportStatus)
                                                                     Label1.Text = String.Format("{0}/{1}", (ReportClass.BytesTransferred), (ReportClass.TotalBytes))
                                                                     ProgressBar1.Value = CInt(ReportClass.ProgressPercentage)
                                                                     Label2.Text = CStr(ReportClass.TextStatus)
                                                                 End Sub)
        Dim RSLT = Await MyClient.CreateNewPage("html code", htputSDK.utilitiez.SentType.String, "address", _ReportCls, UploadCancellationToken.Token)
        DataGridView1.Rows.Add(RSLT.pageurl, RSLT.status.ToString, RSLT.pass, RSLT.JSON.ToString, If(RSLT._ErrorMessage IsNot Nothing, RSLT._ErrorMessage, Nothing))
    End Sub
    Async Sub DeletePage()
        Dim RSLT = Await MyClient.DeletePage("https://htput.com/xxxxx", "delete pass")
    End Sub
    Async Sub ReplacePage()
        Dim UploadCancellationToken As New Threading.CancellationTokenSource()
        Dim _ReportCls As New Progress(Of htputSDK.ReportStatus)(Sub(ReportClass As htputSDK.ReportStatus)
                                                                     Label1.Text = String.Format("{0}/{1}", (ReportClass.BytesTransferred), (ReportClass.TotalBytes))
                                                                     ProgressBar1.Value = CInt(ReportClass.ProgressPercentage)
                                                                     Label2.Text = CStr(ReportClass.TextStatus)
                                                                 End Sub)
        Dim RSLT = Await MyClient.ReplacePage("https://htput.com/xxxxx", "html code", htputSDK.utilitiez.SentType.String, "pass", _ReportCls, UploadCancellationToken.Token)
        DataGridView1.Rows.Add(RSLT.status, RSLT.JSON.ToString, If(RSLT._ErrorMessage IsNot Nothing, RSLT._ErrorMessage, Nothing))
    End Sub
    Async Sub AppendPage()
        Dim UploadCancellationToken As New Threading.CancellationTokenSource()
        Dim _ReportCls As New Progress(Of htputSDK.ReportStatus)(Sub(ReportClass As htputSDK.ReportStatus)
                                                                     Label1.Text = String.Format("{0}/{1}", (ReportClass.BytesTransferred), (ReportClass.TotalBytes))
                                                                     ProgressBar1.Value = CInt(ReportClass.ProgressPercentage)
                                                                     Label2.Text = CStr(ReportClass.TextStatus)
                                                                 End Sub)
        Dim RSLT = Await MyClient.AppendPage("https://htput.com/xxxxx", "html code", htputSDK.utilitiez.SentType.String, "pass", _ReportCls, UploadCancellationToken.Token)
        DataGridView1.Rows.Add(RSLT.status, RSLT.JSON.ToString, If(RSLT._ErrorMessage IsNot Nothing, RSLT._ErrorMessage, Nothing))
    End Sub
    Async Sub Download_Page_WithProgressTracking()
        Dim DownloadCancellationToken As New Threading.CancellationTokenSource()
        Dim _ReportCls As New Progress(Of htputSDK.ReportStatus)(Sub(ReportClass As htputSDK.ReportStatus)
                                                                     Label1.Text = String.Format("{0}/{1}", (ReportClass.BytesTransferred), (ReportClass.TotalBytes))
                                                                     ProgressBar1.Value = CInt(ReportClass.ProgressPercentage)
                                                                     Label2.Text = CStr(ReportClass.TextStatus)
                                                                 End Sub)
        Await MyClient.Download("https://htput.com/xxxxx", "J:\DB\index.html", _ReportCls, DownloadCancellationToken.Token)
    End Sub

htputsdk's People

Contributors

jamesheck2019 avatar

Watchers

James Cloos 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.