Skip to content
This repository has been archived by the owner on Feb 23, 2020. It is now read-only.

loudKode/VeryStreamSDK

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

VeryStreamSDK

.NET API Library for verystream.com

Download:https://github.com/loudKode/VeryStreamSDK/releases
NuGet: NuGet

Functions:

  • UserInfo
  • ListFolder
  • CreateNewFolder
  • Upload
  • RemoteUpload
  • RenameFolder
  • DeleteFolder
  • RenameFile
  • MoveFile
  • DeleteFile
  • GetSplash
  • CopyFile
  • GenerateDownloadUrl
  • Download
  • FileInfo
  • RunningConvertsQueue
  • DownloadFileAsStream

Example:

set client

Dim cLENT As VeryStreamSDK.IClient = New VeryStreamSDK.VClient("xxxx", "xxxx")

list files / folders

        Dim RSLT = Await cLENT.ListFolder(TextBox1.Text)
        For Each fold In RSLT.result.folders
            DataGridView1.Rows.Add(fold.name, fold.id)
        Next
        For Each fle In RSLT.result.files
            DataGridView1.Rows.Add(fle.name, fle.ID)
        Next