Library providing methods to communicate with Matrices inside Elements of a DataMiner System. [Minimum Required DataMiner: 10.3.1] Getting Started: Use the DIS Macro:Protocols/Matrix/Create Matrix Code Entry Point: public sealed class Matrix : MatrixHelperForMatrixAndTables
$ dotnet add package Skyline.DataMiner.Core.Matrix.ProtocolSkyline.DataMiner.Core.Matrix packages are NuGets available in the public nuget store that contain assemblies that enhance development of matrices in DataMiner protocols.
The following packages are available:
Documentation: About Skyline.DataMiner.Core.Matrix for Array Types
Documentation: About Matrix components for Array Types
Documentation: About Skyline.DataMiner.Core.Matrix for Matrix Types
Documentation: About Matrix components for Matrix Types
[!TIP] From DataMiner Systems 10.3.1/10.4.0 onwards the Matrix as a Table is a different style of representing matrices. This range of the library can also assists with the development of that.
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").
[!TIP] See also: About DataMiner
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.
The "DataMiner Integration Studio" Visual Studio extension is required for development of connectors and Automation scripts using NuGets.
[!IMPORTANT] NuGets are mandatory to be installed with PackageReferences. DIS was redesigned to work with PackageReferences and be future-proof.
For more information on how to migrate from packages.config to PackageReferences, see docs.microsoft.com.
You can use the DIS Plugin to generate the Matrix present since DIS 2.40. Before this, DIS contains a macro that can be used to quickly get started with a new Matrix in a connector.
You may need to adjust some namespaces as the generated code may reference older namespaces then the ones provided by this NuGet.
Generating the two table approach allows the use of the Router Control
Make sure you have the DIS Macros Tool Window open in Visual Studio then run the "Protocols/Matrix/Create Matrix" macro and follow the wizard.
[!IMPORTANT] When using the Matrix UI Component defined as a parameter with type array it's guaranteed to work well up to 1000X1000 size (and up to 4000X4000 before it becomes clunky)
<Type options="dimensions=640,640;columntypes=99:0-639">array</Type>The newer Matrix Parameter defined as a type Matrix is currently an initial release and is less efficient. This should only be used if you need the ability to set a tooltip or perform a force set of a crosspoint even when locked. It is currently intended for matrices sizes 64X64
<Type>Matrix</Type>More details on implementing this can be found in the Documentation: About Matrix Component for Matrix Types
[!IMPORTANT] For larger matrices its recommended to not use the Matrix UI Component and stick with only the two tables.