DeQmaTech.keep2shareSDK 1.2.1

dotnet add package DeQmaTech.keep2shareSDK --version 1.2.1
NuGet\Install-Package DeQmaTech.keep2shareSDK -Version 1.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DeQmaTech.keep2shareSDK" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DeQmaTech.keep2shareSDK --version 1.2.1
#r "nuget: DeQmaTech.keep2shareSDK, 1.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DeQmaTech.keep2shareSDK as a Cake Addin
#addin nuget:?package=DeQmaTech.keep2shareSDK&version=1.2.1

// Install DeQmaTech.keep2shareSDK as a Cake Tool
#tool nuget:?package=DeQmaTech.keep2shareSDK&version=1.2.1

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

List of functions:

  • FileMetadata
  • DeleteMultiple
  • Delete
  • Upload
  • ListFolders
  • CaptchaImage
  • RequestCaptcha
  • TestAccessToken
  • AccountInfo
  • RootList
  • ListFiles
  • CreateNewFolder
  • Rename
  • RemoteUpload
  • RemoteUploadStatus
  • Move
  • MoveAndRename
  • ChangePrivacy

Example:


'first get auth token (one time only)
Dim tokn = keep2shareSDK.Authentication.OneHourToken("user", "pass")

''set proxy and connection options
Dim con As New keep2shareSDK.ConnectionSettings With {.CloseConnection = True, .TimeOut = TimeSpan.FromMinutes(30), .Proxy = New keep2shareSDK.ProxyConfig With {.SetProxy = True, .ProxyIP = "127.0.0.1", .ProxyPort = 8888, .ProxyUsername = "user", .ProxyPassword = "pass"}}
''set api client
Dim CLNT As keep2shareSDK.IClient = New keep2shareSDK.KClient("xxxxxtokenxxxxx", con)

''general
Await CLNT.AccountInfo()
Dim cap = Await CLNT.RequestCaptcha()
Await CLNT.CaptchaImage(cap.captcha_url)
Await CLNT.TestAccessToken()

''file folder
Await CLNT.CreateNewFolder("root id = /", "new folder", True)
Dim cts As New Threading.CancellationTokenSource()
Dim _ReportCls As New Progress(Of keep2shareSDK.ReportStatus)(Sub(ReportClass As keep2shareSDK.ReportStatus) Console.WriteLine(String.Format("{0} - {1}% - {2}", String.Format("{0}/{1}", (ReportClass.BytesTransferred), (ReportClass.TotalBytes)), CInt(ReportClass.ProgressPercentage), ReportClass.TextStatus)))
Await CLNT.Upload("c:\\VIDO.mp4", UploadTypes.FilePath, "/", "VIDO.mp4", _ReportCls, cts.Token)
Await CLNT.Delete("id")
Await CLNT.DeleteMultiple(New List(Of String) From {{"id"}, {"id"}})
Await CLNT.FileMetadata("id")
Await CLNT.ListFiles("id", keep2shareSDK.KClient.LocationType.any, 50, 1, New keep2shareSDK.KClient.RootListOptions.SortOptions With {.name = keep2shareSDK.KClient.SoRt.ascending}, True)
Await CLNT.ListFolders
Await CLNT.Move("from id", "to id")
Await CLNT.MoveAndRename("from id", "to id", "rename to")
Await CLNT.RemoteUpload(New List(Of String) From {{"http://telerik.com/blob.mp4"}})
Await CLNT.RemoteUploadStatus(New List(Of String) From {{"jobid"}})
Await CLNT.Rename("id", "newname")
Await CLNT.RootList(keep2shareSDK.KClient.LocationType.folder, 50, 2, New keep2shareSDK.KClient.RootListOptions.SortOptions With {.name = keep2shareSDK.KClient.SoRt.ascending}, False, True)
   
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1 548 4/9/2020
1.2.0 438 3/25/2020
1.1.0 425 3/9/2020
1.0.0 507 8/28/2019