ADX.Toolkit
1.2.0
dotnet add package ADX.Toolkit --version 1.2.0
NuGet\Install-Package ADX.Toolkit -Version 1.2.0
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="ADX.Toolkit" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ADX.Toolkit --version 1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ADX.Toolkit, 1.2.0"
#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 ADX.Toolkit as a Cake Addin #addin nuget:?package=ADX.Toolkit&version=1.2.0 // Install ADX.Toolkit as a Cake Tool #tool nuget:?package=ADX.Toolkit&version=1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Kusto client wrapper for executing control commands and queries with retries using exponential backoff.
Usage
Control Command
var cluster = "<cluster>";
var database = "<database>";
var command = "<command>";
var appID = "<appID>";
var appSecret = "<appSecret>";
var appTenant = "<appTenant>";
var kustoHelper = new KustoHelper();
kustoHelper.BaseWaitTime = 4; // Base wait time for retries changed to 4 sec.
IDataReader? dataReader = await kustoHelper.ExecuteCommandAsync(cluster, database, command, appID, appSecret, appTenant, 3); // 3 retries
Query
var cluster = "<cluster>";
var database = "<database>";
var query = "<query>";
var appID = "<appID>";
var appSecret = "<appSecret>";
var appTenant = "<appTenant>";
var kustoHelper = new KustoHelper();
IDataReader? dataReader = await kustoHelper.ExecuteQueryAsync(cluster, database, query, appID, appSecret, appTenant);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- CommunityToolkit.Diagnostics (>= 8.1.0)
- Microsoft.Azure.Kusto.Data (>= 11.2.2)
- Polly (>= 7.2.3)
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.0 | 369 | 2/21/2023 |