QeedioAdapter 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package QeedioAdapter --version 1.0.2
                    
NuGet\Install-Package QeedioAdapter -Version 1.0.2
                    
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="QeedioAdapter" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="QeedioAdapter" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="QeedioAdapter" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add QeedioAdapter --version 1.0.2
                    
#r "nuget: QeedioAdapter, 1.0.2"
                    
#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.
#:package QeedioAdapter@1.0.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=QeedioAdapter&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=QeedioAdapter&version=1.0.2
                    
Install as a Cake Tool

QeedioAdapter

QeedioAdapter je knihovna pro .NET, která umožňuje snadnou integraci s Qeedio API. Knihovna poskytuje nástroje pro autentizaci a komunikaci s Qeedio službami.

Instalace

QeedioAdapter můžete nainstalovat pomocí NuGet:

dotnet add package QeedioAdapter

nebo v Package Manager Console:

Install-Package QeedioAdapter

Požadavky

  • .NET 8.0 nebo novější

Funkce

  • Autentizace proti Qeedio službám
  • Zpracování procesových dat
  • Práce s výsledky kontroly kvality dat
  • Odesílání a příjem dat z Qeedio API

Použití

Základní inicializace

// Vytvoření instance QeedioAdapter s autentizačními údaji
var auth = new QeedioAuth("apiKey", "apiSecret", "baseUrl");
var adapter = new QeedioAdapter(auth);

Práce s procesovými daty

// Získání metadat procesu
var processMetadata = await adapter.GetProcessMetadataAsync(processId);

// Spuštění procesu
var processRun = await adapter.StartProcessAsync(processId, parameters);

// Kontrola stavu procesu
var status = await adapter.CheckProcessStatusAsync(processRunId);

Práce s kontrolou kvality dat

// Získání výsledků kontroly kvality
var qualityResults = await adapter.GetDataQualityResultsAsync(processRunId);

// Zpracování chyb kvality dat
foreach (var error in qualityResults.Errors)
{
    Console.WriteLine($"Chyba: {error.Message}, Kód: {error.Code}");
}

Dokumentace

Pro podrobnější informace o dostupných metodách a třídách viz dokumentace API.

Licence

Tento projekt je licencován pod MIT licencí.

Kontakt

Pro více informací navštivte qeedio.com.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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.0.3 219 4/21/2025
1.0.2 193 4/21/2025
1.0.1 197 4/21/2025
1.0.0 205 4/21/2025