TGS.Prediktor.Semantics.Service 0.1.62

There is a newer version of this package available.
See the version list below for details.
dotnet add package TGS.Prediktor.Semantics.Service --version 0.1.62
NuGet\Install-Package TGS.Prediktor.Semantics.Service -Version 0.1.62
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="TGS.Prediktor.Semantics.Service" Version="0.1.62" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TGS.Prediktor.Semantics.Service --version 0.1.62
#r "nuget: TGS.Prediktor.Semantics.Service, 0.1.62"
#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 TGS.Prediktor.Semantics.Service as a Cake Addin
#addin nuget:?package=TGS.Prediktor.Semantics.Service&version=0.1.62

// Install TGS.Prediktor.Semantics.Service as a Cake Tool
#tool nuget:?package=TGS.Prediktor.Semantics.Service&version=0.1.62

Introduction

Semantics Types API is a C# library tool for creating Fully-Inherited InstanceDeclarationHierarchy from OPC UA types.

The OPC UA types are imported from a Nodeset2.xml file. (The file cannot include instances).

Usage

Create an instance of TypeNodeManager. The TypeNodeManager requires a persistence store that implements INodeStore. You can use LiteNodeStore for this. LiteNodeStore uses an in memory SQLite db. Use the TypeNodeManager to get Fully-Inherited InstanceDeclarationHierarchy for your types.

    var tns = new LiteNodeStore(true);
    TypeNodeManager tm = new(tns);
    var file = "My.NodeSet2.xml";
    var uanodeset = UANodeSet.Read(new FileStream(file, FileMode.Open, FileAccess.Read));
    tm.ImportTypes(uanodeset);
    SemTypeNode fullyInherited = tm.GetTypeDef(new NodeId("ns=1;i=1009"));

The variable 'fullyInherited' of class SemTypeNode will contain a full description of the Fully-Inherited InstanceDeclarationHierarchy.

Visit us and check out our OPC UA Gateway: TGS Prediktor

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. 
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
0.1.63 5 5/3/2024
0.1.62 77 4/22/2024
0.1.61 86 4/15/2024
0.1.60 82 4/12/2024
0.1.58 77 3/26/2024
0.1.57 102 3/25/2024
0.1.56 81 3/22/2024
0.1.55 105 2/23/2024
0.1.54 98 2/23/2024
0.1.53 95 2/22/2024
0.1.52 80 2/19/2024
0.1.51 85 1/26/2024
0.1.50 111 1/5/2024
0.1.49 103 12/14/2023
0.1.48 103 12/14/2023
0.1.47 101 12/14/2023

project semantics types api
name Semantics Types API

release 0.0.0
* Initial release
* Feature: Added functionality to create and retrieve semantics types