Skyline.DataMiner.CICD.Validators.Protocol 3.4.0

Prefix Reserved
dotnet add package Skyline.DataMiner.CICD.Validators.Protocol --version 3.4.0
                    
NuGet\Install-Package Skyline.DataMiner.CICD.Validators.Protocol -Version 3.4.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="Skyline.DataMiner.CICD.Validators.Protocol" Version="3.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Skyline.DataMiner.CICD.Validators.Protocol" Version="3.4.0" />
                    
Directory.Packages.props
<PackageReference Include="Skyline.DataMiner.CICD.Validators.Protocol" />
                    
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 Skyline.DataMiner.CICD.Validators.Protocol --version 3.4.0
                    
#r "nuget: Skyline.DataMiner.CICD.Validators.Protocol, 3.4.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.
#:package Skyline.DataMiner.CICD.Validators.Protocol@3.4.0
                    
#: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=Skyline.DataMiner.CICD.Validators.Protocol&version=3.4.0
                    
Install as a Cake Addin
#tool nuget:?package=Skyline.DataMiner.CICD.Validators.Protocol&version=3.4.0
                    
Install as a Cake Tool

Skyline.DataMiner.CICD.Validators.Protocol

About

This NuGet package holds the code to validate DataMiner connectors.

About DataMiner

DataMiner is a transformational platform that provides vendor-independent control and monitoring of devices and services. Out of the box and by design, it addresses key challenges such as security, complexity, multi-cloud, and much more. It has a pronounced open architecture and powerful capabilities enabling users to evolve easily and continuously.

The foundation of DataMiner is its powerful and versatile data acquisition and control layer. With DataMiner, there are no restrictions to what data users can access. Data sources may reside on premises, in the cloud, or in a hybrid setup.

A unique catalog of 7000+ connectors already exist. In addition, you can leverage DataMiner Development Packages to build you own connectors (also known as "protocols" or "drivers").

Note See also: About DataMiner.

About Skyline Communications

At Skyline Communications, we deal in world-class solutions that are deployed by leading companies around the globe. Check out our proven track record and see how we make our customers' lives easier by empowering them to take their operations to the next level.

Getting Started

Creation of ProtocolInputData

string protocolXml = ...;
Microsoft.CodeAnalysis.Solution solution = ...;

Parser parser = new Parser(protocolXml);
XmlDocument document = parser.Document;
ProtocolModel model = new ProtocolModel(document);

QActionCompilationModel qactionCompilationModel = new QActionCompilationModel(model, solution);

var protocolInputData = new ProtocolInputData(model, document, qactionCompilationModel);

Creation of ValidatorSettings


DataMinerVersion minimumSupportedDataMinerVersion = ...;
IUnitList unitList = ...; // See Skyline.DataMiner.XmlSchemas.Protocol NuGet

var validatorSettings = new ValidatorSettings(minimumSupportedDataMinerVersion, unitList);

// Optionally you can specify the expected provider for the CheckProviderTag check.
validatorSettings.ExpectedProvider = "My Company Name";

Limited set of checks

If you want to validate a limited set of checks, you can specify those in the ValidatorSettings:


Category category = Category.Protocol;
uint checkId = Skyline.DataMiner.CICD.Validators.Protocol.Tests.Protocol.CheckProtocolTag.CheckId.CheckProtocolTag;

validatorSettings.WithTestToExecute((category, checkId));

Validator

CancellationToken cancellationToken = ...;
var protocolInputData = ...;
var validatorSettings = ...;

Validator validator = new Validator();

IList<IValidationResult> results = validator.RunValidate(protocolInputData, validatorSettings, cancellationToken);

Major Change Checker

CancellationToken cancellationToken = ...;
var oldProtocolInputData = ...;
var newProtocolInputData = ...;
var validatorSettings = ...;

Validator validator = new Validator();

IList<IValidationResult> results = validator.RunCompare(newProtocolInputData, oldProtocolInputData, validatorSettings, cancellationToken);

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
.NET Framework net48 is compatible.  net481 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
3.4.0 207 5/29/2026
3.3.0 187 4/8/2026
3.3.0-bravo 112 4/7/2026
3.3.0-alpha 107 3/31/2026
3.2.0 206 3/11/2026
3.1.0 189 3/2/2026
3.0.1 154 2/10/2026
3.0.0 186 1/30/2026
2.2.2 138 1/20/2026
2.2.2-bravo 117 1/20/2026
2.2.2-alpha 118 1/20/2026
2.2.1 135 1/12/2026
2.2.1-alpha 125 1/12/2026
2.2.0 166 1/12/2026
2.1.1 257 12/22/2025
2.1.0 487 12/11/2025
2.0.0 292 10/6/2025
1.5.0-echo 221 10/6/2025
1.5.0-delta 220 10/6/2025
1.5.0-charlie 207 9/26/2025
Loading failed