diff --git a/LICENSE b/LICENSE index e2d54aa6a..af86f33b1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Peter Kurhajec and Contributors +Copyright (c) 2022 MTS spol. s r.o. and Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 07af51f88..7dcb8d400 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ ![AXOpen Banner](/docfx/images/banner.png) -[![dev](https://github.com/ix-ax/AXOpen/actions/workflows/dev.yml/badge.svg)](https://github.com/ix-ax/AXOpen/actions/workflows/dev.yml) -[![preview](https://github.com/ix-ax/AXOpen/actions/workflows/release.yml/badge.svg?branch=releases%2Fv0)](https://github.com/ix-ax/AXOpen/actions/workflows/release.yml) -[![master](https://github.com/ix-ax/AXOpen/actions/workflows/master.yml/badge.svg?branch=master)](https://github.com/ix-ax/AXOpen/actions/workflows/master.yml) +[![dev](https://github.com/inxton/AXOpen/actions/workflows/dev.yml/badge.svg)](https://github.com/inxton/AXOpen/actions/workflows/dev.yml) +[![preview](https://github.com/inxton/AXOpen/actions/workflows/release.yml/badge.svg?branch=releases%2Fv0)](https://github.com/inxton/AXOpen/actions/workflows/release.yml) +[![master](https://github.com/inxton/AXOpen/actions/workflows/master.yml/badge.svg?branch=master)](https://github.com/inxton/AXOpen/actions/workflows/master.yml) ![semver](https://img.shields.io/badge/semver-0.10.0-blue) -[![GitHub license](https://badgen.net/github/license/Naereen/Strapdown.js)](https://github.com/ix-ax/AXOpen/blob/dev/LICENSE) +[![GitHub license](https://badgen.net/github/license/Naereen/Strapdown.js)](https://github.com/inxton/AXOpen/blob/dev/LICENSE) -`AXOpen` (AXO) is an application framework for industrial automation applications. This project leverages the capabilities of [SIMATIC AX](https://simatic-ax.siemens.io) and [AX#](https://github.com/ix-ax/AXSharp), amalgamating their unique strengths to deliver a high level of OT IT convergence. +`AXOpen` (AXO) is an application framework for industrial automation applications. This project leverages the capabilities of [SIMATIC AX](https://simatic-ax.siemens.io) and [AX#](https://github.com/inxton/AXSharp), amalgamating their unique strengths to deliver a high level of OT IT convergence. `AXOpen` is developed primarily as an application framework for and within [MTS](https://mts.sk/en). We opened this repository to share our knowledge and experience with the community of like-minded automation engineers, who see the potential in using software engineering approaches and workflows for industrial automation. @@ -28,7 +28,7 @@ The guiding principle in `AXOpen` is **Single Point Of Change**. The idea is tha In the same way, any modification of a structure destined to be a source of data for an arbitrary target storage system should reflect automatically through multiple layers up to the target structure. -To achieve this level of scalability, `AXOpen` uses [AX#](https://github.com/ix-ax/AXSharp) which provides a transpiler that creates a .NET **twin** library for an ax-based project. The .NET twin reflects all types and project structures to allow for easy two-way structured access to the controller. The library can be regenerated on the fly with each change of the source project. These twin objects are then used by presentation libraries to generate HMI/UI or allow for mapping objects directly to the database. +To achieve this level of scalability, `AXOpen` uses [AX#](https://github.com/inxton/AXSharp) which provides a transpiler that creates a .NET **twin** library for an ax-based project. The .NET twin reflects all types and project structures to allow for easy two-way structured access to the controller. The library can be regenerated on the fly with each change of the source project. These twin objects are then used by presentation libraries to generate HMI/UI or allow for mapping objects directly to the database. ## DEclarative COntrol Programming - DeCoP @@ -42,7 +42,7 @@ A simple example could be a component of a pneumatic cylinder where the call of `AXOpen` is designed to simplify the development of industrial automation by covering a broad spectrum of areas. These include coordination (e.g., sequential control), alarm/messaging, components (pneumatics, vision, robotics, etc.), data acquisition, and various utility libraries. -Moreover, AXOpen comprises powerful tools that expedite the development of HMI/UI applications. It builds upon web technologies (Blazor) and the incredibly powerful [AX# library](https://ix-ax.github.io/axsharp/articles/blazor/RENDERABLECONTENT.html) for the automated generation of user interfaces. Each library/component within AXOpen comes equipped with ready-to-use visual components, enabling swift deployment in any human-machine interface scenario. Though we develop HMI/UI controls based on `Blazor` technology, we keep the design open to other UI technologies from the .NET ecosystem. +Moreover, AXOpen comprises powerful tools that expedite the development of HMI/UI applications. It builds upon web technologies (Blazor) and the incredibly powerful [AX# library](https://inxton.github.io/axsharp/articles/blazor/RENDERABLECONTENT.html) for the automated generation of user interfaces. Each library/component within AXOpen comes equipped with ready-to-use visual components, enabling swift deployment in any human-machine interface scenario. Though we develop HMI/UI controls based on `Blazor` technology, we keep the design open to other UI technologies from the .NET ecosystem. ## Tasks @@ -102,7 +102,7 @@ We are planning the first pilot project using `AXOpen` in the coming months. Onc ## Documentation -In parallel with the project's advancement, we are incrementally building the [documentation](https://ix-ax.github.io/AXOpen/). We invite you to visit the link if you wish to learn more about AXOpen. +In parallel with the project's advancement, we are incrementally building the [documentation](https://inxton.github.io/AXOpen/). We invite you to visit the link if you wish to learn more about AXOpen. ## About the Repository diff --git a/cake/ApaxCmd.cs b/cake/ApaxCmd.cs index d31033977..ae869a10f 100644 --- a/cake/ApaxCmd.cs +++ b/cake/ApaxCmd.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using System; using System.Collections; diff --git a/cake/ApaxTraversal.cs b/cake/ApaxTraversal.cs index cb6e30c5a..067c2d4ea 100644 --- a/cake/ApaxTraversal.cs +++ b/cake/ApaxTraversal.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c)2024 Peter Kurhajec and Contributors All Rights Reserved. -// Contributors: https://github.com/PTKu/ix/graphs/contributors +// Copyright (c)2024 MTS spol. s r.o. and Contributors All Rights Reserved. +// Contributors: https://github.com/inxton/axopen/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/PTKu/ix/blob/master/LICENSE -// Third party licenses: https://github.com/PTKu/ix/blob/master/notices.md +// https://github.com/inxton/axopen/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/axopen/blob/master/notices.md using System; using System.Collections.Generic; @@ -92,9 +92,9 @@ private static void CreateDependenciesFile(List dependencies, stri var dependenciesDictionary = new Dictionary(); foreach (var dependency in dependencies.Where(p => p.Name != "apax.traversal" - && p.Name != "@ix-ax/ax-sdk" + && p.Name != "@inxton/ax-sdk" && !p.Name.EndsWith("-test") - && p.Name != "ix-ax")) + && p.Name != "inxton")) { if (!dependenciesDictionary.ContainsKey(dependency.Name)) { @@ -107,7 +107,7 @@ private static void CreateDependenciesFile(List dependencies, stri type = "app", targets = new string[] {"llvm"}, devDependencies = new Dictionary() - { {"@ix-ax/ax-sdk", dependencies.First(p => p.Name == "@ix-ax/ax-sdk").Version} }, + { {"@inxton/ax-sdk", dependencies.First(p => p.Name == "@inxton/ax-sdk").Version} }, dependencies = dependenciesDictionary, installStrategy = "overridable"}); diff --git a/cake/BuildContext.cs b/cake/BuildContext.cs index e01f62d95..e9b1fce7f 100644 --- a/cake/BuildContext.cs +++ b/cake/BuildContext.cs @@ -1,8 +1,8 @@ -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using System.Collections; using System.Collections.Generic; @@ -33,7 +33,7 @@ public class BuildContext : FrostingContext public bool IsGitHubActions { get; set; } - public string ApaxRegistry => "ix-ax"; + public string ApaxRegistry => "inxton"; public void UpdateApaxVersion(string file, string version) { diff --git a/cake/BuildFailedException.cs b/cake/BuildFailedException.cs index f69f78fa4..e4bf14f37 100644 --- a/cake/BuildFailedException.cs +++ b/cake/BuildFailedException.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using System; diff --git a/cake/BuildParameters.cs b/cake/BuildParameters.cs index ec1154e79..6e00b52a6 100644 --- a/cake/BuildParameters.cs +++ b/cake/BuildParameters.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using Cake.Common.Tools.DotNet; using CommandLine; diff --git a/cake/DotNetCmd.cs b/cake/DotNetCmd.cs index 36fe9349b..5cf571fac 100644 --- a/cake/DotNetCmd.cs +++ b/cake/DotNetCmd.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using System; using System.Collections; diff --git a/cake/FilteredSolution/FilteredSolution.cs b/cake/FilteredSolution/FilteredSolution.cs index e7db360c9..240858fec 100644 --- a/cake/FilteredSolution/FilteredSolution.cs +++ b/cake/FilteredSolution/FilteredSolution.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using System.Collections.Generic; using System.IO; diff --git a/cake/FilteredSolution/SolutionRoot.cs b/cake/FilteredSolution/SolutionRoot.cs index 845444345..1356a83fb 100644 --- a/cake/FilteredSolution/SolutionRoot.cs +++ b/cake/FilteredSolution/SolutionRoot.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using Build.FilteredSolution; diff --git a/cake/Helpers.cs b/cake/Helpers.cs index 4a4c63855..51124509f 100644 --- a/cake/Helpers.cs +++ b/cake/Helpers.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using Polly; using System; diff --git a/cake/Program.cs b/cake/Program.cs index bdffa1873..6b875e04d 100644 --- a/cake/Program.cs +++ b/cake/Program.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using System; @@ -883,7 +883,7 @@ public override void Run(BuildContext context) new Cake.Common.Tools.DotNet.NuGet.Push.DotNetNuGetPushSettings() { ApiKey = context.GitHubToken, - Source = "https://nuget.pkg.github.com/ix-ax/index.json", + Source = "https://nuget.pkg.github.com/inxton/index.json", SkipDuplicate = true }); } @@ -910,7 +910,7 @@ public override void Run(BuildContext context) githubClient.Credentials = new Credentials(githubToken); var release = githubClient.Repository.Release.Create( - "ix-ax", + "inxton", "AXOpen", new NewRelease($"{GitVersionInformation.SemVer}") { diff --git a/cake/PublishFailedException.cs b/cake/PublishFailedException.cs index cc04ef468..9ef14246a 100644 --- a/cake/PublishFailedException.cs +++ b/cake/PublishFailedException.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using System; diff --git a/cake/TestFailedException.cs b/cake/TestFailedException.cs index 42621a054..b148e5745 100644 --- a/cake/TestFailedException.cs +++ b/cake/TestFailedException.cs @@ -1,9 +1,9 @@ // Build -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using System; diff --git a/docfx/articles/notes/APAX_PACAKGE_GENERAL.md b/docfx/articles/notes/APAX_PACAKGE_GENERAL.md index 425661205..e3e90ce02 100644 --- a/docfx/articles/notes/APAX_PACAKGE_GENERAL.md +++ b/docfx/articles/notes/APAX_PACAKGE_GENERAL.md @@ -14,7 +14,7 @@ Add registry to your `apax.yml` file. ~~~yml registries: - "@ix-ax": https://npm.pkg.github.com/ + "@inxton": https://npm.pkg.github.com/ ~~~ >[!NOTE] diff --git a/docfx/articles/notes/LIBRARYHEADER.md b/docfx/articles/notes/LIBRARYHEADER.md index 63a747148..499106eb5 100644 --- a/docfx/articles/notes/LIBRARYHEADER.md +++ b/docfx/articles/notes/LIBRARYHEADER.md @@ -2,13 +2,13 @@ **Additional Resources:** -* [AX# Official Documentation](https://ix-ax.github.io/axsharp/) +* [AX# Official Documentation](https://inxton.github.io/axsharp/) * [UI Rendering Guide](../rendering/intro.md) > [!NOTE] > This document's content is synchronized with the source code of this library. Please note that the images and illustrative visuals included may not mirror the exact appearance in your application. > [!NOTE] -> Should you identify errors, misleading content, or gaps in this documentation, kindly report the **[issue here](https://github.com/ix-ax/AXOpen/issues/new?assignees=&labels=documentation&projects=&template=documentation.md&title=)**. Alternatively, you're welcome to suggest edits directly by initiating a pull request in **[this repository](https://github.com/ix-ax/AXOpen)**. +> Should you identify errors, misleading content, or gaps in this documentation, kindly report the **[issue here](https://github.com/inxton/AXOpen/issues/new?assignees=&labels=documentation&projects=&template=documentation.md&title=)**. Alternatively, you're welcome to suggest edits directly by initiating a pull request in **[this repository](https://github.com/inxton/AXOpen)**. --- \ No newline at end of file diff --git a/docfx/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.md b/docfx/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.md index 1c7fc427a..d4821d982 100644 --- a/docfx/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.md +++ b/docfx/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.md @@ -7,7 +7,7 @@ This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation [here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry). ~~~bash -dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json" +dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json" ~~~ Replace GITHUBUSERNAME with your github name diff --git a/docfx/articles/notes/NUGET_PACAKGE_GENERAL.md b/docfx/articles/notes/NUGET_PACAKGE_GENERAL.md index 1c7fc427a..d4821d982 100644 --- a/docfx/articles/notes/NUGET_PACAKGE_GENERAL.md +++ b/docfx/articles/notes/NUGET_PACAKGE_GENERAL.md @@ -7,7 +7,7 @@ This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation [here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry). ~~~bash -dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json" +dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json" ~~~ Replace GITHUBUSERNAME with your github name diff --git a/docfx/articles/rendering/intro.md b/docfx/articles/rendering/intro.md index 4ce6518b9..d2eba44bc 100644 --- a/docfx/articles/rendering/intro.md +++ b/docfx/articles/rendering/intro.md @@ -1,12 +1,12 @@ # Automatic Rendering with AXOpen -AXOpen leverages [AX# rendering](https://ix-ax.github.io/axsharp/articles/blazor/RENDERABLECONTENT.html) to enable a variety of advanced features. +AXOpen leverages [AX# rendering](https://inxton.github.io/axsharp/articles/blazor/RENDERABLECONTENT.html) to enable a variety of advanced features. This document provides foundational information regarding the presentation methods used within AXOpen. ## Renderable Content Control -While [presentation modes in AX#](https://ix-ax.github.io/axsharp/articles/blazor/RENDERABLECONTENT.html#presentation-types) offer several options, AXOpen introduces additional presentation types: +While [presentation modes in AX#](https://inxton.github.io/axsharp/articles/blazor/RENDERABLECONTENT.html#presentation-types) offer several options, AXOpen introduces additional presentation types: | Presentation Type | Description | | ----------------- | -------------------------------------------------------------------------------------------- | diff --git a/docfx/docfx.json b/docfx/docfx.json index c6af813a3..791def580 100644 --- a/docfx/docfx.json +++ b/docfx/docfx.json @@ -38,14 +38,14 @@ "globalMetadata" : { "_appTitle" : {"api/index.md" : "API"}, "_appName" : "", - "_appFooter" : " Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors", + "_appFooter" : " Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors", "_enableSearch" : true, "_appFaviconPath" : "images/favicon.ico", "_appLogoPath" : "images/logo.svg" }, "sitemap": { - "baseUrl": "https://ix-ax.github.io/AXOpen/", + "baseUrl": "https://inxton.github.io/AXOpen/", "priority": 0.1, "changefreq": "weekly" }, diff --git a/docfx/index.md b/docfx/index.md index 3a586e24d..4262a7807 100644 --- a/docfx/index.md +++ b/docfx/index.md @@ -8,8 +8,8 @@ ## Source repositories -- Underlying technology of AXOpen **[AX#](https://github.com/ix-ax/axsharp)** -- Sources of AXOpen framework **[AXOpen](https://github.com/ix-ax/AXOpen)** +- Underlying technology of AXOpen **[AX#](https://github.com/inxton/axsharp)** +- Sources of AXOpen framework **[AXOpen](https://github.com/inxton/AXOpen)** >[!NOTE] >This project is under development. We periodically release versions that can be used for testing and in non-production environments. diff --git a/docs/NUGET-README.html b/docs/NUGET-README.html index 76db7ec0f..421dfa995 100644 --- a/docs/NUGET-README.html +++ b/docs/NUGET-README.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

AXOpen

@@ -110,7 +110,7 @@

AXOpen

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/README.html b/docs/README.html index afa7d1ff5..3768fa39c 100644 --- a/docs/README.html +++ b/docs/README.html @@ -15,7 +15,7 @@ - + @@ -98,7 +98,7 @@

Pre-requisites

Add package source

To get access to the packages from AX# and AXOpen you will need to authenticate to a dedicated package feed hosted on GitHub. Authentication is free. If you do not have a GitHub account please consider creating one by signing up at https://github.com.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -252,7 +252,7 @@
Important
@@ -269,7 +269,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/Security/README.html b/docs/Security/README.html index e9596faf4..ffcfdd803 100644 --- a/docs/Security/README.html +++ b/docs/Security/README.html @@ -15,7 +15,7 @@ - + @@ -158,7 +158,7 @@

Use of AuthenticationStateProvider @@ -175,7 +175,7 @@

Use of AuthenticationStateProvider
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/Security/docs/INSTALLATION.html b/docs/Security/docs/INSTALLATION.html index 000532b51..db2271125 100644 --- a/docs/Security/docs/INSTALLATION.html +++ b/docs/Security/docs/INSTALLATION.html @@ -15,7 +15,7 @@ - + @@ -202,7 +202,7 @@

Default login

@@ -219,7 +219,7 @@

Default login

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/Security/index.html b/docs/Security/index.html index 0d87a32bb..5f0995e10 100644 --- a/docs/Security/index.html +++ b/docs/Security/index.html @@ -15,7 +15,7 @@ - + @@ -158,7 +158,7 @@

Use of AuthenticationStateProvider @@ -175,7 +175,7 @@

Use of AuthenticationStateProvider
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/Security/integrations/axopen_blazor_auth_app/wwwroot/css/open-iconic/README.html b/docs/Security/integrations/axopen_blazor_auth_app/wwwroot/css/open-iconic/README.html index 63cadf2eb..8d5c0e0c2 100644 --- a/docs/Security/integrations/axopen_blazor_auth_app/wwwroot/css/open-iconic/README.html +++ b/docs/Security/integrations/axopen_blazor_auth_app/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html b/docs/abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html index 85ec59e5e..605e8f057 100644 --- a/docs/abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.AxoApplication.html b/docs/api/AXOpen.AxoApplication.html index d8bdeb5d1..fad4dc6f2 100644 --- a/docs/api/AXOpen.AxoApplication.html +++ b/docs/api/AXOpen.AxoApplication.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoApplication - +

@@ -176,7 +176,7 @@

Properties

Current - +

Get currently running application.

@@ -208,7 +208,7 @@

Property Value

Logger - +

Gets logger configured for this application.

@@ -244,7 +244,7 @@

Methods

Build() - +

Builds an AxoApplication.

@@ -277,7 +277,7 @@

Returns

ConfigureLogger(ILogger) - +

Configures logger for an AxoApplication

@@ -316,7 +316,7 @@

Returns

CreateBuilder() - +

@@ -347,7 +347,7 @@

Returns

@@ -363,7 +363,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.DataBrowser-1.html b/docs/api/AXOpen.Base.Data.DataBrowser-1.html index 91cb0881b..89ef34730 100644 --- a/docs/api/AXOpen.Base.Data.DataBrowser-1.html +++ b/docs/api/AXOpen.Base.Data.DataBrowser-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DataBrowser<T> - +

@@ -179,7 +179,7 @@

Constructors

DataBrowser(IRepository<T>) - +

@@ -214,7 +214,7 @@

Properties

Count - +

@@ -245,7 +245,7 @@

Property Value

Records - +

@@ -276,7 +276,7 @@

Property Value

Repository - +

@@ -311,7 +311,7 @@

Methods

AddRecord(T) - +

@@ -342,7 +342,7 @@

Parameters

Delete(T) - +

@@ -373,7 +373,7 @@

Parameters

Export(Expression<Func<T, bool>>, char) - +

@@ -411,7 +411,7 @@

Returns

Filter(string, int, int, eSearchMode) - +

@@ -448,7 +448,7 @@

Parameters

FilteredCount(string, eSearchMode) - +

@@ -486,7 +486,7 @@

Returns

FindByCreatedRange(DateTime, DateTime) - +

@@ -524,7 +524,7 @@

Returns

FindById(string) - +

@@ -560,7 +560,7 @@

Returns

FindByModifiedRange(DateTime, DateTime) - +

@@ -598,7 +598,7 @@

Returns

GetRecords(Expression<Func<T, bool>>) - +

@@ -634,7 +634,7 @@

Returns

Import(IEnumerable<string>, ITwinObject, char) - +

@@ -669,7 +669,7 @@

Parameters

UpdateRecord(T) - +

@@ -705,7 +705,7 @@

Returns

@@ -721,7 +721,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.DataBrowser.html b/docs/api/AXOpen.Base.Data.DataBrowser.html index ee059880a..5a42c0402 100644 --- a/docs/api/AXOpen.Base.Data.DataBrowser.html +++ b/docs/api/AXOpen.Base.Data.DataBrowser.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DataBrowser - +

@@ -161,7 +161,7 @@

Methods

Create<T>(IRepository<T>) - +

@@ -202,7 +202,7 @@

Type Parameters

Factory<T>(IRepository<T>) - +

@@ -243,7 +243,7 @@

Type Parameters

@@ -259,7 +259,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.DataHelpers.html b/docs/api/AXOpen.Base.Data.DataHelpers.html index f2616829d..8a0cf7281 100644 --- a/docs/api/AXOpen.Base.Data.DataHelpers.html +++ b/docs/api/AXOpen.Base.Data.DataHelpers.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DataHelpers - +

@@ -161,7 +161,7 @@

Methods

CreateUid() - +

@@ -192,7 +192,7 @@

Returns

@@ -208,7 +208,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.DataItemValidation.html b/docs/api/AXOpen.Base.Data.DataItemValidation.html index 145c8b6eb..ea854f695 100644 --- a/docs/api/AXOpen.Base.Data.DataItemValidation.html +++ b/docs/api/AXOpen.Base.Data.DataItemValidation.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DataItemValidation - +

@@ -169,7 +169,7 @@

Constructors

DataItemValidation(string, bool) - +

Creates new instance of DataItemValidation

@@ -209,7 +209,7 @@

Properties

Error - +

Get validation error description.

@@ -241,7 +241,7 @@

Property Value

Failed - +

Gets failed when the validation failed.

@@ -273,7 +273,7 @@

Property Value

@@ -289,7 +289,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.DateTimeProviderBase.html b/docs/api/AXOpen.Base.Data.DateTimeProviderBase.html index e850693ea..43059a084 100644 --- a/docs/api/AXOpen.Base.Data.DateTimeProviderBase.html +++ b/docs/api/AXOpen.Base.Data.DateTimeProviderBase.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DateTimeProviderBase - +

@@ -174,7 +174,7 @@

Constructors

DateTimeProviderBase() - +

@@ -204,7 +204,7 @@

Properties

Now - +

@@ -235,7 +235,7 @@

Property Value

@@ -251,7 +251,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.DateTimeProviders.html b/docs/api/AXOpen.Base.Data.DateTimeProviders.html index 23225ce23..f0ab06d24 100644 --- a/docs/api/AXOpen.Base.Data.DateTimeProviders.html +++ b/docs/api/AXOpen.Base.Data.DateTimeProviders.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DateTimeProviders - +

@@ -161,7 +161,7 @@

Properties

DateTimeProvider - +

@@ -192,7 +192,7 @@

Property Value

@@ -208,7 +208,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.DelegateAlreadySetException.html b/docs/api/AXOpen.Base.Data.DelegateAlreadySetException.html index 31589af70..47ca8d410 100644 --- a/docs/api/AXOpen.Base.Data.DelegateAlreadySetException.html +++ b/docs/api/AXOpen.Base.Data.DelegateAlreadySetException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DelegateAlreadySetException - +

@@ -208,7 +208,7 @@

Constructors

DelegateAlreadySetException() - +

When you try to set a delegate that has already been set elsewhere this exception will occur. @@ -238,7 +238,7 @@

- Edit this page + Edit this page

@@ -254,7 +254,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.DuplicateIdException.html b/docs/api/AXOpen.Base.Data.DuplicateIdException.html index 593fc61e1..bc51315cf 100644 --- a/docs/api/AXOpen.Base.Data.DuplicateIdException.html +++ b/docs/api/AXOpen.Base.Data.DuplicateIdException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class DuplicateIdException - +

@@ -208,7 +208,7 @@

Constructors

DuplicateIdException(string, Exception) - +

@@ -241,7 +241,7 @@

Parameters

@@ -257,7 +257,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.IBrowsableDataObject.html b/docs/api/AXOpen.Base.Data.IBrowsableDataObject.html index cc96bed63..5e2a31a56 100644 --- a/docs/api/AXOpen.Base.Data.IBrowsableDataObject.html +++ b/docs/api/AXOpen.Base.Data.IBrowsableDataObject.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IBrowsableDataObject - +

@@ -136,7 +136,7 @@

Properties

DataEntityId - +

@@ -167,7 +167,7 @@

Property Value

RecordId - +

@@ -198,7 +198,7 @@

Property Value

@@ -214,7 +214,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.IDataBrowser.html b/docs/api/AXOpen.Base.Data.IDataBrowser.html index 161931e9c..a5bbbdacd 100644 --- a/docs/api/AXOpen.Base.Data.IDataBrowser.html +++ b/docs/api/AXOpen.Base.Data.IDataBrowser.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IDataBrowser - +

@@ -136,7 +136,7 @@

Properties

Count - +

@@ -167,7 +167,7 @@

Property Value

Records - +

@@ -202,7 +202,7 @@

Methods

AddRecord(object) - +

@@ -233,7 +233,7 @@

Parameters

CreateEmpty() - +

@@ -264,7 +264,7 @@

Returns

Delete(object) - +

@@ -295,7 +295,7 @@

Parameters

Filter(string, int, int, eSearchMode) - +

@@ -332,7 +332,7 @@

Parameters

FilteredCount(string, eSearchMode) - +

@@ -370,7 +370,7 @@

Returns

FindByCreatedRange(DateTime, DateTime) - +

@@ -408,7 +408,7 @@

Returns

FindById(string) - +

@@ -444,7 +444,7 @@

Returns

FindByModifiedRange(DateTime, DateTime) - +

@@ -482,7 +482,7 @@

Returns

UpdateRecord(object) - +

@@ -513,7 +513,7 @@

Parameters

@@ -529,7 +529,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.IPlainExtensions.html b/docs/api/AXOpen.Base.Data.IPlainExtensions.html index 098ffbb07..cdcad1efc 100644 --- a/docs/api/AXOpen.Base.Data.IPlainExtensions.html +++ b/docs/api/AXOpen.Base.Data.IPlainExtensions.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class IPlainExtensions - +

@@ -161,7 +161,7 @@

Methods

ShadowToPlain1<T>(object, ITwinObject) - +

@@ -204,7 +204,7 @@

Type Parameters

@@ -220,7 +220,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.IRepository-1.html b/docs/api/AXOpen.Base.Data.IRepository-1.html index 76b27eff5..5e8f0e4b6 100644 --- a/docs/api/AXOpen.Base.Data.IRepository-1.html +++ b/docs/api/AXOpen.Base.Data.IRepository-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IRepository<T> - +

@@ -141,7 +141,7 @@

Properties

Count - +

@@ -172,7 +172,7 @@

Property Value

OnCreate - +

@@ -203,7 +203,7 @@

Property Value

OnCreateDone - +

@@ -234,7 +234,7 @@

Property Value

OnCreateFailed - +

@@ -265,7 +265,7 @@

Property Value

OnDelete - +

@@ -296,7 +296,7 @@

Property Value

OnDeleteDone - +

@@ -327,7 +327,7 @@

Property Value

OnDeleteFailed - +

@@ -358,7 +358,7 @@

Property Value

OnRead - +

@@ -389,7 +389,7 @@

Property Value

OnReadDone - +

@@ -420,7 +420,7 @@

Property Value

OnReadFailed - +

@@ -451,7 +451,7 @@

Property Value

OnRecordUpdateValidation - +

@@ -482,7 +482,7 @@

Property Value

OnUpdate - +

@@ -513,7 +513,7 @@

Property Value

OnUpdateDone - +

@@ -544,7 +544,7 @@

Property Value

OnUpdateFailed - +

@@ -575,7 +575,7 @@

Property Value

Queryable - +

@@ -610,7 +610,7 @@

Methods

Create(string, T) - +

@@ -643,7 +643,7 @@

Parameters

Delete(string) - +

@@ -674,7 +674,7 @@

Parameters

Exists(string) - +

@@ -710,7 +710,7 @@

Returns

FilteredCount(string, eSearchMode) - +

@@ -748,7 +748,7 @@

Returns

GetRecords(string, int, int, eSearchMode) - +

@@ -790,7 +790,7 @@

Returns

Read(string) - +

@@ -826,7 +826,7 @@

Returns

Update(string, T) - +

@@ -859,7 +859,7 @@

Parameters

@@ -875,7 +875,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.IRepository.html b/docs/api/AXOpen.Base.Data.IRepository.html index fea56a9dd..d55ad6e2e 100644 --- a/docs/api/AXOpen.Base.Data.IRepository.html +++ b/docs/api/AXOpen.Base.Data.IRepository.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IRepository - +

@@ -136,7 +136,7 @@

Properties

Count - +

@@ -171,7 +171,7 @@

Methods

Create(string, object) - +

@@ -204,7 +204,7 @@

Parameters

Delete(string) - +

@@ -235,7 +235,7 @@

Parameters

Exists(string) - +

@@ -271,7 +271,7 @@

Returns

FilteredCount(string, eSearchMode) - +

@@ -309,7 +309,7 @@

Returns

Read(string) - +

@@ -345,7 +345,7 @@

Returns

Update(string, object) - +

@@ -378,7 +378,7 @@

Parameters

@@ -394,7 +394,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.IdentifierValueMismatchedException.html b/docs/api/AXOpen.Base.Data.IdentifierValueMismatchedException.html index a04c35e0c..bc163a50e 100644 --- a/docs/api/AXOpen.Base.Data.IdentifierValueMismatchedException.html +++ b/docs/api/AXOpen.Base.Data.IdentifierValueMismatchedException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class IdentifierValueMismatchedException - +

@@ -209,7 +209,7 @@

Constructors

IdentifierValueMismatchedException() - +

@@ -235,7 +235,7 @@

IdentifierValueMismatchedException(SerializationInfo, StreamingContext) - +

Initializes a new instance of the IdentifierValueMismatchedException class with serialized data.

@@ -280,7 +280,7 @@

Exceptions

IdentifierValueMismatchedException(string, Exception) - +

Initializes a new instance of the IdentifierValueMismatchedException class with a specified error message and a reference to the inner exception that is the cause of this exception.

@@ -316,7 +316,7 @@

Parameters

IdentifierValueMismatchedException(string) - +

Initializes a new instance of the IdentifierValueMismatchedException class with a specified error message.

@@ -349,7 +349,7 @@

Parameters

@@ -365,7 +365,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnCreateDelegate-1.html b/docs/api/AXOpen.Base.Data.OnCreateDelegate-1.html index 96c05f4ca..2357bf2c1 100644 --- a/docs/api/AXOpen.Base.Data.OnCreateDelegate-1.html +++ b/docs/api/AXOpen.Base.Data.OnCreateDelegate-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnCreateDelegate<T> - +

@@ -144,7 +144,7 @@

Type Parameters

@@ -160,7 +160,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnCreateDoneDelegate-1.html b/docs/api/AXOpen.Base.Data.OnCreateDoneDelegate-1.html index 152f7fcf8..56712cc03 100644 --- a/docs/api/AXOpen.Base.Data.OnCreateDoneDelegate-1.html +++ b/docs/api/AXOpen.Base.Data.OnCreateDoneDelegate-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnCreateDoneDelegate<T> - +

@@ -144,7 +144,7 @@

Type Parameters

@@ -160,7 +160,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnCreateFailedDelegate-1.html b/docs/api/AXOpen.Base.Data.OnCreateFailedDelegate-1.html index 25f2c1031..0c8d20264 100644 --- a/docs/api/AXOpen.Base.Data.OnCreateFailedDelegate-1.html +++ b/docs/api/AXOpen.Base.Data.OnCreateFailedDelegate-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnCreateFailedDelegate<T> - +

@@ -146,7 +146,7 @@

Type Parameters

@@ -162,7 +162,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnDeleteDelegate.html b/docs/api/AXOpen.Base.Data.OnDeleteDelegate.html index 94236ca78..92ba7e96d 100644 --- a/docs/api/AXOpen.Base.Data.OnDeleteDelegate.html +++ b/docs/api/AXOpen.Base.Data.OnDeleteDelegate.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnDeleteDelegate - +

@@ -137,7 +137,7 @@

Parameters

@@ -153,7 +153,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnDeleteDoneDelegate.html b/docs/api/AXOpen.Base.Data.OnDeleteDoneDelegate.html index ead710f20..38ab56016 100644 --- a/docs/api/AXOpen.Base.Data.OnDeleteDoneDelegate.html +++ b/docs/api/AXOpen.Base.Data.OnDeleteDoneDelegate.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnDeleteDoneDelegate - +

@@ -137,7 +137,7 @@

Parameters

@@ -153,7 +153,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnDeleteFailedDelegate.html b/docs/api/AXOpen.Base.Data.OnDeleteFailedDelegate.html index f7369ac79..4ca46e671 100644 --- a/docs/api/AXOpen.Base.Data.OnDeleteFailedDelegate.html +++ b/docs/api/AXOpen.Base.Data.OnDeleteFailedDelegate.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnDeleteFailedDelegate - +

@@ -139,7 +139,7 @@

Parameters

@@ -155,7 +155,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnReadDelegate.html b/docs/api/AXOpen.Base.Data.OnReadDelegate.html index 054eec638..5cd62b66c 100644 --- a/docs/api/AXOpen.Base.Data.OnReadDelegate.html +++ b/docs/api/AXOpen.Base.Data.OnReadDelegate.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnReadDelegate - +

@@ -137,7 +137,7 @@

Parameters

@@ -153,7 +153,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnReadDoneDelegate-1.html b/docs/api/AXOpen.Base.Data.OnReadDoneDelegate-1.html index d4901d816..f819cc8cb 100644 --- a/docs/api/AXOpen.Base.Data.OnReadDoneDelegate-1.html +++ b/docs/api/AXOpen.Base.Data.OnReadDoneDelegate-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnReadDoneDelegate<T> - +

@@ -144,7 +144,7 @@

Type Parameters

@@ -160,7 +160,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnReadFailedDelegate.html b/docs/api/AXOpen.Base.Data.OnReadFailedDelegate.html index a6a9c0bad..5893d29e4 100644 --- a/docs/api/AXOpen.Base.Data.OnReadFailedDelegate.html +++ b/docs/api/AXOpen.Base.Data.OnReadFailedDelegate.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnReadFailedDelegate - +

@@ -139,7 +139,7 @@

Parameters

@@ -155,7 +155,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnUpdateDelegate-1.html b/docs/api/AXOpen.Base.Data.OnUpdateDelegate-1.html index 3c90b9a89..6384d6ef5 100644 --- a/docs/api/AXOpen.Base.Data.OnUpdateDelegate-1.html +++ b/docs/api/AXOpen.Base.Data.OnUpdateDelegate-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnUpdateDelegate<T> - +

@@ -144,7 +144,7 @@

Type Parameters

@@ -160,7 +160,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnUpdateDoneDelegate-1.html b/docs/api/AXOpen.Base.Data.OnUpdateDoneDelegate-1.html index 4b0c97a4b..a8add9ead 100644 --- a/docs/api/AXOpen.Base.Data.OnUpdateDoneDelegate-1.html +++ b/docs/api/AXOpen.Base.Data.OnUpdateDoneDelegate-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnUpdateDoneDelegate<T> - +

@@ -144,7 +144,7 @@

Type Parameters

@@ -160,7 +160,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.OnUpdateFailedDelegate-1.html b/docs/api/AXOpen.Base.Data.OnUpdateFailedDelegate-1.html index 68342d795..36a9d465f 100644 --- a/docs/api/AXOpen.Base.Data.OnUpdateFailedDelegate-1.html +++ b/docs/api/AXOpen.Base.Data.OnUpdateFailedDelegate-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate OnUpdateFailedDelegate<T> - +

@@ -146,7 +146,7 @@

Type Parameters

@@ -162,7 +162,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.RepositoryBase-1.html b/docs/api/AXOpen.Base.Data.RepositoryBase-1.html index 03207f235..17e959561 100644 --- a/docs/api/AXOpen.Base.Data.RepositoryBase-1.html +++ b/docs/api/AXOpen.Base.Data.RepositoryBase-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class RepositoryBase<T> - +

@@ -191,7 +191,7 @@

Properties

Count - +

Gets the number of records/documents in the repository.

@@ -223,7 +223,7 @@

Property Value

CountNvi - +

Counts the records/documents in the repository. (Concrete implementation of given repository type)

@@ -255,7 +255,7 @@

Property Value

OnCreate - +

Gets or sets delegate that executes prior to new entry into repository.

@@ -287,7 +287,7 @@

Property Value

OnCreateDone - +

Gets or sets delegate that executes after a new entry has been added sucesfully.

@@ -319,7 +319,7 @@

Property Value

OnCreateFailed - +

Gets or sets delegate that executes after a new entry has NOT been added sucesfully.

@@ -351,7 +351,7 @@

Property Value

OnDelete - +

Gets or sets delegate that executes prior to deleting existing record.

@@ -383,7 +383,7 @@

Property Value

OnDeleteDone - +

Gets or sets delegate that executes after an entry has been deleted sucesfully.

@@ -415,7 +415,7 @@

Property Value

OnDeleteFailed - +

Gets or sets delegate that executes after an entry has NOT been deleted sucesfully.

@@ -447,7 +447,7 @@

Property Value

OnRead - +

Gets or sets delegate that executes prior to new reading data from repository

@@ -479,7 +479,7 @@

Property Value

OnReadDone - +

Gets or sets delegate that executes after an entry has been read sucesfully.

@@ -511,7 +511,7 @@

Property Value

OnReadFailed - +

Gets or sets delegate that executes after an entry has NOT been read sucesfully.

@@ -543,7 +543,7 @@

Property Value

OnRecordUpdateValidation - +

@@ -574,7 +574,7 @@

Property Value

OnUpdate - +

Gets or sets delegate that executes prior to updating existing record.

@@ -606,7 +606,7 @@

Property Value

OnUpdateDone - +

Gets or sets delegate that executes after an entry has been updated sucesfully.

@@ -638,7 +638,7 @@

Property Value

OnUpdateFailed - +

Gets or sets delegate that executes after an entry has NOT been updated sucesfully.

@@ -670,7 +670,7 @@

Property Value

Queryable - +

Gets System.Linq.IQueryable of given repository.

@@ -706,7 +706,7 @@

Methods

Create(string, T) - +

Creates a new record/document in the repository.

@@ -742,7 +742,7 @@

Parameters

CreateNvi(string, T) - +

Creates a new record/document in the repository. (Concrete implementation of given repository type)

@@ -778,7 +778,7 @@

Parameters

Delete(string) - +

Deletes an existing record/document. (Concrete implementation of given repository type)

@@ -811,7 +811,7 @@

Parameters

DeleteNvi(string) - +

Deletes an existing record/document. (Concrete implementation of given repository type)

@@ -844,7 +844,7 @@

Parameters

Exists(string) - +

@@ -880,7 +880,7 @@

Returns

ExistsNvi(string) - +

Checks that the record with given identifier exists in the repository.

@@ -918,7 +918,7 @@

Returns

FilteredCount(string, eSearchMode) - +

Gets the count of the records/documents that contain given string in the identifier.

@@ -958,7 +958,7 @@

Returns

FilteredCountNvi(string, eSearchMode) - +

Counts records that contain given string in the id. (Concrete implementation of given repository type)

@@ -998,7 +998,7 @@

Returns

GetRecords(string, int, int, eSearchMode) - +

Gets System.Collections.Generic.IEnumerable<T> of repository entries that match the identifier.

@@ -1041,7 +1041,7 @@

Returns

GetRecordsNvi(string, int, int, eSearchMode) - +

Retrieves records/documents that contain given string in the identifier. (Concrete implementation of given repository type)

@@ -1087,7 +1087,7 @@

Returns

Read(string) - +

Reads en existing record/document from the repository.

@@ -1126,7 +1126,7 @@

Returns

ReadNvi(string) - +

Reads en existing record/document from the repository. (Concrete implementation of given repository type)

@@ -1165,7 +1165,7 @@

Returns

Update(string, T) - +

Updates an existing record/document.

@@ -1201,7 +1201,7 @@

Parameters

UpdateNvi(string, T) - +

Updates an existing record/document. (Concrete implementation of given repository type)

@@ -1237,7 +1237,7 @@

Parameters

@@ -1253,7 +1253,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.RepositoryNotInitializedException.html b/docs/api/AXOpen.Base.Data.RepositoryNotInitializedException.html index 112eb9fe9..80d8f5359 100644 --- a/docs/api/AXOpen.Base.Data.RepositoryNotInitializedException.html +++ b/docs/api/AXOpen.Base.Data.RepositoryNotInitializedException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class RepositoryNotInitializedException - +

@@ -208,7 +208,7 @@

Constructors

RepositoryNotInitializedException() - +

Initializes a new instance of the RepositoryNotInitializedException class.

@@ -235,7 +235,7 @@

RepositoryNotInitializedException(SerializationInfo, StreamingContext) - +

Initializes a new instance of the RepositoryNotInitializedException class with serialized data.

@@ -280,7 +280,7 @@

Exceptions

RepositoryNotInitializedException(string, Exception) - +

Initializes a new instance of the RepositoryNotInitializedException class with a specified error message and a reference to the inner exception that is the cause of this exception.

@@ -316,7 +316,7 @@

Parameters

RepositoryNotInitializedException(string) - +

Initializes a new instance of the RepositoryNotInitializedException class with a specified error message.

@@ -349,7 +349,7 @@

Parameters

@@ -365,7 +365,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.RepositorySettings.html b/docs/api/AXOpen.Base.Data.RepositorySettings.html index 0af03d666..1742d4aeb 100644 --- a/docs/api/AXOpen.Base.Data.RepositorySettings.html +++ b/docs/api/AXOpen.Base.Data.RepositorySettings.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class RepositorySettings - +

@@ -173,7 +173,7 @@

- Edit this page + Edit this page

@@ -189,7 +189,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.SearchOptions.html b/docs/api/AXOpen.Base.Data.SearchOptions.html index 1026080b0..22348d2b0 100644 --- a/docs/api/AXOpen.Base.Data.SearchOptions.html +++ b/docs/api/AXOpen.Base.Data.SearchOptions.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class SearchOptions - +

@@ -168,7 +168,7 @@

Properties

SearchMode - +

@@ -199,7 +199,7 @@

Property Value

@@ -215,7 +215,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.StandardDateTimeProvider.html b/docs/api/AXOpen.Base.Data.StandardDateTimeProvider.html index 78d250346..9436a83c9 100644 --- a/docs/api/AXOpen.Base.Data.StandardDateTimeProvider.html +++ b/docs/api/AXOpen.Base.Data.StandardDateTimeProvider.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class StandardDateTimeProvider - +

@@ -169,7 +169,7 @@

Properties

Now - +

@@ -200,7 +200,7 @@

Property Value

@@ -216,7 +216,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.UnableToLocateRecordId.html b/docs/api/AXOpen.Base.Data.UnableToLocateRecordId.html index 9a990bc85..4b616bacc 100644 --- a/docs/api/AXOpen.Base.Data.UnableToLocateRecordId.html +++ b/docs/api/AXOpen.Base.Data.UnableToLocateRecordId.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class UnableToLocateRecordId - +

@@ -208,7 +208,7 @@

Constructors

UnableToLocateRecordId(string, Exception) - +

@@ -241,7 +241,7 @@

Parameters

@@ -257,7 +257,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.UnableToUpdateRecord.html b/docs/api/AXOpen.Base.Data.UnableToUpdateRecord.html index feebafbf5..eda5bf636 100644 --- a/docs/api/AXOpen.Base.Data.UnableToUpdateRecord.html +++ b/docs/api/AXOpen.Base.Data.UnableToUpdateRecord.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class UnableToUpdateRecord - +

@@ -208,7 +208,7 @@

Constructors

UnableToUpdateRecord(string, Exception) - +

@@ -241,7 +241,7 @@

Parameters

@@ -257,7 +257,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.ValidateDataDelegate-1.html b/docs/api/AXOpen.Base.Data.ValidateDataDelegate-1.html index 548bbb17d..26bd6676c 100644 --- a/docs/api/AXOpen.Base.Data.ValidateDataDelegate-1.html +++ b/docs/api/AXOpen.Base.Data.ValidateDataDelegate-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate ValidateDataDelegate<T> - +

@@ -147,7 +147,7 @@

Type Parameters

@@ -163,7 +163,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.eSearchMode.html b/docs/api/AXOpen.Base.Data.eSearchMode.html index 692014d55..2039a75cc 100644 --- a/docs/api/AXOpen.Base.Data.eSearchMode.html +++ b/docs/api/AXOpen.Base.Data.eSearchMode.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eSearchMode - +

@@ -141,7 +141,7 @@

Fields @@ -157,7 +157,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Data.html b/docs/api/AXOpen.Base.Data.html index 6eee7a91f..120641efa 100644 --- a/docs/api/AXOpen.Base.Data.html +++ b/docs/api/AXOpen.Base.Data.html @@ -271,7 +271,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Dialogs.IAlertDialog.html b/docs/api/AXOpen.Base.Dialogs.IAlertDialog.html index 555ec0e53..86f0d98cd 100644 --- a/docs/api/AXOpen.Base.Dialogs.IAlertDialog.html +++ b/docs/api/AXOpen.Base.Dialogs.IAlertDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAlertDialog - +

@@ -136,7 +136,7 @@

Properties

Id - +

@@ -167,7 +167,7 @@

Property Value

Message - +

@@ -198,7 +198,7 @@

Property Value

Posted - +

@@ -229,7 +229,7 @@

Property Value

TimeToBurn - +

@@ -260,7 +260,7 @@

Property Value

Title - +

@@ -291,7 +291,7 @@

Property Value

Type - +

@@ -322,7 +322,7 @@

Property Value

@@ -338,7 +338,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Dialogs.IAlertDialogService.html b/docs/api/AXOpen.Base.Dialogs.IAlertDialogService.html index b9915905c..222861005 100644 --- a/docs/api/AXOpen.Base.Dialogs.IAlertDialogService.html +++ b/docs/api/AXOpen.Base.Dialogs.IAlertDialogService.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAlertDialogService - +

@@ -136,7 +136,7 @@

Methods

AddAlertDialog(eAlertDialogType, string, string, int) - +

@@ -173,7 +173,7 @@

Parameters

AddAlertDialog(IAlertDialog) - +

@@ -204,7 +204,7 @@

Parameters

GetAlertDialogs() - +

@@ -235,7 +235,7 @@

Returns

RemoveAlertDialog(IAlertDialog) - +

@@ -266,7 +266,7 @@

Parameters

RemoveAllAlertDialogs() - +

@@ -295,7 +295,7 @@

Events

AlertDialogChanged - +

@@ -326,7 +326,7 @@

Event Type

@@ -342,7 +342,7 @@

Event Type

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Dialogs.IsAlertDialogType.html b/docs/api/AXOpen.Base.Dialogs.IsAlertDialogType.html index cddc02083..7d1ed0706 100644 --- a/docs/api/AXOpen.Base.Dialogs.IsAlertDialogType.html +++ b/docs/api/AXOpen.Base.Dialogs.IsAlertDialogType.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IsAlertDialogType - +

@@ -199,7 +199,7 @@

- Edit this page + Edit this page

@@ -215,7 +215,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Dialogs.IsDialogType.html b/docs/api/AXOpen.Base.Dialogs.IsDialogType.html index 73c1843ea..f0d65b622 100644 --- a/docs/api/AXOpen.Base.Dialogs.IsDialogType.html +++ b/docs/api/AXOpen.Base.Dialogs.IsDialogType.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IsDialogType - +

@@ -194,7 +194,7 @@

Properties

DialogId - +

Gets or sets dialog locator id.

@@ -230,7 +230,7 @@

Methods

DeInitialize() - +

Removes handling of this dialogue, unsubscribing from polling and removed all event handler.

@@ -257,7 +257,7 @@

Initialize(Action) - +

Initialized remote task for this dialog, with polling instead of cyclic subscription.

@@ -290,7 +290,7 @@

Parameters

@@ -306,7 +306,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Dialogs.IsModalDialogType.html b/docs/api/AXOpen.Base.Dialogs.IsModalDialogType.html index 769ec9e53..bcc07a59e 100644 --- a/docs/api/AXOpen.Base.Dialogs.IsModalDialogType.html +++ b/docs/api/AXOpen.Base.Dialogs.IsModalDialogType.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IsModalDialogType - +

@@ -199,7 +199,7 @@

- Edit this page + Edit this page

@@ -215,7 +215,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Dialogs.eAlertDialogType.html b/docs/api/AXOpen.Base.Dialogs.eAlertDialogType.html index 0f637002d..1feadca59 100644 --- a/docs/api/AXOpen.Base.Dialogs.eAlertDialogType.html +++ b/docs/api/AXOpen.Base.Dialogs.eAlertDialogType.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAlertDialogType - +

@@ -145,7 +145,7 @@

Fields @@ -161,7 +161,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Base.Dialogs.html b/docs/api/AXOpen.Base.Dialogs.html index a64df0808..9af32d8d9 100644 --- a/docs/api/AXOpen.Base.Dialogs.html +++ b/docs/api/AXOpen.Base.Dialogs.html @@ -146,7 +146,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html index dec465e99..29c1b2163 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoBoolArray8 - +

@@ -239,7 +239,7 @@

Constructors

AxoBoolArray8(ITwinObject, string, string) - +

@@ -278,7 +278,7 @@

Properties

Data - +

@@ -313,7 +313,7 @@

Methods

CreateEmptyPoco() - +

@@ -344,7 +344,7 @@

Returns

OnlineToPlain<T>() - +

@@ -380,7 +380,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -411,7 +411,7 @@

Returns

OnlineToPlainAsync(AxoBoolArray8) - +

@@ -447,7 +447,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -488,7 +488,7 @@

Type Parameters

PlainToOnlineAsync(AxoBoolArray8) - +

@@ -524,7 +524,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -565,7 +565,7 @@

Type Parameters

PlainToShadowAsync(AxoBoolArray8) - +

@@ -601,7 +601,7 @@

Returns

Poll() - +

@@ -627,7 +627,7 @@

ShadowToPlain<T>() - +

@@ -663,7 +663,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -694,7 +694,7 @@

Returns

ShadowToPlainAsync(AxoBoolArray8) - +

@@ -730,7 +730,7 @@

Returns

@@ -746,7 +746,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html index 6310120df..ec51b7b18 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman - +

@@ -259,7 +259,7 @@

Constructors

AxoDataman(ITwinObject, string, string) - +

@@ -298,7 +298,7 @@

Properties

_Messenger - +

@@ -329,7 +329,7 @@

Property Value

_TaskMessenger - +

@@ -360,7 +360,7 @@

Property Value

AcquisitionControl - +

@@ -395,7 +395,7 @@

Property Value

AcquisitionStatus - +

@@ -430,7 +430,7 @@

Property Value

ClearResultDataTask - +

@@ -462,7 +462,7 @@

Property Value

Config - +

@@ -495,7 +495,7 @@

Property Value

ReadTask - +

@@ -528,7 +528,7 @@

Property Value

RestoreTask - +

@@ -561,7 +561,7 @@

Property Value

ResultData - +

@@ -594,7 +594,7 @@

Property Value

Results - +

@@ -629,7 +629,7 @@

Property Value

ResultsControl - +

@@ -664,7 +664,7 @@

Property Value

ResultsStatus - +

@@ -699,7 +699,7 @@

Property Value

SoftEventControl - +

@@ -734,7 +734,7 @@

Property Value

SoftEventStatus - +

@@ -769,7 +769,7 @@

Property Value

Status - +

@@ -803,7 +803,7 @@

Property Value

User - +

@@ -838,7 +838,7 @@

Property Value

UserData - +

@@ -874,7 +874,7 @@

Methods

CreateEmptyPoco() - +

@@ -905,7 +905,7 @@

Returns

OnlineToPlain<T>() - +

@@ -941,7 +941,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -972,7 +972,7 @@

Returns

OnlineToPlainAsync(AxoDataman) - +

@@ -1008,7 +1008,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1049,7 +1049,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman) - +

@@ -1085,7 +1085,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1126,7 +1126,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman) - +

@@ -1162,7 +1162,7 @@

Returns

Poll() - +

@@ -1188,7 +1188,7 @@

ShadowToPlain<T>() - +

@@ -1224,7 +1224,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1255,7 +1255,7 @@

Returns

ShadowToPlainAsync(AxoDataman) - +

@@ -1291,7 +1291,7 @@

Returns

@@ -1307,7 +1307,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html index cef8b2366..012f9d095 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDatamanClearResultData - +

@@ -301,7 +301,7 @@

Constructors

AxoDatamanClearResultData(ITwinObject, string, string) - +

@@ -340,7 +340,7 @@

Methods

CreateEmptyPoco() - +

@@ -371,7 +371,7 @@

Returns

OnlineToPlain<T>() - +

@@ -407,7 +407,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -438,7 +438,7 @@

Returns

OnlineToPlainAsync(AxoDatamanClearResultData) - +

@@ -474,7 +474,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -515,7 +515,7 @@

Type Parameters

PlainToOnlineAsync(AxoDatamanClearResultData) - +

@@ -551,7 +551,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -592,7 +592,7 @@

Type Parameters

PlainToShadowAsync(AxoDatamanClearResultData) - +

@@ -628,7 +628,7 @@

Returns

Poll() - +

@@ -654,7 +654,7 @@

ShadowToPlain<T>() - +

@@ -690,7 +690,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -721,7 +721,7 @@

Returns

ShadowToPlainAsync(AxoDatamanClearResultData) - +

@@ -757,7 +757,7 @@

Returns

@@ -773,7 +773,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html index 518d19098..348e91f1d 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDatamanRead - +

@@ -301,7 +301,7 @@

Constructors

AxoDatamanRead(ITwinObject, string, string) - +

@@ -340,7 +340,7 @@

Methods

CreateEmptyPoco() - +

@@ -371,7 +371,7 @@

Returns

OnlineToPlain<T>() - +

@@ -407,7 +407,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -438,7 +438,7 @@

Returns

OnlineToPlainAsync(AxoDatamanRead) - +

@@ -474,7 +474,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -515,7 +515,7 @@

Type Parameters

PlainToOnlineAsync(AxoDatamanRead) - +

@@ -551,7 +551,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -592,7 +592,7 @@

Type Parameters

PlainToShadowAsync(AxoDatamanRead) - +

@@ -628,7 +628,7 @@

Returns

Poll() - +

@@ -654,7 +654,7 @@

ShadowToPlain<T>() - +

@@ -690,7 +690,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -721,7 +721,7 @@

Returns

ShadowToPlainAsync(AxoDatamanRead) - +

@@ -757,7 +757,7 @@

Returns

@@ -773,7 +773,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html index f447f8240..1faaa7941 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_AcquisitionControl - +

@@ -175,7 +175,7 @@

Constructors

AxoDataman_AcquisitionControl(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

HumanReadable - +

@@ -307,7 +307,7 @@

Property Value

Interpreter - +

@@ -338,7 +338,7 @@

Property Value

Parent - +

@@ -369,7 +369,7 @@

Property Value

Symbol - +

@@ -400,7 +400,7 @@

Property Value

SymbolTail - +

@@ -431,7 +431,7 @@

Property Value

Trigger - +

@@ -462,7 +462,7 @@

Property Value

TriggerEnable - +

@@ -497,7 +497,7 @@

Methods

AddChild(ITwinObject) - +

@@ -528,7 +528,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -559,7 +559,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -590,7 +590,7 @@

Parameters

CreateEmptyPoco() - +

@@ -621,7 +621,7 @@

Returns

GetChildren() - +

@@ -652,7 +652,7 @@

Returns

GetConnector() - +

@@ -683,7 +683,7 @@

Returns

GetKids() - +

@@ -714,7 +714,7 @@

Returns

GetParent() - +

@@ -745,7 +745,7 @@

Returns

GetSymbolTail() - +

@@ -776,7 +776,7 @@

Returns

GetValueTags() - +

@@ -807,7 +807,7 @@

Returns

OnlineToPlain<T>() - +

@@ -843,7 +843,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -874,7 +874,7 @@

Returns

OnlineToPlainAsync(AxoDataman_AcquisitionControl) - +

@@ -910,7 +910,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -951,7 +951,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_AcquisitionControl) - +

@@ -987,7 +987,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1028,7 +1028,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_AcquisitionControl) - +

@@ -1064,7 +1064,7 @@

Returns

Poll() - +

@@ -1090,7 +1090,7 @@

ShadowToPlain<T>() - +

@@ -1126,7 +1126,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1157,7 +1157,7 @@

Returns

ShadowToPlainAsync(AxoDataman_AcquisitionControl) - +

@@ -1193,7 +1193,7 @@

Returns

@@ -1209,7 +1209,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html index 1edbbda2b..fcc9a28bc 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_AcquisitionStatus - +

@@ -175,7 +175,7 @@

Constructors

AxoDataman_AcquisitionStatus(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

Acquiring - +

@@ -245,7 +245,7 @@

Property Value

AttributeName - +

@@ -276,7 +276,7 @@

Property Value

Connector - +

@@ -307,7 +307,7 @@

Property Value

HumanReadable - +

@@ -338,7 +338,7 @@

Property Value

Interpreter - +

@@ -369,7 +369,7 @@

Property Value

MissedAcquisition - +

@@ -400,7 +400,7 @@

Property Value

Parent - +

@@ -431,7 +431,7 @@

Property Value

Symbol - +

@@ -462,7 +462,7 @@

Property Value

SymbolTail - +

@@ -493,7 +493,7 @@

Property Value

TriggerAcknowledge - +

@@ -524,7 +524,7 @@

Property Value

TriggerID - +

@@ -555,7 +555,7 @@

Property Value

TriggerReady - +

@@ -590,7 +590,7 @@

Methods

AddChild(ITwinObject) - +

@@ -621,7 +621,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -652,7 +652,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -683,7 +683,7 @@

Parameters

CreateEmptyPoco() - +

@@ -714,7 +714,7 @@

Returns

GetChildren() - +

@@ -745,7 +745,7 @@

Returns

GetConnector() - +

@@ -776,7 +776,7 @@

Returns

GetKids() - +

@@ -807,7 +807,7 @@

Returns

GetParent() - +

@@ -838,7 +838,7 @@

Returns

GetSymbolTail() - +

@@ -869,7 +869,7 @@

Returns

GetValueTags() - +

@@ -900,7 +900,7 @@

Returns

OnlineToPlain<T>() - +

@@ -936,7 +936,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -967,7 +967,7 @@

Returns

OnlineToPlainAsync(AxoDataman_AcquisitionStatus) - +

@@ -1003,7 +1003,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1044,7 +1044,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_AcquisitionStatus) - +

@@ -1080,7 +1080,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1121,7 +1121,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_AcquisitionStatus) - +

@@ -1157,7 +1157,7 @@

Returns

Poll() - +

@@ -1183,7 +1183,7 @@

ShadowToPlain<T>() - +

@@ -1219,7 +1219,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1250,7 +1250,7 @@

Returns

ShadowToPlainAsync(AxoDataman_AcquisitionStatus) - +

@@ -1286,7 +1286,7 @@

Returns

@@ -1302,7 +1302,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html index 8a44fc6b0..98bce1b52 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_Config - +

@@ -176,7 +176,7 @@

Constructors

AxoDataman_Config(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

ContinuousReading - +

@@ -308,7 +308,7 @@

Property Value

ErrorTime - +

@@ -339,7 +339,7 @@

Property Value

HumanReadable - +

@@ -370,7 +370,7 @@

Property Value

InfoTime - +

@@ -401,7 +401,7 @@

Property Value

Interpreter - +

@@ -432,7 +432,7 @@

Property Value

Parent - +

@@ -463,7 +463,7 @@

Property Value

Symbol - +

@@ -494,7 +494,7 @@

Property Value

SymbolTail - +

@@ -529,7 +529,7 @@

Methods

AddChild(ITwinObject) - +

@@ -560,7 +560,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -591,7 +591,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -622,7 +622,7 @@

Parameters

CreateEmptyPoco() - +

@@ -653,7 +653,7 @@

Returns

GetChildren() - +

@@ -684,7 +684,7 @@

Returns

GetConnector() - +

@@ -715,7 +715,7 @@

Returns

GetKids() - +

@@ -746,7 +746,7 @@

Returns

GetParent() - +

@@ -777,7 +777,7 @@

Returns

GetSymbolTail() - +

@@ -808,7 +808,7 @@

Returns

GetValueTags() - +

@@ -839,7 +839,7 @@

Returns

OnlineToPlain<T>() - +

@@ -875,7 +875,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -906,7 +906,7 @@

Returns

OnlineToPlainAsync(AxoDataman_Config) - +

@@ -942,7 +942,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -983,7 +983,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_Config) - +

@@ -1019,7 +1019,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1060,7 +1060,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_Config) - +

@@ -1096,7 +1096,7 @@

Returns

Poll() - +

@@ -1122,7 +1122,7 @@

ShadowToPlain<T>() - +

@@ -1158,7 +1158,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1189,7 +1189,7 @@

Returns

ShadowToPlainAsync(AxoDataman_Config) - +

@@ -1225,7 +1225,7 @@

Returns

@@ -1241,7 +1241,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html index d087bd725..7a85ac8ef 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_ResultData - +

@@ -242,7 +242,7 @@

Constructors

AxoDataman_ResultData(ITwinObject, string, string) - +

@@ -281,7 +281,7 @@

Properties

Data - +

@@ -316,7 +316,7 @@

Methods

CreateEmptyPoco() - +

@@ -347,7 +347,7 @@

Returns

OnlineToPlain<T>() - +

@@ -383,7 +383,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -414,7 +414,7 @@

Returns

OnlineToPlainAsync(AxoDataman_ResultData) - +

@@ -450,7 +450,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -491,7 +491,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_ResultData) - +

@@ -527,7 +527,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -568,7 +568,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_ResultData) - +

@@ -604,7 +604,7 @@

Returns

Poll() - +

@@ -630,7 +630,7 @@

ShadowToPlain<T>() - +

@@ -666,7 +666,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -697,7 +697,7 @@

Returns

ShadowToPlainAsync(AxoDataman_ResultData) - +

@@ -733,7 +733,7 @@

Returns

@@ -749,7 +749,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html index 4ec678954..e79f226a5 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_Results - +

@@ -175,7 +175,7 @@

Constructors

AxoDataman_Results(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Code - +

@@ -276,7 +276,7 @@

Property Value

Connector - +

@@ -307,7 +307,7 @@

Property Value

Extended - +

@@ -338,7 +338,7 @@

Property Value

HumanReadable - +

@@ -369,7 +369,7 @@

Property Value

Id - +

@@ -400,7 +400,7 @@

Property Value

Interpreter - +

@@ -431,7 +431,7 @@

Property Value

Length - +

@@ -462,7 +462,7 @@

Property Value

Parent - +

@@ -493,7 +493,7 @@

Property Value

Symbol - +

@@ -524,7 +524,7 @@

Property Value

SymbolTail - +

@@ -559,7 +559,7 @@

Methods

AddChild(ITwinObject) - +

@@ -590,7 +590,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -621,7 +621,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -652,7 +652,7 @@

Parameters

CreateEmptyPoco() - +

@@ -683,7 +683,7 @@

Returns

GetChildren() - +

@@ -714,7 +714,7 @@

Returns

GetConnector() - +

@@ -745,7 +745,7 @@

Returns

GetKids() - +

@@ -776,7 +776,7 @@

Returns

GetParent() - +

@@ -807,7 +807,7 @@

Returns

GetSymbolTail() - +

@@ -838,7 +838,7 @@

Returns

GetValueTags() - +

@@ -869,7 +869,7 @@

Returns

OnlineToPlain<T>() - +

@@ -905,7 +905,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -936,7 +936,7 @@

Returns

OnlineToPlainAsync(AxoDataman_Results) - +

@@ -972,7 +972,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1013,7 +1013,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_Results) - +

@@ -1049,7 +1049,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1090,7 +1090,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_Results) - +

@@ -1126,7 +1126,7 @@

Returns

Poll() - +

@@ -1152,7 +1152,7 @@

ShadowToPlain<T>() - +

@@ -1188,7 +1188,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1219,7 +1219,7 @@

Returns

ShadowToPlainAsync(AxoDataman_Results) - +

@@ -1255,7 +1255,7 @@

Returns

@@ -1271,7 +1271,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html index 83e309037..f2f4c6ac3 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_ResultsControl - +

@@ -175,7 +175,7 @@

Constructors

AxoDataman_ResultsControl(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

EnableResultBuffering - +

@@ -307,7 +307,7 @@

Property Value

HumanReadable - +

@@ -338,7 +338,7 @@

Property Value

Interpreter - +

@@ -369,7 +369,7 @@

Property Value

Parent - +

@@ -400,7 +400,7 @@

Property Value

ResultsAcknowledge - +

@@ -431,7 +431,7 @@

Property Value

Symbol - +

@@ -462,7 +462,7 @@

Property Value

SymbolTail - +

@@ -497,7 +497,7 @@

Methods

AddChild(ITwinObject) - +

@@ -528,7 +528,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -559,7 +559,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -590,7 +590,7 @@

Parameters

CreateEmptyPoco() - +

@@ -621,7 +621,7 @@

Returns

GetChildren() - +

@@ -652,7 +652,7 @@

Returns

GetConnector() - +

@@ -683,7 +683,7 @@

Returns

GetKids() - +

@@ -714,7 +714,7 @@

Returns

GetParent() - +

@@ -745,7 +745,7 @@

Returns

GetSymbolTail() - +

@@ -776,7 +776,7 @@

Returns

GetValueTags() - +

@@ -807,7 +807,7 @@

Returns

OnlineToPlain<T>() - +

@@ -843,7 +843,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -874,7 +874,7 @@

Returns

OnlineToPlainAsync(AxoDataman_ResultsControl) - +

@@ -910,7 +910,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -951,7 +951,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_ResultsControl) - +

@@ -987,7 +987,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1028,7 +1028,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_ResultsControl) - +

@@ -1064,7 +1064,7 @@

Returns

Poll() - +

@@ -1090,7 +1090,7 @@

ShadowToPlain<T>() - +

@@ -1126,7 +1126,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1157,7 +1157,7 @@

Returns

ShadowToPlainAsync(AxoDataman_ResultsControl) - +

@@ -1193,7 +1193,7 @@

Returns

@@ -1209,7 +1209,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html index ede432a1a..687b9147e 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_ResultsStatus - +

@@ -175,7 +175,7 @@

Constructors

AxoDataman_ResultsStatus(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

DecodeComplete - +

@@ -307,7 +307,7 @@

Property Value

Decoding - +

@@ -338,7 +338,7 @@

Property Value

ErrorDetected - +

@@ -369,7 +369,7 @@

Property Value

HumanReadable - +

@@ -400,7 +400,7 @@

Property Value

Interpreter - +

@@ -431,7 +431,7 @@

Property Value

Parent - +

@@ -462,7 +462,7 @@

Property Value

ResultsAvailable - +

@@ -493,7 +493,7 @@

Property Value

ResultsBufferOverrun - +

@@ -524,7 +524,7 @@

Property Value

Symbol - +

@@ -555,7 +555,7 @@

Property Value

SymbolTail - +

@@ -590,7 +590,7 @@

Methods

AddChild(ITwinObject) - +

@@ -621,7 +621,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -652,7 +652,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -683,7 +683,7 @@

Parameters

CreateEmptyPoco() - +

@@ -714,7 +714,7 @@

Returns

GetChildren() - +

@@ -745,7 +745,7 @@

Returns

GetConnector() - +

@@ -776,7 +776,7 @@

Returns

GetKids() - +

@@ -807,7 +807,7 @@

Returns

GetParent() - +

@@ -838,7 +838,7 @@

Returns

GetSymbolTail() - +

@@ -869,7 +869,7 @@

Returns

GetValueTags() - +

@@ -900,7 +900,7 @@

Returns

OnlineToPlain<T>() - +

@@ -936,7 +936,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -967,7 +967,7 @@

Returns

OnlineToPlainAsync(AxoDataman_ResultsStatus) - +

@@ -1003,7 +1003,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1044,7 +1044,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_ResultsStatus) - +

@@ -1080,7 +1080,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1121,7 +1121,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_ResultsStatus) - +

@@ -1157,7 +1157,7 @@

Returns

Poll() - +

@@ -1183,7 +1183,7 @@

ShadowToPlain<T>() - +

@@ -1219,7 +1219,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1250,7 +1250,7 @@

Returns

ShadowToPlainAsync(AxoDataman_ResultsStatus) - +

@@ -1286,7 +1286,7 @@

Returns

@@ -1302,7 +1302,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html index aee4ee4bb..69357b184 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_SoftEventControl - +

@@ -175,7 +175,7 @@

Constructors

AxoDataman_SoftEventControl(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

ExecuteDMCC - +

@@ -307,7 +307,7 @@

Property Value

HumanReadable - +

@@ -338,7 +338,7 @@

Property Value

Interpreter - +

@@ -369,7 +369,7 @@

Property Value

Parent - +

@@ -400,7 +400,7 @@

Property Value

SetMatchString - +

@@ -431,7 +431,7 @@

Property Value

Symbol - +

@@ -462,7 +462,7 @@

Property Value

SymbolTail - +

@@ -493,7 +493,7 @@

Property Value

TrainBrightness - +

@@ -524,7 +524,7 @@

Property Value

TrainCode - +

@@ -555,7 +555,7 @@

Property Value

TrainFocus - +

@@ -586,7 +586,7 @@

Property Value

TrainMatchString - +

@@ -617,7 +617,7 @@

Property Value

Untrain - +

@@ -652,7 +652,7 @@

Methods

AddChild(ITwinObject) - +

@@ -683,7 +683,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -714,7 +714,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -745,7 +745,7 @@

Parameters

CreateEmptyPoco() - +

@@ -776,7 +776,7 @@

Returns

GetChildren() - +

@@ -807,7 +807,7 @@

Returns

GetConnector() - +

@@ -838,7 +838,7 @@

Returns

GetKids() - +

@@ -869,7 +869,7 @@

Returns

GetParent() - +

@@ -900,7 +900,7 @@

Returns

GetSymbolTail() - +

@@ -931,7 +931,7 @@

Returns

GetValueTags() - +

@@ -962,7 +962,7 @@

Returns

OnlineToPlain<T>() - +

@@ -998,7 +998,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -1029,7 +1029,7 @@

Returns

OnlineToPlainAsync(AxoDataman_SoftEventControl) - +

@@ -1065,7 +1065,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1106,7 +1106,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_SoftEventControl) - +

@@ -1142,7 +1142,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1183,7 +1183,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_SoftEventControl) - +

@@ -1219,7 +1219,7 @@

Returns

Poll() - +

@@ -1245,7 +1245,7 @@

ShadowToPlain<T>() - +

@@ -1281,7 +1281,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1312,7 +1312,7 @@

Returns

ShadowToPlainAsync(AxoDataman_SoftEventControl) - +

@@ -1348,7 +1348,7 @@

Returns

@@ -1364,7 +1364,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html index 003e86923..f03e6d77b 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_SoftEventStatus - +

@@ -175,7 +175,7 @@

Constructors

AxoDataman_SoftEventStatus(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

ExecuteDMCCAcknowledge - +

@@ -307,7 +307,7 @@

Property Value

HumanReadable - +

@@ -338,7 +338,7 @@

Property Value

Interpreter - +

@@ -369,7 +369,7 @@

Property Value

Parent - +

@@ -400,7 +400,7 @@

Property Value

SetMatchStringAcknowledge - +

@@ -431,7 +431,7 @@

Property Value

Symbol - +

@@ -462,7 +462,7 @@

Property Value

SymbolTail - +

@@ -493,7 +493,7 @@

Property Value

TrainBrightnessAcknowledge - +

@@ -524,7 +524,7 @@

Property Value

TrainCodeAcknowledge - +

@@ -555,7 +555,7 @@

Property Value

TrainFocusAcknowledge - +

@@ -586,7 +586,7 @@

Property Value

TrainMatchStringAcknowledge - +

@@ -617,7 +617,7 @@

Property Value

UntrainAcknowledge - +

@@ -652,7 +652,7 @@

Methods

AddChild(ITwinObject) - +

@@ -683,7 +683,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -714,7 +714,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -745,7 +745,7 @@

Parameters

CreateEmptyPoco() - +

@@ -776,7 +776,7 @@

Returns

GetChildren() - +

@@ -807,7 +807,7 @@

Returns

GetConnector() - +

@@ -838,7 +838,7 @@

Returns

GetKids() - +

@@ -869,7 +869,7 @@

Returns

GetParent() - +

@@ -900,7 +900,7 @@

Returns

GetSymbolTail() - +

@@ -931,7 +931,7 @@

Returns

GetValueTags() - +

@@ -962,7 +962,7 @@

Returns

OnlineToPlain<T>() - +

@@ -998,7 +998,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -1029,7 +1029,7 @@

Returns

OnlineToPlainAsync(AxoDataman_SoftEventStatus) - +

@@ -1065,7 +1065,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1106,7 +1106,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_SoftEventStatus) - +

@@ -1142,7 +1142,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1183,7 +1183,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_SoftEventStatus) - +

@@ -1219,7 +1219,7 @@

Returns

Poll() - +

@@ -1245,7 +1245,7 @@

ShadowToPlain<T>() - +

@@ -1281,7 +1281,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1312,7 +1312,7 @@

Returns

ShadowToPlainAsync(AxoDataman_SoftEventStatus) - +

@@ -1348,7 +1348,7 @@

Returns

@@ -1364,7 +1364,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html index 08e9a2a93..82b4bfce1 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_Status - +

@@ -243,7 +243,7 @@

Constructors

AxoDataman_Status(ITwinObject, string, string) - +

@@ -282,7 +282,7 @@

Properties

ActionDescription - +

@@ -313,7 +313,7 @@

Property Value

ErrorDescription - +

@@ -344,7 +344,7 @@

Property Value

ResultDataSize - +

@@ -381,7 +381,7 @@

Methods

CreateEmptyPoco() - +

@@ -412,7 +412,7 @@

Returns

OnlineToPlain<T>() - +

@@ -448,7 +448,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -479,7 +479,7 @@

Returns

OnlineToPlainAsync(AxoDataman_Status) - +

@@ -515,7 +515,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -556,7 +556,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_Status) - +

@@ -592,7 +592,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -633,7 +633,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_Status) - +

@@ -669,7 +669,7 @@

Returns

Poll() - +

@@ -695,7 +695,7 @@

ShadowToPlain<T>() - +

@@ -731,7 +731,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -762,7 +762,7 @@

Returns

ShadowToPlainAsync(AxoDataman_Status) - +

@@ -798,7 +798,7 @@

Returns

@@ -814,7 +814,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html index afed92e72..eb556d32b 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_User - +

@@ -175,7 +175,7 @@

Constructors

AxoDataman_User(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

HumanReadable - +

@@ -307,7 +307,7 @@

Property Value

Interpreter - +

@@ -338,7 +338,7 @@

Property Value

Length - +

@@ -369,7 +369,7 @@

Property Value

Option - +

@@ -400,7 +400,7 @@

Property Value

Parent - +

@@ -431,7 +431,7 @@

Property Value

Symbol - +

@@ -462,7 +462,7 @@

Property Value

SymbolTail - +

@@ -497,7 +497,7 @@

Methods

AddChild(ITwinObject) - +

@@ -528,7 +528,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -559,7 +559,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -590,7 +590,7 @@

Parameters

CreateEmptyPoco() - +

@@ -621,7 +621,7 @@

Returns

GetChildren() - +

@@ -652,7 +652,7 @@

Returns

GetConnector() - +

@@ -683,7 +683,7 @@

Returns

GetKids() - +

@@ -714,7 +714,7 @@

Returns

GetParent() - +

@@ -745,7 +745,7 @@

Returns

GetSymbolTail() - +

@@ -776,7 +776,7 @@

Returns

GetValueTags() - +

@@ -807,7 +807,7 @@

Returns

OnlineToPlain<T>() - +

@@ -843,7 +843,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -874,7 +874,7 @@

Returns

OnlineToPlainAsync(AxoDataman_User) - +

@@ -910,7 +910,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -951,7 +951,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_User) - +

@@ -987,7 +987,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1028,7 +1028,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_User) - +

@@ -1064,7 +1064,7 @@

Returns

Poll() - +

@@ -1090,7 +1090,7 @@

ShadowToPlain<T>() - +

@@ -1126,7 +1126,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1157,7 +1157,7 @@

Returns

ShadowToPlainAsync(AxoDataman_User) - +

@@ -1193,7 +1193,7 @@

Returns

@@ -1209,7 +1209,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html index 6eb28ba3a..6a6627288 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_UserData - +

@@ -242,7 +242,7 @@

Constructors

AxoDataman_UserData(ITwinObject, string, string) - +

@@ -281,7 +281,7 @@

Properties

Data - +

@@ -316,7 +316,7 @@

Methods

CreateEmptyPoco() - +

@@ -347,7 +347,7 @@

Returns

OnlineToPlain<T>() - +

@@ -383,7 +383,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -414,7 +414,7 @@

Returns

OnlineToPlainAsync(AxoDataman_UserData) - +

@@ -450,7 +450,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -491,7 +491,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataman_UserData) - +

@@ -527,7 +527,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -568,7 +568,7 @@

Type Parameters

PlainToShadowAsync(AxoDataman_UserData) - +

@@ -604,7 +604,7 @@

Returns

Poll() - +

@@ -630,7 +630,7 @@

ShadowToPlain<T>() - +

@@ -666,7 +666,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -697,7 +697,7 @@

Returns

ShadowToPlainAsync(AxoDataman_UserData) - +

@@ -733,7 +733,7 @@

Returns

@@ -749,7 +749,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html index 578a95b0d..862a61161 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight - +

@@ -260,7 +260,7 @@

Constructors

AxoInsight(ITwinObject, string, string) - +

@@ -299,7 +299,7 @@

Properties

_Messenger - +

@@ -330,7 +330,7 @@

Property Value

_TaskMessenger - +

@@ -361,7 +361,7 @@

Property Value

AcquisitionControl - +

@@ -396,7 +396,7 @@

Property Value

AcquisitionStatus - +

@@ -431,7 +431,7 @@

Property Value

ChangeJobByNameTask - +

@@ -463,7 +463,7 @@

Property Value

ChangeJobByNumberTask - +

@@ -495,7 +495,7 @@

Property Value

ClearInspectionResultsTask - +

@@ -527,7 +527,7 @@

Property Value

CommandControl - +

@@ -562,7 +562,7 @@

Property Value

CommandStatus - +

@@ -597,7 +597,7 @@

Property Value

Config - +

@@ -630,7 +630,7 @@

Property Value

InspectionControl - +

@@ -665,7 +665,7 @@

Property Value

InspectionResults - +

@@ -698,7 +698,7 @@

Property Value

InspectionStatus - +

@@ -733,7 +733,7 @@

Property Value

RequiredJobName - +

@@ -767,7 +767,7 @@

Property Value

RequiredJobNumber - +

@@ -800,7 +800,7 @@

Property Value

RequiredSoftEventNumber - +

@@ -833,7 +833,7 @@

Property Value

RestoreTask - +

@@ -866,7 +866,7 @@

Property Value

Results - +

@@ -901,7 +901,7 @@

Property Value

SoftEventControl - +

@@ -936,7 +936,7 @@

Property Value

SoftEventStatus - +

@@ -971,7 +971,7 @@

Property Value

SoftEventTask - +

@@ -1003,7 +1003,7 @@

Property Value

Status - +

@@ -1037,7 +1037,7 @@

Property Value

TriggerTask - +

@@ -1070,7 +1070,7 @@

Property Value

UserData - +

@@ -1109,7 +1109,7 @@

Methods

CreateEmptyPoco() - +

@@ -1140,7 +1140,7 @@

Returns

OnlineToPlain<T>() - +

@@ -1176,7 +1176,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -1207,7 +1207,7 @@

Returns

OnlineToPlainAsync(AxoInsight) - +

@@ -1243,7 +1243,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1284,7 +1284,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight) - +

@@ -1320,7 +1320,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1361,7 +1361,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight) - +

@@ -1397,7 +1397,7 @@

Returns

Poll() - +

@@ -1423,7 +1423,7 @@

ShadowToPlain<T>() - +

@@ -1459,7 +1459,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1490,7 +1490,7 @@

Returns

ShadowToPlainAsync(AxoInsight) - +

@@ -1526,7 +1526,7 @@

Returns

@@ -1542,7 +1542,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html index de3d15265..3d66a0cc7 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightChangeJobByName - +

@@ -301,7 +301,7 @@

Constructors

AxoInsightChangeJobByName(ITwinObject, string, string) - +

@@ -340,7 +340,7 @@

Methods

CreateEmptyPoco() - +

@@ -371,7 +371,7 @@

Returns

OnlineToPlain<T>() - +

@@ -407,7 +407,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -438,7 +438,7 @@

Returns

OnlineToPlainAsync(AxoInsightChangeJobByName) - +

@@ -474,7 +474,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -515,7 +515,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsightChangeJobByName) - +

@@ -551,7 +551,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -592,7 +592,7 @@

Type Parameters

PlainToShadowAsync(AxoInsightChangeJobByName) - +

@@ -628,7 +628,7 @@

Returns

Poll() - +

@@ -654,7 +654,7 @@

ShadowToPlain<T>() - +

@@ -690,7 +690,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -721,7 +721,7 @@

Returns

ShadowToPlainAsync(AxoInsightChangeJobByName) - +

@@ -757,7 +757,7 @@

Returns

@@ -773,7 +773,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html index 6c7970160..9fbf7e617 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightChangeJobByNumber - +

@@ -301,7 +301,7 @@

Constructors

AxoInsightChangeJobByNumber(ITwinObject, string, string) - +

@@ -340,7 +340,7 @@

Methods

CreateEmptyPoco() - +

@@ -371,7 +371,7 @@

Returns

OnlineToPlain<T>() - +

@@ -407,7 +407,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -438,7 +438,7 @@

Returns

OnlineToPlainAsync(AxoInsightChangeJobByNumber) - +

@@ -474,7 +474,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -515,7 +515,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsightChangeJobByNumber) - +

@@ -551,7 +551,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -592,7 +592,7 @@

Type Parameters

PlainToShadowAsync(AxoInsightChangeJobByNumber) - +

@@ -628,7 +628,7 @@

Returns

Poll() - +

@@ -654,7 +654,7 @@

ShadowToPlain<T>() - +

@@ -690,7 +690,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -721,7 +721,7 @@

Returns

ShadowToPlainAsync(AxoInsightChangeJobByNumber) - +

@@ -757,7 +757,7 @@

Returns

@@ -773,7 +773,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html index 1b135aaa4..068450793 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightClearInspectionResults - +

@@ -301,7 +301,7 @@

Constructors

AxoInsightClearInspectionResults(ITwinObject, string, string) - +

@@ -340,7 +340,7 @@

Methods

CreateEmptyPoco() - +

@@ -371,7 +371,7 @@

Returns

OnlineToPlain<T>() - +

@@ -407,7 +407,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -438,7 +438,7 @@

Returns

OnlineToPlainAsync(AxoInsightClearInspectionResults) - +

@@ -474,7 +474,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -515,7 +515,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsightClearInspectionResults) - +

@@ -551,7 +551,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -592,7 +592,7 @@

Type Parameters

PlainToShadowAsync(AxoInsightClearInspectionResults) - +

@@ -628,7 +628,7 @@

Returns

Poll() - +

@@ -654,7 +654,7 @@

ShadowToPlain<T>() - +

@@ -690,7 +690,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -721,7 +721,7 @@

Returns

ShadowToPlainAsync(AxoInsightClearInspectionResults) - +

@@ -757,7 +757,7 @@

Returns

@@ -773,7 +773,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html index e5b63ca15..e14afc70a 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightSoftEvent - +

@@ -301,7 +301,7 @@

Constructors

AxoInsightSoftEvent(ITwinObject, string, string) - +

@@ -340,7 +340,7 @@

Methods

CreateEmptyPoco() - +

@@ -371,7 +371,7 @@

Returns

OnlineToPlain<T>() - +

@@ -407,7 +407,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -438,7 +438,7 @@

Returns

OnlineToPlainAsync(AxoInsightSoftEvent) - +

@@ -474,7 +474,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -515,7 +515,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsightSoftEvent) - +

@@ -551,7 +551,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -592,7 +592,7 @@

Type Parameters

PlainToShadowAsync(AxoInsightSoftEvent) - +

@@ -628,7 +628,7 @@

Returns

Poll() - +

@@ -654,7 +654,7 @@

ShadowToPlain<T>() - +

@@ -690,7 +690,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -721,7 +721,7 @@

Returns

ShadowToPlainAsync(AxoInsightSoftEvent) - +

@@ -757,7 +757,7 @@

Returns

@@ -773,7 +773,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html index d634c0167..5d9e15cfc 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightTrigger - +

@@ -301,7 +301,7 @@

Constructors

AxoInsightTrigger(ITwinObject, string, string) - +

@@ -340,7 +340,7 @@

Methods

CreateEmptyPoco() - +

@@ -371,7 +371,7 @@

Returns

OnlineToPlain<T>() - +

@@ -407,7 +407,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -438,7 +438,7 @@

Returns

OnlineToPlainAsync(AxoInsightTrigger) - +

@@ -474,7 +474,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -515,7 +515,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsightTrigger) - +

@@ -551,7 +551,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -592,7 +592,7 @@

Type Parameters

PlainToShadowAsync(AxoInsightTrigger) - +

@@ -628,7 +628,7 @@

Returns

Poll() - +

@@ -654,7 +654,7 @@

ShadowToPlain<T>() - +

@@ -690,7 +690,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -721,7 +721,7 @@

Returns

ShadowToPlainAsync(AxoInsightTrigger) - +

@@ -757,7 +757,7 @@

Returns

@@ -773,7 +773,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html index 5ea7afb97..f36eb8722 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_AcquisitionControl - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_AcquisitionControl(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

ClearExposureComplete - +

@@ -277,7 +277,7 @@

Property Value

Connector - +

@@ -308,7 +308,7 @@

Property Value

HumanReadable - +

@@ -339,7 +339,7 @@

Property Value

Interpreter - +

@@ -370,7 +370,7 @@

Property Value

Parent - +

@@ -401,7 +401,7 @@

Property Value

SetOffline - +

@@ -432,7 +432,7 @@

Property Value

Symbol - +

@@ -463,7 +463,7 @@

Property Value

SymbolTail - +

@@ -494,7 +494,7 @@

Property Value

Trigger - +

@@ -525,7 +525,7 @@

Property Value

TriggerEnable - +

@@ -560,7 +560,7 @@

Methods

AddChild(ITwinObject) - +

@@ -591,7 +591,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -622,7 +622,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -653,7 +653,7 @@

Parameters

CreateEmptyPoco() - +

@@ -684,7 +684,7 @@

Returns

GetChildren() - +

@@ -715,7 +715,7 @@

Returns

GetConnector() - +

@@ -746,7 +746,7 @@

Returns

GetKids() - +

@@ -777,7 +777,7 @@

Returns

GetParent() - +

@@ -808,7 +808,7 @@

Returns

GetSymbolTail() - +

@@ -839,7 +839,7 @@

Returns

GetValueTags() - +

@@ -870,7 +870,7 @@

Returns

OnlineToPlain<T>() - +

@@ -906,7 +906,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -937,7 +937,7 @@

Returns

OnlineToPlainAsync(AxoInsight_AcquisitionControl) - +

@@ -973,7 +973,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1014,7 +1014,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_AcquisitionControl) - +

@@ -1050,7 +1050,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1091,7 +1091,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_AcquisitionControl) - +

@@ -1127,7 +1127,7 @@

Returns

Poll() - +

@@ -1153,7 +1153,7 @@

ShadowToPlain<T>() - +

@@ -1189,7 +1189,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1220,7 +1220,7 @@

Returns

ShadowToPlainAsync(AxoInsight_AcquisitionControl) - +

@@ -1256,7 +1256,7 @@

Returns

@@ -1272,7 +1272,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html index 8ce474695..b317a3456 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_AcquisitionStatus - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_AcquisitionStatus(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AcquisitionID - +

@@ -246,7 +246,7 @@

Property Value

AttributeName - +

@@ -277,7 +277,7 @@

Property Value

Connector - +

@@ -308,7 +308,7 @@

Property Value

ExposureComplete - +

@@ -339,7 +339,7 @@

Property Value

HumanReadable - +

@@ -370,7 +370,7 @@

Property Value

Interpreter - +

@@ -401,7 +401,7 @@

Property Value

MissedAcquisition - +

@@ -432,7 +432,7 @@

Property Value

OfflineReason0 - +

@@ -463,7 +463,7 @@

Property Value

OfflineReason1 - +

@@ -494,7 +494,7 @@

Property Value

OfflineReason2 - +

@@ -525,7 +525,7 @@

Property Value

Online - +

@@ -556,7 +556,7 @@

Property Value

Parent - +

@@ -587,7 +587,7 @@

Property Value

Symbol - +

@@ -618,7 +618,7 @@

Property Value

SymbolTail - +

@@ -649,7 +649,7 @@

Property Value

TriggerAcknowledge - +

@@ -680,7 +680,7 @@

Property Value

TriggerReady - +

@@ -715,7 +715,7 @@

Methods

AddChild(ITwinObject) - +

@@ -746,7 +746,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -777,7 +777,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -808,7 +808,7 @@

Parameters

CreateEmptyPoco() - +

@@ -839,7 +839,7 @@

Returns

GetChildren() - +

@@ -870,7 +870,7 @@

Returns

GetConnector() - +

@@ -901,7 +901,7 @@

Returns

GetKids() - +

@@ -932,7 +932,7 @@

Returns

GetParent() - +

@@ -963,7 +963,7 @@

Returns

GetSymbolTail() - +

@@ -994,7 +994,7 @@

Returns

GetValueTags() - +

@@ -1025,7 +1025,7 @@

Returns

OnlineToPlain<T>() - +

@@ -1061,7 +1061,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -1092,7 +1092,7 @@

Returns

OnlineToPlainAsync(AxoInsight_AcquisitionStatus) - +

@@ -1128,7 +1128,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1169,7 +1169,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_AcquisitionStatus) - +

@@ -1205,7 +1205,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1246,7 +1246,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_AcquisitionStatus) - +

@@ -1282,7 +1282,7 @@

Returns

Poll() - +

@@ -1308,7 +1308,7 @@

ShadowToPlain<T>() - +

@@ -1344,7 +1344,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1375,7 +1375,7 @@

Returns

ShadowToPlainAsync(AxoInsight_AcquisitionStatus) - +

@@ -1411,7 +1411,7 @@

Returns

@@ -1427,7 +1427,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html index 079a51d77..d253fe07e 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_CommandControl - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_CommandControl(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Command - +

@@ -277,7 +277,7 @@

Property Value

Connector - +

@@ -308,7 +308,7 @@

Property Value

HumanReadable - +

@@ -339,7 +339,7 @@

Property Value

Interpreter - +

@@ -370,7 +370,7 @@

Property Value

Parent - +

@@ -401,7 +401,7 @@

Property Value

Symbol - +

@@ -432,7 +432,7 @@

Property Value

SymbolTail - +

@@ -467,7 +467,7 @@

Methods

AddChild(ITwinObject) - +

@@ -498,7 +498,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -529,7 +529,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -560,7 +560,7 @@

Parameters

CreateEmptyPoco() - +

@@ -591,7 +591,7 @@

Returns

GetChildren() - +

@@ -622,7 +622,7 @@

Returns

GetConnector() - +

@@ -653,7 +653,7 @@

Returns

GetKids() - +

@@ -684,7 +684,7 @@

Returns

GetParent() - +

@@ -715,7 +715,7 @@

Returns

GetSymbolTail() - +

@@ -746,7 +746,7 @@

Returns

GetValueTags() - +

@@ -777,7 +777,7 @@

Returns

OnlineToPlain<T>() - +

@@ -813,7 +813,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -844,7 +844,7 @@

Returns

OnlineToPlainAsync(AxoInsight_CommandControl) - +

@@ -880,7 +880,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -921,7 +921,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_CommandControl) - +

@@ -957,7 +957,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -998,7 +998,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_CommandControl) - +

@@ -1034,7 +1034,7 @@

Returns

Poll() - +

@@ -1060,7 +1060,7 @@

ShadowToPlain<T>() - +

@@ -1096,7 +1096,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1127,7 +1127,7 @@

Returns

ShadowToPlainAsync(AxoInsight_CommandControl) - +

@@ -1163,7 +1163,7 @@

Returns

@@ -1179,7 +1179,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html index e5d93b528..8f4057db1 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_CommandStatus - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_CommandStatus(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

CurrentJobID - +

@@ -308,7 +308,7 @@

Property Value

HumanReadable - +

@@ -339,7 +339,7 @@

Property Value

Interpreter - +

@@ -370,7 +370,7 @@

Property Value

Parent - +

@@ -401,7 +401,7 @@

Property Value

Symbol - +

@@ -432,7 +432,7 @@

Property Value

SymbolTail - +

@@ -467,7 +467,7 @@

Methods

AddChild(ITwinObject) - +

@@ -498,7 +498,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -529,7 +529,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -560,7 +560,7 @@

Parameters

CreateEmptyPoco() - +

@@ -591,7 +591,7 @@

Returns

GetChildren() - +

@@ -622,7 +622,7 @@

Returns

GetConnector() - +

@@ -653,7 +653,7 @@

Returns

GetKids() - +

@@ -684,7 +684,7 @@

Returns

GetParent() - +

@@ -715,7 +715,7 @@

Returns

GetSymbolTail() - +

@@ -746,7 +746,7 @@

Returns

GetValueTags() - +

@@ -777,7 +777,7 @@

Returns

OnlineToPlain<T>() - +

@@ -813,7 +813,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -844,7 +844,7 @@

Returns

OnlineToPlainAsync(AxoInsight_CommandStatus) - +

@@ -880,7 +880,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -921,7 +921,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_CommandStatus) - +

@@ -957,7 +957,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -998,7 +998,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_CommandStatus) - +

@@ -1034,7 +1034,7 @@

Returns

Poll() - +

@@ -1060,7 +1060,7 @@

ShadowToPlain<T>() - +

@@ -1096,7 +1096,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1127,7 +1127,7 @@

Returns

ShadowToPlainAsync(AxoInsight_CommandStatus) - +

@@ -1163,7 +1163,7 @@

Returns

@@ -1179,7 +1179,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html index 4d0e5bcf9..054bd6e83 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_Config - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_Config(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

ErrorTime - +

@@ -308,7 +308,7 @@

Property Value

HumanReadable - +

@@ -339,7 +339,7 @@

Property Value

InfoTime - +

@@ -370,7 +370,7 @@

Property Value

Interpreter - +

@@ -401,7 +401,7 @@

Property Value

MaxJobNumber - +

@@ -432,7 +432,7 @@

Property Value

Parent - +

@@ -463,7 +463,7 @@

Property Value

Symbol - +

@@ -494,7 +494,7 @@

Property Value

SymbolTail - +

@@ -529,7 +529,7 @@

Methods

AddChild(ITwinObject) - +

@@ -560,7 +560,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -591,7 +591,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -622,7 +622,7 @@

Parameters

CreateEmptyPoco() - +

@@ -653,7 +653,7 @@

Returns

GetChildren() - +

@@ -684,7 +684,7 @@

Returns

GetConnector() - +

@@ -715,7 +715,7 @@

Returns

GetKids() - +

@@ -746,7 +746,7 @@

Returns

GetParent() - +

@@ -777,7 +777,7 @@

Returns

GetSymbolTail() - +

@@ -808,7 +808,7 @@

Returns

GetValueTags() - +

@@ -839,7 +839,7 @@

Returns

OnlineToPlain<T>() - +

@@ -875,7 +875,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -906,7 +906,7 @@

Returns

OnlineToPlainAsync(AxoInsight_Config) - +

@@ -942,7 +942,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -983,7 +983,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_Config) - +

@@ -1019,7 +1019,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1060,7 +1060,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_Config) - +

@@ -1096,7 +1096,7 @@

Returns

Poll() - +

@@ -1122,7 +1122,7 @@

ShadowToPlain<T>() - +

@@ -1158,7 +1158,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1189,7 +1189,7 @@

Returns

ShadowToPlainAsync(AxoInsight_Config) - +

@@ -1225,7 +1225,7 @@

Returns

@@ -1241,7 +1241,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html index 022940283..55e8740b9 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_InspectionControl - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_InspectionControl(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AcknowledgeInspectionResults - +

@@ -246,7 +246,7 @@

Property Value

AttributeName - +

@@ -277,7 +277,7 @@

Property Value

ClearError - +

@@ -308,7 +308,7 @@

Property Value

Connector - +

@@ -339,7 +339,7 @@

Property Value

EnableResultsBuffering - +

@@ -370,7 +370,7 @@

Property Value

ExecuteCommand - +

@@ -401,7 +401,7 @@

Property Value

ExtendedUserDataSet - +

@@ -432,7 +432,7 @@

Property Value

HumanReadable - +

@@ -463,7 +463,7 @@

Property Value

Interpreter - +

@@ -494,7 +494,7 @@

Property Value

Parent - +

@@ -525,7 +525,7 @@

Property Value

Symbol - +

@@ -556,7 +556,7 @@

Property Value

SymbolTail - +

@@ -591,7 +591,7 @@

Methods

AddChild(ITwinObject) - +

@@ -622,7 +622,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -653,7 +653,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -684,7 +684,7 @@

Parameters

CreateEmptyPoco() - +

@@ -715,7 +715,7 @@

Returns

GetChildren() - +

@@ -746,7 +746,7 @@

Returns

GetConnector() - +

@@ -777,7 +777,7 @@

Returns

GetKids() - +

@@ -808,7 +808,7 @@

Returns

GetParent() - +

@@ -839,7 +839,7 @@

Returns

GetSymbolTail() - +

@@ -870,7 +870,7 @@

Returns

GetValueTags() - +

@@ -901,7 +901,7 @@

Returns

OnlineToPlain<T>() - +

@@ -937,7 +937,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -968,7 +968,7 @@

Returns

OnlineToPlainAsync(AxoInsight_InspectionControl) - +

@@ -1004,7 +1004,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1045,7 +1045,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_InspectionControl) - +

@@ -1081,7 +1081,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1122,7 +1122,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_InspectionControl) - +

@@ -1158,7 +1158,7 @@

Returns

Poll() - +

@@ -1184,7 +1184,7 @@

ShadowToPlain<T>() - +

@@ -1220,7 +1220,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1251,7 +1251,7 @@

Returns

ShadowToPlainAsync(AxoInsight_InspectionControl) - +

@@ -1287,7 +1287,7 @@

Returns

@@ -1303,7 +1303,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html index 7594fbee1..a471c5c6b 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_InspectionStatus - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_InspectionStatus(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

CommandComplete - +

@@ -277,7 +277,7 @@

Property Value

CommandExecuting - +

@@ -308,7 +308,7 @@

Property Value

CommandFailed - +

@@ -339,7 +339,7 @@

Property Value

Connector - +

@@ -370,7 +370,7 @@

Property Value

Error - +

@@ -401,7 +401,7 @@

Property Value

ErrorCode - +

@@ -432,7 +432,7 @@

Property Value

ExtendedUserDataSetAcknowledge - +

@@ -463,7 +463,7 @@

Property Value

HumanReadable - +

@@ -494,7 +494,7 @@

Property Value

InspectionCompleted - +

@@ -525,7 +525,7 @@

Property Value

Interpreter - +

@@ -556,7 +556,7 @@

Property Value

OverallJobPassFail - +

@@ -587,7 +587,7 @@

Property Value

Parent - +

@@ -618,7 +618,7 @@

Property Value

ResultsBufferOverrun - +

@@ -649,7 +649,7 @@

Property Value

ResultsValid - +

@@ -680,7 +680,7 @@

Property Value

Symbol - +

@@ -711,7 +711,7 @@

Property Value

SymbolTail - +

@@ -742,7 +742,7 @@

Property Value

SystemBusy - +

@@ -773,7 +773,7 @@

Property Value

TestRunReady - +

@@ -808,7 +808,7 @@

Methods

AddChild(ITwinObject) - +

@@ -839,7 +839,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -870,7 +870,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -901,7 +901,7 @@

Parameters

CreateEmptyPoco() - +

@@ -932,7 +932,7 @@

Returns

GetChildren() - +

@@ -963,7 +963,7 @@

Returns

GetConnector() - +

@@ -994,7 +994,7 @@

Returns

GetKids() - +

@@ -1025,7 +1025,7 @@

Returns

GetParent() - +

@@ -1056,7 +1056,7 @@

Returns

GetSymbolTail() - +

@@ -1087,7 +1087,7 @@

Returns

GetValueTags() - +

@@ -1118,7 +1118,7 @@

Returns

OnlineToPlain<T>() - +

@@ -1154,7 +1154,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -1185,7 +1185,7 @@

Returns

OnlineToPlainAsync(AxoInsight_InspectionStatus) - +

@@ -1221,7 +1221,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1262,7 +1262,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_InspectionStatus) - +

@@ -1298,7 +1298,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1339,7 +1339,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_InspectionStatus) - +

@@ -1375,7 +1375,7 @@

Returns

Poll() - +

@@ -1401,7 +1401,7 @@

ShadowToPlain<T>() - +

@@ -1437,7 +1437,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1468,7 +1468,7 @@

Returns

ShadowToPlainAsync(AxoInsight_InspectionStatus) - +

@@ -1504,7 +1504,7 @@

Returns

@@ -1520,7 +1520,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html index 8dafee826..a8a378e78 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_ResultData - +

@@ -242,7 +242,7 @@

Constructors

AxoInsight_ResultData(ITwinObject, string, string) - +

@@ -281,7 +281,7 @@

Properties

Data - +

@@ -316,7 +316,7 @@

Methods

CreateEmptyPoco() - +

@@ -347,7 +347,7 @@

Returns

OnlineToPlain<T>() - +

@@ -383,7 +383,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -414,7 +414,7 @@

Returns

OnlineToPlainAsync(AxoInsight_ResultData) - +

@@ -450,7 +450,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -491,7 +491,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_ResultData) - +

@@ -527,7 +527,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -568,7 +568,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_ResultData) - +

@@ -604,7 +604,7 @@

Returns

Poll() - +

@@ -630,7 +630,7 @@

ShadowToPlain<T>() - +

@@ -666,7 +666,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -697,7 +697,7 @@

Returns

ShadowToPlainAsync(AxoInsight_ResultData) - +

@@ -733,7 +733,7 @@

Returns

@@ -749,7 +749,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html index ccecf2d2a..26ed05670 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_Results - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_Results(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

HumanReadable - +

@@ -308,7 +308,7 @@

Property Value

InspectionID - +

@@ -339,7 +339,7 @@

Property Value

Interpreter - +

@@ -370,7 +370,7 @@

Property Value

Parent - +

@@ -401,7 +401,7 @@

Property Value

ResultCode - +

@@ -432,7 +432,7 @@

Property Value

Symbol - +

@@ -463,7 +463,7 @@

Property Value

SymbolTail - +

@@ -498,7 +498,7 @@

Methods

AddChild(ITwinObject) - +

@@ -529,7 +529,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -560,7 +560,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -591,7 +591,7 @@

Parameters

CreateEmptyPoco() - +

@@ -622,7 +622,7 @@

Returns

GetChildren() - +

@@ -653,7 +653,7 @@

Returns

GetConnector() - +

@@ -684,7 +684,7 @@

Returns

GetKids() - +

@@ -715,7 +715,7 @@

Returns

GetParent() - +

@@ -746,7 +746,7 @@

Returns

GetSymbolTail() - +

@@ -777,7 +777,7 @@

Returns

GetValueTags() - +

@@ -808,7 +808,7 @@

Returns

OnlineToPlain<T>() - +

@@ -844,7 +844,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -875,7 +875,7 @@

Returns

OnlineToPlainAsync(AxoInsight_Results) - +

@@ -911,7 +911,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -952,7 +952,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_Results) - +

@@ -988,7 +988,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1029,7 +1029,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_Results) - +

@@ -1065,7 +1065,7 @@

Returns

Poll() - +

@@ -1091,7 +1091,7 @@

ShadowToPlain<T>() - +

@@ -1127,7 +1127,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1158,7 +1158,7 @@

Returns

ShadowToPlainAsync(AxoInsight_Results) - +

@@ -1194,7 +1194,7 @@

Returns

@@ -1210,7 +1210,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html index f8de9be09..57477b513 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_SoftEventControl - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_SoftEventControl(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

HumanReadable - +

@@ -308,7 +308,7 @@

Property Value

Interpreter - +

@@ -339,7 +339,7 @@

Property Value

Parent - +

@@ -370,7 +370,7 @@

Property Value

Symbol - +

@@ -401,7 +401,7 @@

Property Value

SymbolTail - +

@@ -432,7 +432,7 @@

Property Value

TriggerSoftEvent - +

@@ -467,7 +467,7 @@

Methods

AddChild(ITwinObject) - +

@@ -498,7 +498,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -529,7 +529,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -560,7 +560,7 @@

Parameters

CreateEmptyPoco() - +

@@ -591,7 +591,7 @@

Returns

GetChildren() - +

@@ -622,7 +622,7 @@

Returns

GetConnector() - +

@@ -653,7 +653,7 @@

Returns

GetKids() - +

@@ -684,7 +684,7 @@

Returns

GetParent() - +

@@ -715,7 +715,7 @@

Returns

GetSymbolTail() - +

@@ -746,7 +746,7 @@

Returns

GetValueTags() - +

@@ -777,7 +777,7 @@

Returns

OnlineToPlain<T>() - +

@@ -813,7 +813,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -844,7 +844,7 @@

Returns

OnlineToPlainAsync(AxoInsight_SoftEventControl) - +

@@ -880,7 +880,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -921,7 +921,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_SoftEventControl) - +

@@ -957,7 +957,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -998,7 +998,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_SoftEventControl) - +

@@ -1034,7 +1034,7 @@

Returns

Poll() - +

@@ -1060,7 +1060,7 @@

ShadowToPlain<T>() - +

@@ -1096,7 +1096,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1127,7 +1127,7 @@

Returns

ShadowToPlainAsync(AxoInsight_SoftEventControl) - +

@@ -1163,7 +1163,7 @@

Returns

@@ -1179,7 +1179,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html index ba5f45b61..af161909c 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_SoftEventStatus - +

@@ -176,7 +176,7 @@

Constructors

AxoInsight_SoftEventStatus(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

HumanReadable - +

@@ -308,7 +308,7 @@

Property Value

Interpreter - +

@@ -339,7 +339,7 @@

Property Value

Parent - +

@@ -370,7 +370,7 @@

Property Value

Symbol - +

@@ -401,7 +401,7 @@

Property Value

SymbolTail - +

@@ -432,7 +432,7 @@

Property Value

TriggerSoftEventAcknowledge - +

@@ -467,7 +467,7 @@

Methods

AddChild(ITwinObject) - +

@@ -498,7 +498,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -529,7 +529,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -560,7 +560,7 @@

Parameters

CreateEmptyPoco() - +

@@ -591,7 +591,7 @@

Returns

GetChildren() - +

@@ -622,7 +622,7 @@

Returns

GetConnector() - +

@@ -653,7 +653,7 @@

Returns

GetKids() - +

@@ -684,7 +684,7 @@

Returns

GetParent() - +

@@ -715,7 +715,7 @@

Returns

GetSymbolTail() - +

@@ -746,7 +746,7 @@

Returns

GetValueTags() - +

@@ -777,7 +777,7 @@

Returns

OnlineToPlain<T>() - +

@@ -813,7 +813,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -844,7 +844,7 @@

Returns

OnlineToPlainAsync(AxoInsight_SoftEventStatus) - +

@@ -880,7 +880,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -921,7 +921,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_SoftEventStatus) - +

@@ -957,7 +957,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -998,7 +998,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_SoftEventStatus) - +

@@ -1034,7 +1034,7 @@

Returns

Poll() - +

@@ -1060,7 +1060,7 @@

ShadowToPlain<T>() - +

@@ -1096,7 +1096,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1127,7 +1127,7 @@

Returns

ShadowToPlainAsync(AxoInsight_SoftEventStatus) - +

@@ -1163,7 +1163,7 @@

Returns

@@ -1179,7 +1179,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html index cccd48f64..f3689ecc5 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_Status - +

@@ -243,7 +243,7 @@

Constructors

AxoInsight_Status(ITwinObject, string, string) - +

@@ -282,7 +282,7 @@

Properties

ActionDescription - +

@@ -313,7 +313,7 @@

Property Value

CurrentJobName - +

@@ -345,7 +345,7 @@

Property Value

CurrentJobNumber - +

@@ -376,7 +376,7 @@

Property Value

ErrorDescription - +

@@ -407,7 +407,7 @@

Property Value

ResultDataSize - +

@@ -439,7 +439,7 @@

Property Value

UserDataSize - +

@@ -475,7 +475,7 @@

Methods

CreateEmptyPoco() - +

@@ -506,7 +506,7 @@

Returns

OnlineToPlain<T>() - +

@@ -542,7 +542,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -573,7 +573,7 @@

Returns

OnlineToPlainAsync(AxoInsight_Status) - +

@@ -609,7 +609,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -650,7 +650,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_Status) - +

@@ -686,7 +686,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -727,7 +727,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_Status) - +

@@ -763,7 +763,7 @@

Returns

Poll() - +

@@ -789,7 +789,7 @@

ShadowToPlain<T>() - +

@@ -825,7 +825,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -856,7 +856,7 @@

Returns

ShadowToPlainAsync(AxoInsight_Status) - +

@@ -892,7 +892,7 @@

Returns

@@ -908,7 +908,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html index f26569d60..b7bb8d8ec 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_UserData - +

@@ -242,7 +242,7 @@

Constructors

AxoInsight_UserData(ITwinObject, string, string) - +

@@ -281,7 +281,7 @@

Properties

Data - +

@@ -316,7 +316,7 @@

Methods

CreateEmptyPoco() - +

@@ -347,7 +347,7 @@

Returns

OnlineToPlain<T>() - +

@@ -383,7 +383,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -414,7 +414,7 @@

Returns

OnlineToPlainAsync(AxoInsight_UserData) - +

@@ -450,7 +450,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -491,7 +491,7 @@

Type Parameters

PlainToOnlineAsync(AxoInsight_UserData) - +

@@ -527,7 +527,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -568,7 +568,7 @@

Type Parameters

PlainToShadowAsync(AxoInsight_UserData) - +

@@ -604,7 +604,7 @@

Returns

Poll() - +

@@ -630,7 +630,7 @@

ShadowToPlain<T>() - +

@@ -666,7 +666,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -697,7 +697,7 @@

Returns

ShadowToPlainAsync(AxoInsight_UserData) - +

@@ -733,7 +733,7 @@

Returns

@@ -749,7 +749,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_ResultDataSize.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_ResultDataSize.html index d025fd274..ea90e05a3 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_ResultDataSize.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_ResultDataSize.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eAxoDataman_ResultDataSize - +

@@ -147,7 +147,7 @@

Fields @@ -163,7 +163,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_UserDataSize.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_UserDataSize.html index 6e3cd5426..692e011c5 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_UserDataSize.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_UserDataSize.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoDataman_UserDataSize - +

@@ -147,7 +147,7 @@

Fields @@ -163,7 +163,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_ResultDataSize.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_ResultDataSize.html index 5eee5d3e0..d12f067bb 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_ResultDataSize.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_ResultDataSize.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoInsight_ResultDataSize - +

@@ -147,7 +147,7 @@

Fields @@ -163,7 +163,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_UserDataSize.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_UserDataSize.html index c87af5eb0..dc2416bae 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_UserDataSize.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_UserDataSize.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoInsight_UserDataSize - +

@@ -147,7 +147,7 @@

Fields @@ -163,7 +163,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.html b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.html index 0641750e3..32aa9ee54 100644 --- a/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.html +++ b/docs/api/AXOpen.Components.Cognex.Vision.v_6_0_0_0.html @@ -278,7 +278,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Pneumatics.AxoCylinder.html b/docs/api/AXOpen.Components.Pneumatics.AxoCylinder.html index 91ee489b2..b2e2e877b 100644 --- a/docs/api/AXOpen.Components.Pneumatics.AxoCylinder.html +++ b/docs/api/AXOpen.Components.Pneumatics.AxoCylinder.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoCylinder - +

@@ -258,7 +258,7 @@

Constructors

AxoCylinder(ITwinObject, string, string) - +

@@ -297,7 +297,7 @@

Properties

_HomeSensor - +

@@ -331,7 +331,7 @@

Property Value

_Messenger - +

@@ -362,7 +362,7 @@

Property Value

_MoveHomeSignal - +

@@ -396,7 +396,7 @@

Property Value

_MoveToHomeTask - +

@@ -428,7 +428,7 @@

Property Value

_MoveToWorkTask - +

@@ -461,7 +461,7 @@

Property Value

_MoveWorkSignal - +

@@ -494,7 +494,7 @@

Property Value

_StopTask - +

@@ -526,7 +526,7 @@

Property Value

_WorkSensor - +

@@ -563,7 +563,7 @@

Methods

CreateEmptyPoco() - +

@@ -594,7 +594,7 @@

Returns

OnlineToPlain<T>() - +

@@ -630,7 +630,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -661,7 +661,7 @@

Returns

OnlineToPlainAsync(AxoCylinder) - +

@@ -697,7 +697,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -738,7 +738,7 @@

Type Parameters

PlainToOnlineAsync(AxoCylinder) - +

@@ -774,7 +774,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -815,7 +815,7 @@

Type Parameters

PlainToShadowAsync(AxoCylinder) - +

@@ -851,7 +851,7 @@

Returns

Poll() - +

@@ -877,7 +877,7 @@

ShadowToPlain<T>() - +

@@ -913,7 +913,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -944,7 +944,7 @@

Returns

ShadowToPlainAsync(AxoCylinder) - +

@@ -980,7 +980,7 @@

Returns

@@ -996,7 +996,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Components.Pneumatics.html b/docs/api/AXOpen.Components.Pneumatics.html index 3abd9dce9..875f45c71 100644 --- a/docs/api/AXOpen.Components.Pneumatics.html +++ b/docs/api/AXOpen.Components.Pneumatics.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoAlertDialog.html b/docs/api/AXOpen.Core.AxoAlertDialog.html index 453dce72a..aaaf31d90 100644 --- a/docs/api/AXOpen.Core.AxoAlertDialog.html +++ b/docs/api/AXOpen.Core.AxoAlertDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoAlertDialog - +

@@ -365,7 +365,7 @@

Constructors

AxoAlertDialog(ITwinObject, string, string) - +

@@ -404,7 +404,7 @@

Properties

_dialogType - +

@@ -436,7 +436,7 @@

Property Value

_message - +

@@ -467,7 +467,7 @@

Property Value

_timeToBurn - +

@@ -498,7 +498,7 @@

Property Value

_title - +

@@ -529,7 +529,7 @@

Property Value

DialogId - +

Gets or sets dialog locator id.

@@ -565,7 +565,7 @@

Methods

CreateEmptyPoco() - +

@@ -596,7 +596,7 @@

Returns

DeInitialize() - +

Removes handling of this dialogue, unsubscribing from polling and removed all event handler.

@@ -623,7 +623,7 @@

Dispose() - +

Releases additional resources allocated byt his dialog.

@@ -650,7 +650,7 @@

Initialize(Action) - +

Initialized remote task for this dialog, with polling instead of cyclic subscription.

@@ -683,7 +683,7 @@

Parameters

OnlineToPlain<T>() - +

@@ -719,7 +719,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -750,7 +750,7 @@

Returns

OnlineToPlainAsync(AxoAlertDialog) - +

@@ -786,7 +786,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -827,7 +827,7 @@

Type Parameters

PlainToOnlineAsync(AxoAlertDialog) - +

@@ -863,7 +863,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -904,7 +904,7 @@

Type Parameters

PlainToShadowAsync(AxoAlertDialog) - +

@@ -940,7 +940,7 @@

Returns

Poll() - +

@@ -966,7 +966,7 @@

ShadowToPlain<T>() - +

@@ -1002,7 +1002,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1033,7 +1033,7 @@

Returns

ShadowToPlainAsync(AxoAlertDialog) - +

@@ -1069,7 +1069,7 @@

Returns

@@ -1085,7 +1085,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoBoolArray.html b/docs/api/AXOpen.Core.AxoBoolArray.html index 7ec0d7a31..a3810fe9c 100644 --- a/docs/api/AXOpen.Core.AxoBoolArray.html +++ b/docs/api/AXOpen.Core.AxoBoolArray.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoBoolArray - +

@@ -181,7 +181,7 @@

Constructors

AxoBoolArray(ITwinObject, string, string) - +

@@ -220,7 +220,7 @@

Properties

AttributeName - +

@@ -251,7 +251,7 @@

Property Value

Connector - +

@@ -282,7 +282,7 @@

Property Value

DataChanged - +

@@ -313,7 +313,7 @@

Property Value

HumanReadable - +

@@ -344,7 +344,7 @@

Property Value

Interpreter - +

@@ -375,7 +375,7 @@

Property Value

Parent - +

@@ -406,7 +406,7 @@

Property Value

Symbol - +

@@ -437,7 +437,7 @@

Property Value

SymbolTail - +

@@ -472,7 +472,7 @@

Methods

AddChild(ITwinObject) - +

@@ -503,7 +503,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -534,7 +534,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -565,7 +565,7 @@

Parameters

CreateEmptyPoco() - +

@@ -596,7 +596,7 @@

Returns

GetChildren() - +

@@ -627,7 +627,7 @@

Returns

GetConnector() - +

@@ -658,7 +658,7 @@

Returns

GetKids() - +

@@ -689,7 +689,7 @@

Returns

GetParent() - +

@@ -720,7 +720,7 @@

Returns

GetSymbolTail() - +

@@ -751,7 +751,7 @@

Returns

GetValueTags() - +

@@ -782,7 +782,7 @@

Returns

OnlineToPlain<T>() - +

@@ -818,7 +818,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -849,7 +849,7 @@

Returns

OnlineToPlainAsync(AxoBoolArray) - +

@@ -885,7 +885,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -926,7 +926,7 @@

Type Parameters

PlainToOnlineAsync(AxoBoolArray) - +

@@ -962,7 +962,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1003,7 +1003,7 @@

Type Parameters

PlainToShadowAsync(AxoBoolArray) - +

@@ -1039,7 +1039,7 @@

Returns

Poll() - +

@@ -1065,7 +1065,7 @@

ShadowToPlain<T>() - +

@@ -1101,7 +1101,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1132,7 +1132,7 @@

Returns

ShadowToPlainAsync(AxoBoolArray) - +

@@ -1168,7 +1168,7 @@

Returns

@@ -1184,7 +1184,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoBoolArrayCommandView.html b/docs/api/AXOpen.Core.AxoBoolArrayCommandView.html index a2c8f6562..345bb477e 100644 --- a/docs/api/AXOpen.Core.AxoBoolArrayCommandView.html +++ b/docs/api/AXOpen.Core.AxoBoolArrayCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoBoolArrayCommandView - +

@@ -264,7 +264,7 @@

Constructors

AxoBoolArrayCommandView() - +

@@ -290,7 +290,7 @@

- Edit this page + Edit this page

@@ -306,7 +306,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoBoolArrayControlView.html b/docs/api/AXOpen.Core.AxoBoolArrayControlView.html index f7f03ea93..145450c72 100644 --- a/docs/api/AXOpen.Core.AxoBoolArrayControlView.html +++ b/docs/api/AXOpen.Core.AxoBoolArrayControlView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoBoolArrayControlView - +

@@ -264,7 +264,7 @@

Constructors

AxoBoolArrayControlView() - +

@@ -290,7 +290,7 @@

- Edit this page + Edit this page

@@ -306,7 +306,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoBoolArrayDisplayView.html b/docs/api/AXOpen.Core.AxoBoolArrayDisplayView.html index 9d9af4213..1dfc6c4bf 100644 --- a/docs/api/AXOpen.Core.AxoBoolArrayDisplayView.html +++ b/docs/api/AXOpen.Core.AxoBoolArrayDisplayView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoBoolArrayDisplayView - +

@@ -264,7 +264,7 @@

Constructors

AxoBoolArrayDisplayView() - +

@@ -290,7 +290,7 @@

- Edit this page + Edit this page

@@ -306,7 +306,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoBoolArrayStatusView.html b/docs/api/AXOpen.Core.AxoBoolArrayStatusView.html index 132e723c6..a65fcae59 100644 --- a/docs/api/AXOpen.Core.AxoBoolArrayStatusView.html +++ b/docs/api/AXOpen.Core.AxoBoolArrayStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoBoolArrayStatusView - +

@@ -264,7 +264,7 @@

Constructors

AxoBoolArrayStatusView() - +

@@ -290,7 +290,7 @@

- Edit this page + Edit this page

@@ -306,7 +306,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoBoolArrayView.html b/docs/api/AXOpen.Core.AxoBoolArrayView.html index a9b4087f8..9d8aec75e 100644 --- a/docs/api/AXOpen.Core.AxoBoolArrayView.html +++ b/docs/api/AXOpen.Core.AxoBoolArrayView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoBoolArrayView - +

@@ -260,7 +260,7 @@

Properties

Data - +

@@ -295,7 +295,7 @@

Methods

AddToPolling(ITwinElement, int) - +

@@ -328,7 +328,7 @@

Parameters

Dispose() - +

@@ -354,7 +354,7 @@

OnInitialized() - +

@@ -380,7 +380,7 @@

- Edit this page + Edit this page

@@ -396,7 +396,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoByteArray.html b/docs/api/AXOpen.Core.AxoByteArray.html index ea2196ed3..9521636aa 100644 --- a/docs/api/AXOpen.Core.AxoByteArray.html +++ b/docs/api/AXOpen.Core.AxoByteArray.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoByteArray - +

@@ -184,7 +184,7 @@

Constructors

AxoByteArray(ITwinObject, string, string) - +

@@ -223,7 +223,7 @@

Properties

AttributeName - +

@@ -254,7 +254,7 @@

Property Value

Connector - +

@@ -285,7 +285,7 @@

Property Value

DataChanged - +

@@ -316,7 +316,7 @@

Property Value

DisplayFormat - +

@@ -347,7 +347,7 @@

Property Value

HumanReadable - +

@@ -378,7 +378,7 @@

Property Value

Interpreter - +

@@ -409,7 +409,7 @@

Property Value

Parent - +

@@ -440,7 +440,7 @@

Property Value

Symbol - +

@@ -471,7 +471,7 @@

Property Value

SymbolTail - +

@@ -506,7 +506,7 @@

Methods

AddChild(ITwinObject) - +

@@ -537,7 +537,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -568,7 +568,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -599,7 +599,7 @@

Parameters

CreateEmptyPoco() - +

@@ -630,7 +630,7 @@

Returns

GetChildren() - +

@@ -661,7 +661,7 @@

Returns

GetConnector() - +

@@ -692,7 +692,7 @@

Returns

GetKids() - +

@@ -723,7 +723,7 @@

Returns

GetParent() - +

@@ -754,7 +754,7 @@

Returns

GetSymbolTail() - +

@@ -785,7 +785,7 @@

Returns

GetValueTags() - +

@@ -816,7 +816,7 @@

Returns

OnlineToPlain<T>() - +

@@ -852,7 +852,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -883,7 +883,7 @@

Returns

OnlineToPlainAsync(AxoByteArray) - +

@@ -919,7 +919,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -960,7 +960,7 @@

Type Parameters

PlainToOnlineAsync(AxoByteArray) - +

@@ -996,7 +996,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1037,7 +1037,7 @@

Type Parameters

PlainToShadowAsync(AxoByteArray) - +

@@ -1073,7 +1073,7 @@

Returns

Poll() - +

@@ -1099,7 +1099,7 @@

ShadowToPlain<T>() - +

@@ -1135,7 +1135,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1166,7 +1166,7 @@

Returns

ShadowToPlainAsync(AxoByteArray) - +

@@ -1202,7 +1202,7 @@

Returns

@@ -1218,7 +1218,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoByteArrayCommandView.html b/docs/api/AXOpen.Core.AxoByteArrayCommandView.html index 4f0809820..f77ece372 100644 --- a/docs/api/AXOpen.Core.AxoByteArrayCommandView.html +++ b/docs/api/AXOpen.Core.AxoByteArrayCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoByteArrayCommandView - +

@@ -267,7 +267,7 @@

Constructors

AxoByteArrayCommandView() - +

@@ -293,7 +293,7 @@

- Edit this page + Edit this page

@@ -309,7 +309,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoByteArrayControlView.html b/docs/api/AXOpen.Core.AxoByteArrayControlView.html index 5cb6183bc..15da5f062 100644 --- a/docs/api/AXOpen.Core.AxoByteArrayControlView.html +++ b/docs/api/AXOpen.Core.AxoByteArrayControlView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoByteArrayControlView - +

@@ -267,7 +267,7 @@

Constructors

AxoByteArrayControlView() - +

@@ -293,7 +293,7 @@

- Edit this page + Edit this page

@@ -309,7 +309,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoByteArrayDisplayView.html b/docs/api/AXOpen.Core.AxoByteArrayDisplayView.html index 84652a1ed..ff03d382c 100644 --- a/docs/api/AXOpen.Core.AxoByteArrayDisplayView.html +++ b/docs/api/AXOpen.Core.AxoByteArrayDisplayView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoByteArrayDisplayView - +

@@ -267,7 +267,7 @@

Constructors

AxoByteArrayDisplayView() - +

@@ -293,7 +293,7 @@

- Edit this page + Edit this page

@@ -309,7 +309,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoByteArrayStatusView.html b/docs/api/AXOpen.Core.AxoByteArrayStatusView.html index a6b386100..a82a6cc20 100644 --- a/docs/api/AXOpen.Core.AxoByteArrayStatusView.html +++ b/docs/api/AXOpen.Core.AxoByteArrayStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoByteArrayStatusView - +

@@ -267,7 +267,7 @@

Constructors

AxoByteArrayStatusView() - +

@@ -293,7 +293,7 @@

- Edit this page + Edit this page

@@ -309,7 +309,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoByteArrayView.html b/docs/api/AXOpen.Core.AxoByteArrayView.html index b840b840d..23bfc0f53 100644 --- a/docs/api/AXOpen.Core.AxoByteArrayView.html +++ b/docs/api/AXOpen.Core.AxoByteArrayView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoByteArrayView - +

@@ -257,7 +257,7 @@

Properties

CurrentDisplayFormat - +

@@ -288,7 +288,7 @@

Property Value

Data - +

@@ -323,7 +323,7 @@

Methods

AddToPolling(ITwinElement, int) - +

@@ -356,7 +356,7 @@

Parameters

Dispose() - +

@@ -382,7 +382,7 @@

OnInitialized() - +

@@ -408,7 +408,7 @@

OnInitializedAsync() - +

@@ -439,7 +439,7 @@

Returns

@@ -455,7 +455,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoComponent.html b/docs/api/AXOpen.Core.AxoComponent.html index eba56219f..36b1dca3e 100644 --- a/docs/api/AXOpen.Core.AxoComponent.html +++ b/docs/api/AXOpen.Core.AxoComponent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoComponent - +

@@ -254,7 +254,7 @@

Constructors

AxoComponent(ITwinObject, string, string) - +

@@ -293,7 +293,7 @@

Properties

_isManuallyControllable - +

@@ -329,7 +329,7 @@

Methods

CreateEmptyPoco() - +

@@ -360,7 +360,7 @@

Returns

OnlineToPlain<T>() - +

@@ -396,7 +396,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -427,7 +427,7 @@

Returns

OnlineToPlainAsync(AxoComponent) - +

@@ -463,7 +463,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -504,7 +504,7 @@

Type Parameters

PlainToOnlineAsync(AxoComponent) - +

@@ -540,7 +540,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -581,7 +581,7 @@

Type Parameters

PlainToShadowAsync(AxoComponent) - +

@@ -617,7 +617,7 @@

Returns

Poll() - +

@@ -643,7 +643,7 @@

ShadowToPlain<T>() - +

@@ -679,7 +679,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -710,7 +710,7 @@

Returns

ShadowToPlainAsync(AxoComponent) - +

@@ -746,7 +746,7 @@

Returns

@@ -762,7 +762,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoComponentCommandView.html b/docs/api/AXOpen.Core.AxoComponentCommandView.html index 3b7543f79..3a8b620bb 100644 --- a/docs/api/AXOpen.Core.AxoComponentCommandView.html +++ b/docs/api/AXOpen.Core.AxoComponentCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoComponentCommandView - +

@@ -264,7 +264,7 @@

Constructors

AxoComponentCommandView() - +

@@ -290,7 +290,7 @@

- Edit this page + Edit this page

@@ -306,7 +306,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoComponentStatusView.html b/docs/api/AXOpen.Core.AxoComponentStatusView.html index 39c853cb1..acfe2a899 100644 --- a/docs/api/AXOpen.Core.AxoComponentStatusView.html +++ b/docs/api/AXOpen.Core.AxoComponentStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoComponentStatusView - +

@@ -264,7 +264,7 @@

Constructors

AxoComponentStatusView() - +

@@ -290,7 +290,7 @@

- Edit this page + Edit this page

@@ -306,7 +306,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoComponentView.eAlarmLevel.html b/docs/api/AXOpen.Core.AxoComponentView.eAlarmLevel.html index 1535063de..ecfee4be8 100644 --- a/docs/api/AXOpen.Core.AxoComponentView.eAlarmLevel.html +++ b/docs/api/AXOpen.Core.AxoComponentView.eAlarmLevel.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum AxoComponentView.eAlarmLevel - +

@@ -145,7 +145,7 @@

Fields @@ -161,7 +161,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoComponentView.html b/docs/api/AXOpen.Core.AxoComponentView.html index a1dd9c76b..16d8fea7d 100644 --- a/docs/api/AXOpen.Core.AxoComponentView.html +++ b/docs/api/AXOpen.Core.AxoComponentView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoComponentView - +

@@ -258,7 +258,7 @@

Properties

IsControllable - +

@@ -294,7 +294,7 @@

Methods

AddToPolling(ITwinElement, int) - +

@@ -327,7 +327,7 @@

Parameters

OnInitialized() - +

@@ -353,7 +353,7 @@

OnInitializedAsync() - +

@@ -384,7 +384,7 @@

Returns

@@ -400,7 +400,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoContext.html b/docs/api/AXOpen.Core.AxoContext.html index 611804376..a9ab605a2 100644 --- a/docs/api/AXOpen.Core.AxoContext.html +++ b/docs/api/AXOpen.Core.AxoContext.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoContext - +

@@ -176,7 +176,7 @@

Constructors

AxoContext(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

HumanReadable - +

@@ -308,7 +308,7 @@

Property Value

Interpreter - +

@@ -339,7 +339,7 @@

Property Value

Parent - +

@@ -370,7 +370,7 @@

Property Value

Symbol - +

@@ -401,7 +401,7 @@

Property Value

SymbolTail - +

@@ -436,7 +436,7 @@

Methods

AddChild(ITwinObject) - +

@@ -467,7 +467,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -498,7 +498,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -529,7 +529,7 @@

Parameters

CreateEmptyPoco() - +

@@ -560,7 +560,7 @@

Returns

GetChildren() - +

@@ -591,7 +591,7 @@

Returns

GetConnector() - +

@@ -622,7 +622,7 @@

Returns

GetKids() - +

@@ -653,7 +653,7 @@

Returns

GetParent() - +

@@ -684,7 +684,7 @@

Returns

GetSymbolTail() - +

@@ -715,7 +715,7 @@

Returns

GetValueTags() - +

@@ -746,7 +746,7 @@

Returns

OnlineToPlain<T>() - +

@@ -782,7 +782,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -813,7 +813,7 @@

Returns

OnlineToPlainAsync(AxoContext) - +

@@ -849,7 +849,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -890,7 +890,7 @@

Type Parameters

PlainToOnlineAsync(AxoContext) - +

@@ -926,7 +926,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -967,7 +967,7 @@

Type Parameters

PlainToShadowAsync(AxoContext) - +

@@ -1003,7 +1003,7 @@

Returns

Poll() - +

@@ -1029,7 +1029,7 @@

ShadowToPlain<T>() - +

@@ -1065,7 +1065,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1096,7 +1096,7 @@

Returns

ShadowToPlainAsync(AxoContext) - +

@@ -1132,7 +1132,7 @@

Returns

@@ -1148,7 +1148,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoCoordinatorStates.html b/docs/api/AXOpen.Core.AxoCoordinatorStates.html index 560fb7d06..1c1e489ff 100644 --- a/docs/api/AXOpen.Core.AxoCoordinatorStates.html +++ b/docs/api/AXOpen.Core.AxoCoordinatorStates.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum AxoCoordinatorStates - +

@@ -141,7 +141,7 @@

Fields @@ -157,7 +157,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoDialog.html b/docs/api/AXOpen.Core.AxoDialog.html index 568f3f6df..6b97e42d7 100644 --- a/docs/api/AXOpen.Core.AxoDialog.html +++ b/docs/api/AXOpen.Core.AxoDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDialog - +

@@ -391,7 +391,7 @@

Constructors

AxoDialog(ITwinObject, string, string) - +

@@ -430,7 +430,7 @@

Properties

_answer - +

@@ -462,7 +462,7 @@

Property Value

_caption - +

@@ -493,7 +493,7 @@

Property Value

_closeSignal - +

@@ -524,7 +524,7 @@

Property Value

_dialogType - +

@@ -556,7 +556,7 @@

Property Value

_externalCloseReq - +

@@ -587,7 +587,7 @@

Property Value

_hasCancel - +

@@ -618,7 +618,7 @@

Property Value

_hasNo - +

@@ -649,7 +649,7 @@

Property Value

_hasOK - +

@@ -680,7 +680,7 @@

Property Value

_hasYes - +

@@ -711,7 +711,7 @@

Property Value

_risingEdge - +

@@ -742,7 +742,7 @@

Property Value

_text - +

@@ -777,7 +777,7 @@

Methods

CreateEmptyPoco() - +

@@ -808,7 +808,7 @@

Returns

OnlineToPlain<T>() - +

@@ -844,7 +844,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -875,7 +875,7 @@

Returns

OnlineToPlainAsync(AxoDialog) - +

@@ -911,7 +911,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -952,7 +952,7 @@

Type Parameters

PlainToOnlineAsync(AxoDialog) - +

@@ -988,7 +988,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1029,7 +1029,7 @@

Type Parameters

PlainToShadowAsync(AxoDialog) - +

@@ -1065,7 +1065,7 @@

Returns

Poll() - +

@@ -1091,7 +1091,7 @@

ShadowToPlain<T>() - +

@@ -1127,7 +1127,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1158,7 +1158,7 @@

Returns

ShadowToPlainAsync(AxoDialog) - +

@@ -1194,7 +1194,7 @@

Returns

@@ -1210,7 +1210,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoDialogBase.html b/docs/api/AXOpen.Core.AxoDialogBase.html index f02199fa8..5b634b45f 100644 --- a/docs/api/AXOpen.Core.AxoDialogBase.html +++ b/docs/api/AXOpen.Core.AxoDialogBase.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogBase - +

@@ -370,7 +370,7 @@

Constructors

AxoDialogBase(ITwinObject, string, string) - +

@@ -409,7 +409,7 @@

Properties

DialogId - +

@@ -444,7 +444,7 @@

Methods

CreateEmptyPoco() - +

@@ -475,7 +475,7 @@

Returns

DeInitialize() - +

Removes handling of this dialogue, unsubscribing from polling and removed all event handler.

@@ -502,7 +502,7 @@

Dispose() - +

Releases additional resources allocated byt his dialog.

@@ -529,7 +529,7 @@

Initialize(Action) - +

Initialized remote task for this dialog, with polling instead of cyclic subscription.

@@ -562,7 +562,7 @@

Parameters

OnlineToPlain<T>() - +

@@ -598,7 +598,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -629,7 +629,7 @@

Returns

OnlineToPlainAsync(AxoDialogBase) - +

@@ -665,7 +665,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -706,7 +706,7 @@

Type Parameters

PlainToOnlineAsync(AxoDialogBase) - +

@@ -742,7 +742,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -783,7 +783,7 @@

Type Parameters

PlainToShadowAsync(AxoDialogBase) - +

@@ -819,7 +819,7 @@

Returns

Poll() - +

@@ -845,7 +845,7 @@

ShadowToPlain<T>() - +

@@ -881,7 +881,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -912,7 +912,7 @@

Returns

ShadowToPlainAsync(AxoDialogBase) - +

@@ -948,7 +948,7 @@

Returns

@@ -964,7 +964,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoDialogDialogView.html b/docs/api/AXOpen.Core.AxoDialogDialogView.html index 5828b9f41..3675f52a4 100644 --- a/docs/api/AXOpen.Core.AxoDialogDialogView.html +++ b/docs/api/AXOpen.Core.AxoDialogDialogView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogDialogView - +

@@ -279,7 +279,7 @@

Methods

DialogAnswerCancel() - +

@@ -310,7 +310,7 @@

Returns

DialogAnswerNo() - +

@@ -341,7 +341,7 @@

Returns

DialogAnswerOk() - +

@@ -372,7 +372,7 @@

Returns

DialogAnswerYes() - +

@@ -403,7 +403,7 @@

Returns

Dispose() - +

@@ -429,7 +429,7 @@

OnInitialized() - +

@@ -455,7 +455,7 @@

- Edit this page + Edit this page

@@ -471,7 +471,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoMomentaryTask.html b/docs/api/AXOpen.Core.AxoMomentaryTask.html index b5931ca13..250b683ba 100644 --- a/docs/api/AXOpen.Core.AxoMomentaryTask.html +++ b/docs/api/AXOpen.Core.AxoMomentaryTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMomentaryTask - +

@@ -242,7 +242,7 @@

Constructors

AxoMomentaryTask(ITwinObject, string, string) - +

@@ -281,7 +281,7 @@

Properties

AttributeStateOffDesc - +

@@ -312,7 +312,7 @@

Property Value

AttributeStateOnDesc - +

@@ -343,7 +343,7 @@

Property Value

IsDisabled - +

@@ -375,7 +375,7 @@

Property Value

RemoteSwitchOn - +

@@ -406,7 +406,7 @@

Property Value

State - +

@@ -442,7 +442,7 @@

Methods

CreateEmptyPoco() - +

@@ -473,7 +473,7 @@

Returns

OnlineToPlain<T>() - +

@@ -509,7 +509,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -540,7 +540,7 @@

Returns

OnlineToPlainAsync(AxoMomentaryTask) - +

@@ -576,7 +576,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -617,7 +617,7 @@

Type Parameters

PlainToOnlineAsync(AxoMomentaryTask) - +

@@ -653,7 +653,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -694,7 +694,7 @@

Type Parameters

PlainToShadowAsync(AxoMomentaryTask) - +

@@ -730,7 +730,7 @@

Returns

Poll() - +

@@ -756,7 +756,7 @@

ShadowToPlain<T>() - +

@@ -792,7 +792,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -823,7 +823,7 @@

Returns

ShadowToPlainAsync(AxoMomentaryTask) - +

@@ -859,7 +859,7 @@

Returns

@@ -875,7 +875,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoMomentaryTaskCommandView.html b/docs/api/AXOpen.Core.AxoMomentaryTaskCommandView.html index 4e2591d2f..1762b8b60 100644 --- a/docs/api/AXOpen.Core.AxoMomentaryTaskCommandView.html +++ b/docs/api/AXOpen.Core.AxoMomentaryTaskCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoMomentaryTaskCommandView - +

@@ -270,7 +270,7 @@

Constructors

AxoMomentaryTaskCommandView() - +

@@ -296,7 +296,7 @@

- Edit this page + Edit this page

@@ -312,7 +312,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoMomentaryTaskStatusView.html b/docs/api/AXOpen.Core.AxoMomentaryTaskStatusView.html index badd00d5a..e7f034ad9 100644 --- a/docs/api/AXOpen.Core.AxoMomentaryTaskStatusView.html +++ b/docs/api/AXOpen.Core.AxoMomentaryTaskStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMomentaryTaskStatusView - +

@@ -270,7 +270,7 @@

Constructors

AxoMomentaryTaskStatusView() - +

@@ -296,7 +296,7 @@

- Edit this page + Edit this page

@@ -312,7 +312,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoMomentaryTaskView.html b/docs/api/AXOpen.Core.AxoMomentaryTaskView.html index 6c82c4b9c..2509f124d 100644 --- a/docs/api/AXOpen.Core.AxoMomentaryTaskView.html +++ b/docs/api/AXOpen.Core.AxoMomentaryTaskView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMomentaryTaskView - +

@@ -264,7 +264,7 @@

Properties

Description - +

@@ -295,7 +295,7 @@

Property Value

Disable - +

@@ -327,7 +327,7 @@

Property Value

IsDisabled - +

@@ -362,7 +362,7 @@

Methods

OnInitialized() - +

@@ -388,7 +388,7 @@

- Edit this page + Edit this page

@@ -404,7 +404,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoObject.html b/docs/api/AXOpen.Core.AxoObject.html index 135a7a2aa..1a8b7226c 100644 --- a/docs/api/AXOpen.Core.AxoObject.html +++ b/docs/api/AXOpen.Core.AxoObject.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoObject - +

@@ -188,7 +188,7 @@

Constructors

AxoObject(ITwinObject, string, string) - +

@@ -227,7 +227,7 @@

Properties

AttributeName - +

@@ -258,7 +258,7 @@

Property Value

Connector - +

@@ -289,7 +289,7 @@

Property Value

HumanReadable - +

@@ -320,7 +320,7 @@

Property Value

Identity - +

@@ -353,7 +353,7 @@

Property Value

Interpreter - +

@@ -384,7 +384,7 @@

Property Value

Parent - +

@@ -415,7 +415,7 @@

Property Value

Symbol - +

@@ -446,7 +446,7 @@

Property Value

SymbolTail - +

@@ -481,7 +481,7 @@

Methods

AddChild(ITwinObject) - +

@@ -512,7 +512,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -543,7 +543,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -574,7 +574,7 @@

Parameters

CreateEmptyPoco() - +

@@ -605,7 +605,7 @@

Returns

GetChildren() - +

@@ -636,7 +636,7 @@

Returns

GetConnector() - +

@@ -667,7 +667,7 @@

Returns

GetKids() - +

@@ -698,7 +698,7 @@

Returns

GetParent() - +

@@ -729,7 +729,7 @@

Returns

GetSymbolTail() - +

@@ -760,7 +760,7 @@

Returns

GetValueTags() - +

@@ -791,7 +791,7 @@

Returns

OnlineToPlain<T>() - +

@@ -827,7 +827,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -858,7 +858,7 @@

Returns

OnlineToPlainAsync(AxoObject) - +

@@ -894,7 +894,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -935,7 +935,7 @@

Type Parameters

PlainToOnlineAsync(AxoObject) - +

@@ -971,7 +971,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1012,7 +1012,7 @@

Type Parameters

PlainToShadowAsync(AxoObject) - +

@@ -1048,7 +1048,7 @@

Returns

Poll() - +

@@ -1074,7 +1074,7 @@

ShadowToPlain<T>() - +

@@ -1110,7 +1110,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1141,7 +1141,7 @@

Returns

ShadowToPlainAsync(AxoObject) - +

@@ -1177,7 +1177,7 @@

Returns

@@ -1193,7 +1193,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoRemoteTask.html b/docs/api/AXOpen.Core.AxoRemoteTask.html index bee7095f0..faa128dfd 100644 --- a/docs/api/AXOpen.Core.AxoRemoteTask.html +++ b/docs/api/AXOpen.Core.AxoRemoteTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoRemoteTask - +

@@ -309,7 +309,7 @@

Constructors

AxoRemoteTask(ITwinObject, string, string) - +

@@ -347,7 +347,7 @@

Fields

_defferedActionCount - +

@@ -382,7 +382,7 @@

Properties

DeferredAction - +

@@ -413,7 +413,7 @@

Property Value

DoneSignature - +

@@ -444,7 +444,7 @@

Property Value

HasRemoteException - +

@@ -475,7 +475,7 @@

Property Value

IsBeingCalledCounter - +

@@ -506,7 +506,7 @@

Property Value

IsInitialized - +

@@ -537,7 +537,7 @@

Property Value

RemoteExceptionDetails - +

Gets string representation of the current exception on this remote task.

@@ -569,7 +569,7 @@

Property Value

RemoteExecutionException - +

Gets the exception that occurred during the last execution.

@@ -601,7 +601,7 @@

Property Value

TaskHasRemoteException - +

@@ -632,7 +632,7 @@

Property Value

TaskNotInitialized - +

@@ -667,7 +667,7 @@

Methods

CreateEmptyPoco() - +

@@ -698,7 +698,7 @@

Returns

DeInitialize() - +

Removes currently bound DeferredAction from the execution of this AxoRemoteTask

@@ -725,7 +725,7 @@

ExecuteAsync(ITwinPrimitive, ValueChangedEventArgs) - +

@@ -758,7 +758,7 @@

Parameters

Initialize(Action) - +

Initializes this AxoRemoteTask.

@@ -791,7 +791,7 @@

Parameters

Initialize(Func<bool>) - +

Initializes this AxoRemoteTask.

@@ -824,7 +824,7 @@

Parameters

InitializeExclusively(Action) - +

Initializes this AxoRemoteTask exclusively for this DeferredAction. Any following attempt @@ -858,7 +858,7 @@

Parameters

InitializeExclusively(Func<bool>) - +

Initializes this AxoRemoteTask exclusively for this DeferredAction. Any following attempt @@ -892,7 +892,7 @@

Parameters

OnlineToPlain<T>() - +

@@ -928,7 +928,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -959,7 +959,7 @@

Returns

OnlineToPlainAsync(AxoRemoteTask) - +

@@ -995,7 +995,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1036,7 +1036,7 @@

Type Parameters

PlainToOnlineAsync(AxoRemoteTask) - +

@@ -1072,7 +1072,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1113,7 +1113,7 @@

Type Parameters

PlainToShadowAsync(AxoRemoteTask) - +

@@ -1149,7 +1149,7 @@

Returns

Poll() - +

@@ -1175,7 +1175,7 @@

ResetExecution() - +

Resets the resets this instance of AxoRemoteTask.

@@ -1207,7 +1207,7 @@

Returns

ShadowToPlain<T>() - +

@@ -1243,7 +1243,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1274,7 +1274,7 @@

Returns

ShadowToPlainAsync(AxoRemoteTask) - +

@@ -1313,7 +1313,7 @@

Events

PropertyChanged - +

@@ -1344,7 +1344,7 @@

Event Type

@@ -1360,7 +1360,7 @@

Event Type

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoSequencer.html b/docs/api/AXOpen.Core.AxoSequencer.html index 778f855e3..3eb49e912 100644 --- a/docs/api/AXOpen.Core.AxoSequencer.html +++ b/docs/api/AXOpen.Core.AxoSequencer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoSequencer - +

@@ -307,7 +307,7 @@

Constructors

AxoSequencer(ITwinObject, string, string) - +

@@ -346,7 +346,7 @@

Properties

AfterStep - +

@@ -377,7 +377,7 @@

Property Value

BeforeStep - +

@@ -408,7 +408,7 @@

Property Value

CurrentOrder - +

@@ -439,7 +439,7 @@

Property Value

CurrentStep - +

@@ -470,7 +470,7 @@

Property Value

SequenceMode - +

@@ -502,7 +502,7 @@

Property Value

StepBackwardCommand - +

@@ -533,7 +533,7 @@

Property Value

StepForwardCommand - +

@@ -564,7 +564,7 @@

Property Value

StepIn - +

@@ -595,7 +595,7 @@

Property Value

SteppingMode - +

@@ -631,7 +631,7 @@

Methods

CreateEmptyPoco() - +

@@ -662,7 +662,7 @@

Returns

OnlineToPlain<T>() - +

@@ -698,7 +698,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -729,7 +729,7 @@

Returns

OnlineToPlainAsync(AxoSequencer) - +

@@ -765,7 +765,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -806,7 +806,7 @@

Type Parameters

PlainToOnlineAsync(AxoSequencer) - +

@@ -842,7 +842,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -883,7 +883,7 @@

Type Parameters

PlainToShadowAsync(AxoSequencer) - +

@@ -919,7 +919,7 @@

Returns

Poll() - +

@@ -945,7 +945,7 @@

ShadowToPlain<T>() - +

@@ -981,7 +981,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1012,7 +1012,7 @@

Returns

ShadowToPlainAsync(AxoSequencer) - +

@@ -1048,7 +1048,7 @@

Returns

@@ -1064,7 +1064,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoSequencerCommandView.html b/docs/api/AXOpen.Core.AxoSequencerCommandView.html index 78a21ee67..18e57aec8 100644 --- a/docs/api/AXOpen.Core.AxoSequencerCommandView.html +++ b/docs/api/AXOpen.Core.AxoSequencerCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoSequencerCommandView - +

@@ -279,7 +279,7 @@

Constructors

AxoSequencerCommandView() - +

@@ -305,7 +305,7 @@

- Edit this page + Edit this page

@@ -321,7 +321,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoSequencerContainer.html b/docs/api/AXOpen.Core.AxoSequencerContainer.html index 85bef3bc2..e757fe87b 100644 --- a/docs/api/AXOpen.Core.AxoSequencerContainer.html +++ b/docs/api/AXOpen.Core.AxoSequencerContainer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoSequencerContainer - +

@@ -341,7 +341,7 @@

Constructors

AxoSequencerContainer(ITwinObject, string, string) - +

@@ -380,7 +380,7 @@

Properties

TabName - +

@@ -415,7 +415,7 @@

Methods

CreateEmptyPoco() - +

@@ -446,7 +446,7 @@

Returns

OnlineToPlain<T>() - +

@@ -482,7 +482,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -513,7 +513,7 @@

Returns

OnlineToPlainAsync(AxoSequencerContainer) - +

@@ -549,7 +549,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -590,7 +590,7 @@

Type Parameters

PlainToOnlineAsync(AxoSequencerContainer) - +

@@ -626,7 +626,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -667,7 +667,7 @@

Type Parameters

PlainToShadowAsync(AxoSequencerContainer) - +

@@ -703,7 +703,7 @@

Returns

Poll() - +

@@ -729,7 +729,7 @@

ShadowToPlain<T>() - +

@@ -765,7 +765,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -796,7 +796,7 @@

Returns

ShadowToPlainAsync(AxoSequencerContainer) - +

@@ -832,7 +832,7 @@

Returns

@@ -848,7 +848,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoSequencerStatusView.html b/docs/api/AXOpen.Core.AxoSequencerStatusView.html index 9fad0cdcf..345efd638 100644 --- a/docs/api/AXOpen.Core.AxoSequencerStatusView.html +++ b/docs/api/AXOpen.Core.AxoSequencerStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoSequencerStatusView - +

@@ -279,7 +279,7 @@

Constructors

AxoSequencerStatusView() - +

@@ -305,7 +305,7 @@

- Edit this page + Edit this page

@@ -321,7 +321,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoSequencerView.html b/docs/api/AXOpen.Core.AxoSequencerView.html index 7da2f32a2..90ebcdd6c 100644 --- a/docs/api/AXOpen.Core.AxoSequencerView.html +++ b/docs/api/AXOpen.Core.AxoSequencerView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoSequencerView - +

@@ -261,7 +261,7 @@

Properties

HasSettings - +

@@ -293,7 +293,7 @@

Property Value

HasStepControls - +

@@ -325,7 +325,7 @@

Property Value

HasStepDetails - +

@@ -357,7 +357,7 @@

Property Value

HasTaskControlButton - +

@@ -389,7 +389,7 @@

Property Value

IsControllable - +

@@ -421,7 +421,7 @@

Property Value

Steps - +

@@ -456,7 +456,7 @@

Methods

AddToPolling(ITwinElement, int) - +

@@ -489,7 +489,7 @@

Parameters

OnInitialized() - +

@@ -515,7 +515,7 @@

- Edit this page + Edit this page

@@ -531,7 +531,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoStep.html b/docs/api/AXOpen.Core.AxoStep.html index 8f9ed8e15..603cc91cf 100644 --- a/docs/api/AXOpen.Core.AxoStep.html +++ b/docs/api/AXOpen.Core.AxoStep.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoStep - +

@@ -302,7 +302,7 @@

Constructors

AxoStep(ITwinObject, string, string) - +

@@ -341,7 +341,7 @@

Properties

Description - +

@@ -372,7 +372,7 @@

Property Value

IsActive - +

@@ -403,7 +403,7 @@

Property Value

IsEnabled - +

@@ -434,7 +434,7 @@

Property Value

Order - +

@@ -466,7 +466,7 @@

Property Value

StepDescription - +

@@ -501,7 +501,7 @@

Methods

CreateEmptyPoco() - +

@@ -532,7 +532,7 @@

Returns

OnlineToPlain<T>() - +

@@ -568,7 +568,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -599,7 +599,7 @@

Returns

OnlineToPlainAsync(AxoStep) - +

@@ -635,7 +635,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -676,7 +676,7 @@

Type Parameters

PlainToOnlineAsync(AxoStep) - +

@@ -712,7 +712,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -753,7 +753,7 @@

Type Parameters

PlainToShadowAsync(AxoStep) - +

@@ -789,7 +789,7 @@

Returns

Poll() - +

@@ -815,7 +815,7 @@

ShadowToPlain<T>() - +

@@ -851,7 +851,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -882,7 +882,7 @@

Returns

ShadowToPlainAsync(AxoStep) - +

@@ -918,7 +918,7 @@

Returns

@@ -934,7 +934,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoStepCommandView.html b/docs/api/AXOpen.Core.AxoStepCommandView.html index eb84f5f25..536bf6b78 100644 --- a/docs/api/AXOpen.Core.AxoStepCommandView.html +++ b/docs/api/AXOpen.Core.AxoStepCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoStepCommandView - +

@@ -264,7 +264,7 @@

Constructors

AxoStepCommandView() - +

@@ -290,7 +290,7 @@

- Edit this page + Edit this page

@@ -306,7 +306,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoStepStatusView.html b/docs/api/AXOpen.Core.AxoStepStatusView.html index 8836b7a10..bd98a954b 100644 --- a/docs/api/AXOpen.Core.AxoStepStatusView.html +++ b/docs/api/AXOpen.Core.AxoStepStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoStepStatusView - +

@@ -264,7 +264,7 @@

Constructors

AxoStepStatusView() - +

@@ -290,7 +290,7 @@

- Edit this page + Edit this page

@@ -306,7 +306,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoStepView.html b/docs/api/AXOpen.Core.AxoStepView.html index fdf5a3eab..e19665a30 100644 --- a/docs/api/AXOpen.Core.AxoStepView.html +++ b/docs/api/AXOpen.Core.AxoStepView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoStepView - +

@@ -264,7 +264,7 @@

Properties

IsControllable - +

@@ -300,7 +300,7 @@

Methods

OnInitialized() - +

@@ -326,7 +326,7 @@

- Edit this page + Edit this page

@@ -342,7 +342,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTask.html b/docs/api/AXOpen.Core.AxoTask.html index f44c96d5f..8b985b686 100644 --- a/docs/api/AXOpen.Core.AxoTask.html +++ b/docs/api/AXOpen.Core.AxoTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoTask - +

@@ -258,7 +258,7 @@

Constructors

AxoTask(ITwinObject, string, string) - +

@@ -297,7 +297,7 @@

Properties

_CyclicExecuteIsNotCalled - +

@@ -328,7 +328,7 @@

Property Value

Duration - +

@@ -360,7 +360,7 @@

Property Value

ErrorDetails - +

@@ -391,7 +391,7 @@

Property Value

IsDisabled - +

@@ -422,7 +422,7 @@

Property Value

RemoteAbort - +

@@ -453,7 +453,7 @@

Property Value

RemoteInvoke - +

@@ -484,7 +484,7 @@

Property Value

RemoteRestore - +

@@ -515,7 +515,7 @@

Property Value

RemoteResume - +

@@ -546,7 +546,7 @@

Property Value

StartSignature - +

@@ -577,7 +577,7 @@

Property Value

StartTimeStamp - +

@@ -609,7 +609,7 @@

Property Value

Status - +

@@ -646,7 +646,7 @@

Methods

Abort() - +

@@ -672,7 +672,7 @@

CreateEmptyPoco() - +

@@ -703,7 +703,7 @@

Returns

ExecuteAsync(object?) - +

Executes this task.

@@ -740,7 +740,7 @@

Returns

OnlineToPlain<T>() - +

@@ -776,7 +776,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -807,7 +807,7 @@

Returns

OnlineToPlainAsync(AxoTask) - +

@@ -843,7 +843,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -884,7 +884,7 @@

Type Parameters

PlainToOnlineAsync(AxoTask) - +

@@ -920,7 +920,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -961,7 +961,7 @@

Type Parameters

PlainToShadowAsync(AxoTask) - +

@@ -997,7 +997,7 @@

Returns

Poll() - +

@@ -1023,7 +1023,7 @@

Restore() - +

Restore this task to ready state.

@@ -1050,7 +1050,7 @@

ResumeTask() - +

@@ -1076,7 +1076,7 @@

ShadowToPlain<T>() - +

@@ -1112,7 +1112,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1143,7 +1143,7 @@

Returns

ShadowToPlainAsync(AxoTask) - +

@@ -1179,7 +1179,7 @@

Returns

@@ -1195,7 +1195,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTaskCommandView.html b/docs/api/AXOpen.Core.AxoTaskCommandView.html index 6a2b28560..73e00c3bb 100644 --- a/docs/api/AXOpen.Core.AxoTaskCommandView.html +++ b/docs/api/AXOpen.Core.AxoTaskCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoTaskCommandView - +

@@ -282,7 +282,7 @@

Constructors

AxoTaskCommandView() - +

@@ -308,7 +308,7 @@

- Edit this page + Edit this page

@@ -324,7 +324,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTaskStatusView.html b/docs/api/AXOpen.Core.AxoTaskStatusView.html index 117d4e226..b82983e3a 100644 --- a/docs/api/AXOpen.Core.AxoTaskStatusView.html +++ b/docs/api/AXOpen.Core.AxoTaskStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoTaskStatusView - +

@@ -282,7 +282,7 @@

Constructors

AxoTaskStatusView() - +

@@ -308,7 +308,7 @@

- Edit this page + Edit this page

@@ -324,7 +324,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTaskView.html b/docs/api/AXOpen.Core.AxoTaskView.html index 3049a1122..1c6c64ba2 100644 --- a/docs/api/AXOpen.Core.AxoTaskView.html +++ b/docs/api/AXOpen.Core.AxoTaskView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoTaskView - +

@@ -261,7 +261,7 @@

Properties

AuthenticationStateProvider - +

@@ -293,7 +293,7 @@

Property Value

Description - +

@@ -324,7 +324,7 @@

Property Value

Disable - +

@@ -356,7 +356,7 @@

Property Value

HideRestoreButton - +

@@ -388,7 +388,7 @@

Property Value

IsDisabled - +

@@ -423,7 +423,7 @@

Methods

AddToPolling(ITwinElement, int) - +

@@ -456,7 +456,7 @@

Parameters

GetCurrentUserIdentity() - +

@@ -487,7 +487,7 @@

Returns

GetCurrentUserName() - +

@@ -518,7 +518,7 @@

Returns

OnInitialized() - +

@@ -544,7 +544,7 @@

- Edit this page + Edit this page

@@ -560,7 +560,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTextList.html b/docs/api/AXOpen.Core.AxoTextList.html index 9fcc94a27..1357ba74f 100644 --- a/docs/api/AXOpen.Core.AxoTextList.html +++ b/docs/api/AXOpen.Core.AxoTextList.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoTextList - +

@@ -175,7 +175,7 @@

Constructors

AxoTextList(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

HumanReadable - +

@@ -307,7 +307,7 @@

Property Value

Id - +

@@ -338,7 +338,7 @@

Property Value

Interpreter - +

@@ -369,7 +369,7 @@

Property Value

Parent - +

@@ -400,7 +400,7 @@

Property Value

Symbol - +

@@ -431,7 +431,7 @@

Property Value

SymbolTail - +

@@ -466,7 +466,7 @@

Methods

AddChild(ITwinObject) - +

@@ -497,7 +497,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -528,7 +528,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -559,7 +559,7 @@

Parameters

CreateEmptyPoco() - +

@@ -590,7 +590,7 @@

Returns

GetChildren() - +

@@ -621,7 +621,7 @@

Returns

GetConnector() - +

@@ -652,7 +652,7 @@

Returns

GetKids() - +

@@ -683,7 +683,7 @@

Returns

GetParent() - +

@@ -714,7 +714,7 @@

Returns

GetSymbolTail() - +

@@ -745,7 +745,7 @@

Returns

GetValueTags() - +

@@ -776,7 +776,7 @@

Returns

OnlineToPlain<T>() - +

@@ -812,7 +812,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -843,7 +843,7 @@

Returns

OnlineToPlainAsync(AxoTextList) - +

@@ -879,7 +879,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -920,7 +920,7 @@

Type Parameters

PlainToOnlineAsync(AxoTextList) - +

@@ -956,7 +956,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -997,7 +997,7 @@

Type Parameters

PlainToShadowAsync(AxoTextList) - +

@@ -1033,7 +1033,7 @@

Returns

Poll() - +

@@ -1059,7 +1059,7 @@

ShadowToPlain<T>() - +

@@ -1095,7 +1095,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1126,7 +1126,7 @@

Returns

ShadowToPlainAsync(AxoTextList) - +

@@ -1162,7 +1162,7 @@

Returns

@@ -1178,7 +1178,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTextListCommandView.html b/docs/api/AXOpen.Core.AxoTextListCommandView.html index f5c3adc1f..aa19c7575 100644 --- a/docs/api/AXOpen.Core.AxoTextListCommandView.html +++ b/docs/api/AXOpen.Core.AxoTextListCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoTextListCommandView - +

@@ -261,7 +261,7 @@

Constructors

AxoTextListCommandView() - +

@@ -287,7 +287,7 @@

- Edit this page + Edit this page

@@ -303,7 +303,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTextListControlView.html b/docs/api/AXOpen.Core.AxoTextListControlView.html index 9c9505002..e05afe327 100644 --- a/docs/api/AXOpen.Core.AxoTextListControlView.html +++ b/docs/api/AXOpen.Core.AxoTextListControlView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoTextListControlView - +

@@ -261,7 +261,7 @@

Constructors

AxoTextListControlView() - +

@@ -287,7 +287,7 @@

- Edit this page + Edit this page

@@ -303,7 +303,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTextListDisplayView.html b/docs/api/AXOpen.Core.AxoTextListDisplayView.html index 4cfcd16de..b51dfd2ec 100644 --- a/docs/api/AXOpen.Core.AxoTextListDisplayView.html +++ b/docs/api/AXOpen.Core.AxoTextListDisplayView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoTextListDisplayView - +

@@ -261,7 +261,7 @@

Constructors

AxoTextListDisplayView() - +

@@ -287,7 +287,7 @@

- Edit this page + Edit this page

@@ -303,7 +303,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTextListStatusView.html b/docs/api/AXOpen.Core.AxoTextListStatusView.html index 53123028e..3908aa041 100644 --- a/docs/api/AXOpen.Core.AxoTextListStatusView.html +++ b/docs/api/AXOpen.Core.AxoTextListStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoTextListStatusView - +

@@ -261,7 +261,7 @@

Constructors

AxoTextListStatusView() - +

@@ -287,7 +287,7 @@

- Edit this page + Edit this page

@@ -303,7 +303,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoTextListView.html b/docs/api/AXOpen.Core.AxoTextListView.html index 3c4424acd..8498092ba 100644 --- a/docs/api/AXOpen.Core.AxoTextListView.html +++ b/docs/api/AXOpen.Core.AxoTextListView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoTextListView - +

@@ -266,7 +266,7 @@

Methods

OnInitialized() - +

@@ -292,7 +292,7 @@

- Edit this page + Edit this page

@@ -308,7 +308,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoToggleTask.html b/docs/api/AXOpen.Core.AxoToggleTask.html index 62aa11f3e..f8d6050f4 100644 --- a/docs/api/AXOpen.Core.AxoToggleTask.html +++ b/docs/api/AXOpen.Core.AxoToggleTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoToggleTask - +

@@ -242,7 +242,7 @@

Constructors

AxoToggleTask(ITwinObject, string, string) - +

@@ -281,7 +281,7 @@

Properties

AttributeStateOffDesc - +

@@ -312,7 +312,7 @@

Property Value

AttributeStateOnDesc - +

@@ -343,7 +343,7 @@

Property Value

IsDisabled - +

@@ -375,7 +375,7 @@

Property Value

RemoteToggle - +

@@ -406,7 +406,7 @@

Property Value

State - +

@@ -442,7 +442,7 @@

Methods

CreateEmptyPoco() - +

@@ -473,7 +473,7 @@

Returns

OnlineToPlain<T>() - +

@@ -509,7 +509,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -540,7 +540,7 @@

Returns

OnlineToPlainAsync(AxoToggleTask) - +

@@ -576,7 +576,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -617,7 +617,7 @@

Type Parameters

PlainToOnlineAsync(AxoToggleTask) - +

@@ -653,7 +653,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -694,7 +694,7 @@

Type Parameters

PlainToShadowAsync(AxoToggleTask) - +

@@ -730,7 +730,7 @@

Returns

Poll() - +

@@ -756,7 +756,7 @@

ShadowToPlain<T>() - +

@@ -792,7 +792,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -823,7 +823,7 @@

Returns

ShadowToPlainAsync(AxoToggleTask) - +

@@ -859,7 +859,7 @@

Returns

@@ -875,7 +875,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoToggleTaskCommandView.html b/docs/api/AXOpen.Core.AxoToggleTaskCommandView.html index 9150dec66..85ff99a98 100644 --- a/docs/api/AXOpen.Core.AxoToggleTaskCommandView.html +++ b/docs/api/AXOpen.Core.AxoToggleTaskCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoToggleTaskCommandView - +

@@ -279,7 +279,7 @@

Constructors

AxoToggleTaskCommandView() - +

@@ -305,7 +305,7 @@

- Edit this page + Edit this page

@@ -321,7 +321,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoToggleTaskStatusView.html b/docs/api/AXOpen.Core.AxoToggleTaskStatusView.html index 74d1bf44b..26b1612d4 100644 --- a/docs/api/AXOpen.Core.AxoToggleTaskStatusView.html +++ b/docs/api/AXOpen.Core.AxoToggleTaskStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoToggleTaskStatusView - +

@@ -279,7 +279,7 @@

Constructors

AxoToggleTaskStatusView() - +

@@ -305,7 +305,7 @@

- Edit this page + Edit this page

@@ -321,7 +321,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.AxoToggleTaskView.html b/docs/api/AXOpen.Core.AxoToggleTaskView.html index 0b5ce1193..61f71dbfa 100644 --- a/docs/api/AXOpen.Core.AxoToggleTaskView.html +++ b/docs/api/AXOpen.Core.AxoToggleTaskView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoToggleTaskView - +

@@ -264,7 +264,7 @@

Properties

AuthenticationStateProvider - +

@@ -296,7 +296,7 @@

Property Value

Description - +

@@ -327,7 +327,7 @@

Property Value

Disable - +

@@ -359,7 +359,7 @@

Property Value

IsDisabled - +

@@ -394,7 +394,7 @@

Methods

GetCurrentUserIdentity() - +

@@ -425,7 +425,7 @@

Returns

GetCurrentUserName() - +

@@ -456,7 +456,7 @@

Returns

OnInitialized() - +

@@ -482,7 +482,7 @@

- Edit this page + Edit this page

@@ -498,7 +498,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AlertDialog.html b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AlertDialog.html index bb41a7f4a..8cbcb5cd5 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AlertDialog.html +++ b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AlertDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AlertDialog - +

@@ -175,7 +175,7 @@

Constructors

AlertDialog(eAlertDialogType, string, string, int) - +

@@ -216,7 +216,7 @@

Properties

Id - +

@@ -247,7 +247,7 @@

Property Value

Message - +

@@ -278,7 +278,7 @@

Property Value

Posted - +

@@ -309,7 +309,7 @@

Property Value

TimeToBurn - +

@@ -340,7 +340,7 @@

Property Value

Title - +

@@ -371,7 +371,7 @@

Property Value

Type - +

@@ -402,7 +402,7 @@

Property Value

@@ -418,7 +418,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertDialogProxyService.html b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertDialogProxyService.html index dbf10bb82..90a3cdb2e 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertDialogProxyService.html +++ b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertDialogProxyService.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAlertDialogProxyService - +

@@ -182,7 +182,7 @@

Constructors

AxoAlertDialogProxyService(AxoDialogContainer, IEnumerable<ITwinObject>) - +

@@ -218,7 +218,7 @@

Fields

ScopedAlertDialogService - +

@@ -253,7 +253,7 @@

Properties

ObservedObjects - +

@@ -288,7 +288,7 @@

Methods

Dispose() - +

@@ -314,7 +314,7 @@

Queue(IsDialogType) - +

Invoked dialogues are handled within this method and subseqeuntly event is raised in application, which is then handled in UI.

@@ -346,7 +346,7 @@

Parameters

StartObserveObjects(IEnumerable<ITwinObject>) - +

@@ -380,7 +380,7 @@

Events

AlertDialogInvoked - +

@@ -411,7 +411,7 @@

Event Type

@@ -427,7 +427,7 @@

Event Type

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertDialogService.html b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertDialogService.html index 1a78510d3..2c92d40a6 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertDialogService.html +++ b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertDialogService.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAlertDialogService - +

@@ -176,7 +176,7 @@

Constructors

AxoAlertDialogService() - +

@@ -206,7 +206,7 @@

Methods

AddAlertDialog(eAlertDialogType, string, string, int) - +

@@ -243,7 +243,7 @@

Parameters

AddAlertDialog(IAlertDialog) - +

@@ -274,7 +274,7 @@

Parameters

Dispose() - +

@@ -300,7 +300,7 @@

GetAlertDialogs() - +

@@ -331,7 +331,7 @@

Returns

RemoveAlertDialog(IAlertDialog) - +

@@ -362,7 +362,7 @@

Parameters

RemoveAllAlertDialogs() - +

@@ -391,7 +391,7 @@

Events

AlertDialogChanged - +

@@ -422,7 +422,7 @@

Event Type

@@ -438,7 +438,7 @@

Event Type

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertToast.html b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertToast.html index 029485a7d..949dbc208 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertToast.html +++ b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.AxoAlertToast.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAlertToast - +

@@ -211,7 +211,7 @@

Methods

Dispose() - +

@@ -237,7 +237,7 @@

OnInitialized() - +

@@ -263,7 +263,7 @@

@@ -279,7 +279,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.html b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.html index 3f53777b4..847926a5e 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.html +++ b/docs/api/AXOpen.Core.Blazor.AxoAlertDialog.html @@ -138,7 +138,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogBaseView-1.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogBaseView-1.html index ebb078f0c..57c433f6b 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogBaseView-1.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogBaseView-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDialogBaseView<T> - +

@@ -260,7 +260,7 @@

Fields

ModalDialog - +

@@ -295,7 +295,7 @@

Properties

_dialogContainer - +

@@ -327,7 +327,7 @@

Property Value

_navigationManager - +

@@ -363,7 +363,7 @@

Methods

AddToPolling(ITwinElement, int) - +

@@ -396,7 +396,7 @@

Parameters

Close() - +

@@ -427,7 +427,7 @@

Returns

CloseDialogsWithSignalR() - +

@@ -458,7 +458,7 @@

Returns

Dispose() - +

@@ -484,7 +484,7 @@

OnAfterRenderAsync(bool) - +

@@ -520,7 +520,7 @@

Returns

OnCloseDialogMessage(object, MessageReceivedEventArgs) - +

@@ -553,7 +553,7 @@

Parameters

OnInitialized() - +

@@ -579,7 +579,7 @@

OnOpenDialogMessage(object, MessageReceivedEventArgs) - +

@@ -612,7 +612,7 @@

Parameters

OpenDialog() - +

@@ -643,7 +643,7 @@

Returns

@@ -659,7 +659,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogContainer.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogContainer.html index b43988649..40ca983a8 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogContainer.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogContainer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogContainer - +

@@ -175,7 +175,7 @@

Constructors

AxoDialogContainer() - +

@@ -205,7 +205,7 @@

Properties

AlertDialogProxyServicesDictionary - +

@@ -236,7 +236,7 @@

Property Value

DialogClient - +

@@ -267,7 +267,7 @@

Property Value

DialogProxyServicesDictionary - +

@@ -298,7 +298,7 @@

Property Value

ObservedObjects - +

@@ -329,7 +329,7 @@

Property Value

ObservedObjectsAlerts - +

@@ -364,7 +364,7 @@

Methods

DisposeAsync() - +

@@ -395,7 +395,7 @@

Returns

InitializeSignalR(string) - +

@@ -426,7 +426,7 @@

Parameters

@@ -442,7 +442,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogEventArgs.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogEventArgs.html index 3b5426ccb..6a436eec3 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogEventArgs.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogEventArgs.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogEventArgs - +

@@ -172,7 +172,7 @@

Constructors

AxoDialogEventArgs(string) - +

@@ -207,7 +207,7 @@

Properties

DialogId - +

@@ -238,7 +238,7 @@

Property Value

@@ -254,7 +254,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogLocator.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogLocator.html index 27c437d46..a9ede6222 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogLocator.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogLocator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogLocator - +

@@ -211,7 +211,7 @@

Properties

DialogId - +

Unique ID of dialog, which is used to synchronize dialogs across clients. Make sure you pass unique value, otherwise inconsistencies may occur. @@ -245,7 +245,7 @@

Property Value

DialogOpenDelay - +

The opening dialog delay (default value is 100 ms).

@@ -278,7 +278,7 @@

Property Value

ObservedObjects - +

List of objects, which are observed for dialogs. @@ -316,7 +316,7 @@

Methods

Dispose() - +

Releases communication and event resources when disposed.

@@ -343,7 +343,7 @@

OnInitializedAsync() - +

@@ -374,7 +374,7 @@

Returns

@@ -390,7 +390,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogProxyService.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogProxyService.html index 0bc91a885..76fda2e4c 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogProxyService.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogProxyService.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogProxyService - +

@@ -182,7 +182,7 @@

Constructors

AxoDialogProxyService(AxoDialogContainer, string, IEnumerable<ITwinObject>) - +

Creates new instance of AxoDialogProxyService

@@ -225,7 +225,7 @@

Methods

Dispose() - +

Releases resources related to handling and communication with the controller.

@@ -252,7 +252,7 @@

HandleDialogInvocation(IsDialogType) - +

Handles the invocation of the dialogue from the controller.

@@ -285,7 +285,7 @@

Parameters

@@ -301,7 +301,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogProxyServiceBase.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogProxyServiceBase.html index 27c6fd125..394c4855b 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogProxyServiceBase.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.AxoDialogProxyServiceBase.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogProxyServiceBase - +

@@ -175,7 +175,7 @@

Properties

DialogInstance - +

@@ -210,7 +210,7 @@

Methods

GetDescendants<T>(ITwinObject, IList<T>) - +

@@ -253,7 +253,7 @@

Type Parameters

@@ -269,7 +269,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogClient.MessageReceivedEventHandler.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogClient.MessageReceivedEventHandler.html index 1820c3fe5..3e7e4e528 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogClient.MessageReceivedEventHandler.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogClient.MessageReceivedEventHandler.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate DialogClient.MessageReceivedEventHandler - +

@@ -139,7 +139,7 @@

Parameters

@@ -155,7 +155,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogClient.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogClient.html index 48270e794..60754783a 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogClient.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogClient.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DialogClient - +

@@ -175,7 +175,7 @@

Constructors

DialogClient(string) - +

@@ -209,7 +209,7 @@

Fields

_hubConnection - +

@@ -239,7 +239,7 @@

Field Value

HUBURL - +

@@ -274,7 +274,7 @@

Methods

DisposeAsync() - +

@@ -305,7 +305,7 @@

Returns

SendDialogClose(string) - +

@@ -341,7 +341,7 @@

Returns

SendDialogOpen(string) - +

@@ -377,7 +377,7 @@

Returns

StartAsync() - +

@@ -408,7 +408,7 @@

Returns

StopAsync() - +

@@ -442,7 +442,7 @@

Events

MessageReceivedDialogClose - +

@@ -472,7 +472,7 @@

Event Type

MessageReceivedDialogOpen - +

@@ -503,7 +503,7 @@

Event Type

@@ -519,7 +519,7 @@

Event Type

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogHub.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogHub.html index 6e1c9eb47..4e55d0a57 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogHub.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogHub.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DialogHub - +

@@ -196,7 +196,7 @@

Methods

SendDialogClose(string) - +

@@ -232,7 +232,7 @@

Returns

SendDialogOpen(string) - +

@@ -268,7 +268,7 @@

Returns

@@ -284,7 +284,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogMessages.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogMessages.html index 94b62fc8e..8c74547f1 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogMessages.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.DialogMessages.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DialogMessages - +

@@ -160,7 +160,7 @@

Fields

RECEIVE_DIALOG_CLOSE - +

@@ -190,7 +190,7 @@

Field Value

RECEIVE_DIALOG_OPEN - +

@@ -220,7 +220,7 @@

Field Value

SEND_DIALOG_CLOSE - +

@@ -250,7 +250,7 @@

Field Value

SEND_DIALOG_OPEN - +

@@ -281,7 +281,7 @@

Field Value

@@ -297,7 +297,7 @@

Field Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.MessageReceivedEventArgs.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.MessageReceivedEventArgs.html index 1fad6c66d..2035b4816 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.MessageReceivedEventArgs.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.MessageReceivedEventArgs.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class MessageReceivedEventArgs - +

@@ -172,7 +172,7 @@

Constructors

MessageReceivedEventArgs(string) - +

@@ -207,7 +207,7 @@

Properties

Message - +

@@ -238,7 +238,7 @@

Property Value

@@ -254,7 +254,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.html index b61e12cc1..2f82d862b 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.Hubs.html @@ -143,7 +143,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.ModalDialog.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.ModalDialog.html index 6b2a960f6..0fdea476c 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.ModalDialog.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.ModalDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class ModalDialog - +

@@ -164,7 +164,7 @@

- Edit this page + Edit this page

@@ -180,7 +180,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.AxoDialogs.html b/docs/api/AXOpen.Core.Blazor.AxoDialogs.html index 01dbd1f33..5c0c9cda8 100644 --- a/docs/api/AXOpen.Core.Blazor.AxoDialogs.html +++ b/docs/api/AXOpen.Core.Blazor.AxoDialogs.html @@ -150,7 +150,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.DeveloperSettings.html b/docs/api/AXOpen.Core.Blazor.DeveloperSettings.html index 0a88fab1c..0edcfccd5 100644 --- a/docs/api/AXOpen.Core.Blazor.DeveloperSettings.html +++ b/docs/api/AXOpen.Core.Blazor.DeveloperSettings.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class DeveloperSettings - +

@@ -161,7 +161,7 @@

Properties

BypassSSLCertificate - +

Using SSL certificate for SignalR connection (default value is false).

@@ -193,7 +193,7 @@

Property Value

@@ -209,7 +209,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.Dialogs.AxoAlertDialogLocator.html b/docs/api/AXOpen.Core.Blazor.Dialogs.AxoAlertDialogLocator.html index dc8cac45a..369a02922 100644 --- a/docs/api/AXOpen.Core.Blazor.Dialogs.AxoAlertDialogLocator.html +++ b/docs/api/AXOpen.Core.Blazor.Dialogs.AxoAlertDialogLocator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAlertDialogLocator - +

@@ -208,7 +208,7 @@

Properties

IsDialogInvoked - +

@@ -239,7 +239,7 @@

Property Value

IsScoped - +

@@ -271,7 +271,7 @@

Property Value

ObservedObjects - +

@@ -307,7 +307,7 @@

Methods

Dispose() - +

@@ -333,7 +333,7 @@

OnAfterRender(bool) - +

@@ -364,7 +364,7 @@

Parameters

OnInitialized() - +

@@ -390,7 +390,7 @@

@@ -406,7 +406,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.Dialogs.html b/docs/api/AXOpen.Core.Blazor.Dialogs.html index 4aa7088b0..ff52b2fa1 100644 --- a/docs/api/AXOpen.Core.Blazor.Dialogs.html +++ b/docs/api/AXOpen.Core.Blazor.Dialogs.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor._Imports.html b/docs/api/AXOpen.Core.Blazor._Imports.html index ddbce7000..6bfe58da4 100644 --- a/docs/api/AXOpen.Core.Blazor._Imports.html +++ b/docs/api/AXOpen.Core.Blazor._Imports.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class _Imports - +

@@ -203,7 +203,7 @@

Methods

BuildRenderTree(RenderTreeBuilder) - +

@@ -234,7 +234,7 @@

Parameters

@@ -250,7 +250,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Blazor.html b/docs/api/AXOpen.Core.Blazor.html index fb9b6eeac..900fa65e1 100644 --- a/docs/api/AXOpen.Core.Blazor.html +++ b/docs/api/AXOpen.Core.Blazor.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.ComponentDetailsAttribute.html b/docs/api/AXOpen.Core.ComponentDetailsAttribute.html index c7c53f23d..7ef228ad4 100644 --- a/docs/api/AXOpen.Core.ComponentDetailsAttribute.html +++ b/docs/api/AXOpen.Core.ComponentDetailsAttribute.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class ComponentDetailsAttribute - +

@@ -274,7 +274,7 @@

Constructors

ComponentDetailsAttribute() - +

@@ -300,7 +300,7 @@

ComponentDetailsAttribute(string) - +

@@ -335,7 +335,7 @@

Properties

TabName - +

@@ -366,7 +366,7 @@

Property Value

@@ -382,7 +382,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.ComponentGroupContext.html b/docs/api/AXOpen.Core.ComponentGroupContext.html index c6bbd26ef..9d7142707 100644 --- a/docs/api/AXOpen.Core.ComponentGroupContext.html +++ b/docs/api/AXOpen.Core.ComponentGroupContext.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class ComponentGroupContext - +

@@ -175,7 +175,7 @@

Constructors

ComponentGroupContext(ITwinObject, IList<ITwinElement>, string) - +

@@ -210,7 +210,7 @@

Parameters

ComponentGroupContext(ITwinObject, IList<ITwinElement>) - +

@@ -247,7 +247,7 @@

Properties

AttributeName - +

@@ -278,7 +278,7 @@

Property Value

HumanReadable - +

@@ -309,7 +309,7 @@

Property Value

Interpreter - +

@@ -340,7 +340,7 @@

Property Value

Symbol - +

@@ -371,7 +371,7 @@

Property Value

TabName - +

@@ -406,7 +406,7 @@

Methods

AddChild(ITwinObject) - +

@@ -437,7 +437,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -468,7 +468,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -499,7 +499,7 @@

Parameters

GetChildren() - +

@@ -530,7 +530,7 @@

Returns

GetConnector() - +

@@ -561,7 +561,7 @@

Returns

GetKids() - +

@@ -592,7 +592,7 @@

Returns

GetParent() - +

@@ -623,7 +623,7 @@

Returns

GetSymbolTail() - +

@@ -654,7 +654,7 @@

Returns

GetValueTags() - +

@@ -685,7 +685,7 @@

Returns

OnlineToPlain<T>() - +

@@ -721,7 +721,7 @@

Type Parameters

PlainToOnline<T>(T) - +

@@ -762,7 +762,7 @@

Type Parameters

PlainToShadow<T>(T) - +

@@ -803,7 +803,7 @@

Type Parameters

Poll() - +

@@ -829,7 +829,7 @@

ShadowToPlain<T>() - +

@@ -865,7 +865,7 @@

Type Parameters

@@ -881,7 +881,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.ComponentHeaderAttribute.html b/docs/api/AXOpen.Core.ComponentHeaderAttribute.html index e925c35e7..2898e5dcd 100644 --- a/docs/api/AXOpen.Core.ComponentHeaderAttribute.html +++ b/docs/api/AXOpen.Core.ComponentHeaderAttribute.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class ComponentHeaderAttribute - +

@@ -274,7 +274,7 @@

Constructors

ComponentHeaderAttribute() - +

@@ -300,7 +300,7 @@

ComponentHeaderAttribute(string) - +

@@ -335,7 +335,7 @@

Properties

TabName - +

@@ -366,7 +366,7 @@

Property Value

@@ -382,7 +382,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.DependencyInjection.html b/docs/api/AXOpen.Core.DependencyInjection.html index ee956afed..88105965d 100644 --- a/docs/api/AXOpen.Core.DependencyInjection.html +++ b/docs/api/AXOpen.Core.DependencyInjection.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DependencyInjection - +

@@ -161,7 +161,7 @@

Methods

AddAxoCoreServices(IServiceCollection) - +

@@ -192,7 +192,7 @@

Parameters

@@ -208,7 +208,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.ErrorLevelAttribute.html b/docs/api/AXOpen.Core.ErrorLevelAttribute.html index 5c3fec2da..df624b221 100644 --- a/docs/api/AXOpen.Core.ErrorLevelAttribute.html +++ b/docs/api/AXOpen.Core.ErrorLevelAttribute.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class ErrorLevelAttribute - +

@@ -274,7 +274,7 @@

Constructors

ErrorLevelAttribute() - +

@@ -300,7 +300,7 @@

ErrorLevelAttribute(uint) - +

@@ -335,7 +335,7 @@

Properties

Level - +

@@ -366,7 +366,7 @@

Property Value

@@ -382,7 +382,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoAlertDialogFormat.html b/docs/api/AXOpen.Core.IAxoAlertDialogFormat.html index b38af12f0..fa9c92834 100644 --- a/docs/api/AXOpen.Core.IAxoAlertDialogFormat.html +++ b/docs/api/AXOpen.Core.IAxoAlertDialogFormat.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoAlertDialogFormat - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoComponent.html b/docs/api/AXOpen.Core.IAxoComponent.html index befa098a2..683b23aaf 100644 --- a/docs/api/AXOpen.Core.IAxoComponent.html +++ b/docs/api/AXOpen.Core.IAxoComponent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoComponent - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoContext.html b/docs/api/AXOpen.Core.IAxoContext.html index 3ce083318..d2456bb4f 100644 --- a/docs/api/AXOpen.Core.IAxoContext.html +++ b/docs/api/AXOpen.Core.IAxoContext.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoContext - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoCoordinator.html b/docs/api/AXOpen.Core.IAxoCoordinator.html index 78dbde24b..598a494e5 100644 --- a/docs/api/AXOpen.Core.IAxoCoordinator.html +++ b/docs/api/AXOpen.Core.IAxoCoordinator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoCoordinator - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoDialogAnswer.html b/docs/api/AXOpen.Core.IAxoDialogAnswer.html index 5bf6ddc38..73082777b 100644 --- a/docs/api/AXOpen.Core.IAxoDialogAnswer.html +++ b/docs/api/AXOpen.Core.IAxoDialogAnswer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoDialogAnswer - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoDialogFormat.html b/docs/api/AXOpen.Core.IAxoDialogFormat.html index c93ac5c52..05bc0ff17 100644 --- a/docs/api/AXOpen.Core.IAxoDialogFormat.html +++ b/docs/api/AXOpen.Core.IAxoDialogFormat.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoDialogFormat - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoManuallyControllable.html b/docs/api/AXOpen.Core.IAxoManuallyControllable.html index 0e7bf6117..d388b5f42 100644 --- a/docs/api/AXOpen.Core.IAxoManuallyControllable.html +++ b/docs/api/AXOpen.Core.IAxoManuallyControllable.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoManuallyControllable - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoMomentaryTask.html b/docs/api/AXOpen.Core.IAxoMomentaryTask.html index 11f208141..e143ebc29 100644 --- a/docs/api/AXOpen.Core.IAxoMomentaryTask.html +++ b/docs/api/AXOpen.Core.IAxoMomentaryTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoMomentaryTask - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoObject.html b/docs/api/AXOpen.Core.IAxoObject.html index 191c31007..48d5030c5 100644 --- a/docs/api/AXOpen.Core.IAxoObject.html +++ b/docs/api/AXOpen.Core.IAxoObject.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoObject - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoStep.html b/docs/api/AXOpen.Core.IAxoStep.html index 6e4cf3efe..341f220ef 100644 --- a/docs/api/AXOpen.Core.IAxoStep.html +++ b/docs/api/AXOpen.Core.IAxoStep.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoStep - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoTask.html b/docs/api/AXOpen.Core.IAxoTask.html index d17662795..753d1e11b 100644 --- a/docs/api/AXOpen.Core.IAxoTask.html +++ b/docs/api/AXOpen.Core.IAxoTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoTask - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoTaskState.html b/docs/api/AXOpen.Core.IAxoTaskState.html index 349a58d8e..5953f05be 100644 --- a/docs/api/AXOpen.Core.IAxoTaskState.html +++ b/docs/api/AXOpen.Core.IAxoTaskState.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoTaskState - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IAxoToggleTask.html b/docs/api/AXOpen.Core.IAxoToggleTask.html index 670b9f26c..79e7b3c03 100644 --- a/docs/api/AXOpen.Core.IAxoToggleTask.html +++ b/docs/api/AXOpen.Core.IAxoToggleTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoToggleTask - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.IndexedData-1.html b/docs/api/AXOpen.Core.IndexedData-1.html index 7e8261864..63de52f86 100644 --- a/docs/api/AXOpen.Core.IndexedData-1.html +++ b/docs/api/AXOpen.Core.IndexedData-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class IndexedData<T> - +

@@ -173,7 +173,7 @@

Constructors

IndexedData(int, T) - +

@@ -210,7 +210,7 @@

Properties

Data - +

@@ -241,7 +241,7 @@

Property Value

Index - +

@@ -272,7 +272,7 @@

Property Value

@@ -288,7 +288,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.MultipleRemoteCallInitializationException.html b/docs/api/AXOpen.Core.MultipleRemoteCallInitializationException.html index be858e596..4044c1b0e 100644 --- a/docs/api/AXOpen.Core.MultipleRemoteCallInitializationException.html +++ b/docs/api/AXOpen.Core.MultipleRemoteCallInitializationException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class MultipleRemoteCallInitializationException - +

@@ -208,7 +208,7 @@

Constructors

MultipleRemoteCallInitializationException() - +

@@ -234,7 +234,7 @@

MultipleRemoteCallInitializationException(SerializationInfo, StreamingContext) - +

Initializes a new instance of the MultipleRemoteCallInitializationException class with serialized data.

@@ -279,7 +279,7 @@

Exceptions

MultipleRemoteCallInitializationException(string, Exception) - +

Initializes a new instance of the MultipleRemoteCallInitializationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

@@ -315,7 +315,7 @@

Parameters

MultipleRemoteCallInitializationException(string) - +

Initializes a new instance of the MultipleRemoteCallInitializationException class with a specified error message.

@@ -348,7 +348,7 @@

Parameters

@@ -364,7 +364,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Resources.PlcStringResources.html b/docs/api/AXOpen.Core.Resources.PlcStringResources.html index 12b4e8ee9..780977efe 100644 --- a/docs/api/AXOpen.Core.Resources.PlcStringResources.html +++ b/docs/api/AXOpen.Core.Resources.PlcStringResources.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class PlcStringResources - +

@@ -169,7 +169,7 @@

Properties

Command_state - +

Looks up a localized string similar to Command state.

@@ -201,7 +201,7 @@

Property Value

Culture - +

Overrides the current thread's CurrentUICulture property for all @@ -234,7 +234,7 @@

Property Value

ResourceManager - +

Returns the cached ResourceManager instance used by this class.

@@ -266,7 +266,7 @@

Property Value

Run_step - +

Looks up a localized string similar to Run step.

@@ -298,7 +298,7 @@

Property Value

Sequence_mode - +

Looks up a localized string similar to Sequence mode.

@@ -330,7 +330,7 @@

Property Value

Stepping_mode - +

Looks up a localized string similar to Stepping mode.

@@ -362,7 +362,7 @@

Property Value

@@ -378,7 +378,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.Resources.html b/docs/api/AXOpen.Core.Resources.html index d0b857ee2..59306a201 100644 --- a/docs/api/AXOpen.Core.Resources.html +++ b/docs/api/AXOpen.Core.Resources.html @@ -124,7 +124,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.WarningLevelAttribute.html b/docs/api/AXOpen.Core.WarningLevelAttribute.html index 930aba321..fbbcdc0b5 100644 --- a/docs/api/AXOpen.Core.WarningLevelAttribute.html +++ b/docs/api/AXOpen.Core.WarningLevelAttribute.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class WarningLevelAttribute - +

@@ -274,7 +274,7 @@

Constructors

WarningLevelAttribute() - +

@@ -300,7 +300,7 @@

WarningLevelAttribute(uint) - +

@@ -335,7 +335,7 @@

Properties

Level - +

@@ -366,7 +366,7 @@

Property Value

@@ -382,7 +382,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core._NULL_CONTEXT.html b/docs/api/AXOpen.Core._NULL_CONTEXT.html index c9f170249..2c0eaa4c6 100644 --- a/docs/api/AXOpen.Core._NULL_CONTEXT.html +++ b/docs/api/AXOpen.Core._NULL_CONTEXT.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _NULL_CONTEXT - +

@@ -176,7 +176,7 @@

Constructors

_NULL_CONTEXT(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

HumanReadable - +

@@ -308,7 +308,7 @@

Property Value

Interpreter - +

@@ -339,7 +339,7 @@

Property Value

Parent - +

@@ -370,7 +370,7 @@

Property Value

Symbol - +

@@ -401,7 +401,7 @@

Property Value

SymbolTail - +

@@ -436,7 +436,7 @@

Methods

AddChild(ITwinObject) - +

@@ -467,7 +467,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -498,7 +498,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -529,7 +529,7 @@

Parameters

CreateEmptyPoco() - +

@@ -560,7 +560,7 @@

Returns

GetChildren() - +

@@ -591,7 +591,7 @@

Returns

GetConnector() - +

@@ -622,7 +622,7 @@

Returns

GetKids() - +

@@ -653,7 +653,7 @@

Returns

GetParent() - +

@@ -684,7 +684,7 @@

Returns

GetSymbolTail() - +

@@ -715,7 +715,7 @@

Returns

GetValueTags() - +

@@ -746,7 +746,7 @@

Returns

OnlineToPlain<T>() - +

@@ -782,7 +782,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -813,7 +813,7 @@

Returns

OnlineToPlainAsync(_NULL_CONTEXT) - +

@@ -849,7 +849,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -890,7 +890,7 @@

Type Parameters

PlainToOnlineAsync(_NULL_CONTEXT) - +

@@ -926,7 +926,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -967,7 +967,7 @@

Type Parameters

PlainToShadowAsync(_NULL_CONTEXT) - +

@@ -1003,7 +1003,7 @@

Returns

Poll() - +

@@ -1029,7 +1029,7 @@

ShadowToPlain<T>() - +

@@ -1065,7 +1065,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1096,7 +1096,7 @@

Returns

ShadowToPlainAsync(_NULL_CONTEXT) - +

@@ -1132,7 +1132,7 @@

Returns

@@ -1148,7 +1148,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core._NULL_LOGGER.html b/docs/api/AXOpen.Core._NULL_LOGGER.html index 5890c90ff..9aa4f09de 100644 --- a/docs/api/AXOpen.Core._NULL_LOGGER.html +++ b/docs/api/AXOpen.Core._NULL_LOGGER.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _NULL_LOGGER - +

@@ -176,7 +176,7 @@

Constructors

_NULL_LOGGER(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

HumanReadable - +

@@ -308,7 +308,7 @@

Property Value

Interpreter - +

@@ -339,7 +339,7 @@

Property Value

Parent - +

@@ -370,7 +370,7 @@

Property Value

Symbol - +

@@ -401,7 +401,7 @@

Property Value

SymbolTail - +

@@ -436,7 +436,7 @@

Methods

AddChild(ITwinObject) - +

@@ -467,7 +467,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -498,7 +498,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -529,7 +529,7 @@

Parameters

CreateEmptyPoco() - +

@@ -560,7 +560,7 @@

Returns

GetChildren() - +

@@ -591,7 +591,7 @@

Returns

GetConnector() - +

@@ -622,7 +622,7 @@

Returns

GetKids() - +

@@ -653,7 +653,7 @@

Returns

GetParent() - +

@@ -684,7 +684,7 @@

Returns

GetSymbolTail() - +

@@ -715,7 +715,7 @@

Returns

GetValueTags() - +

@@ -746,7 +746,7 @@

Returns

OnlineToPlain<T>() - +

@@ -782,7 +782,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -813,7 +813,7 @@

Returns

OnlineToPlainAsync(_NULL_LOGGER) - +

@@ -849,7 +849,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -890,7 +890,7 @@

Type Parameters

PlainToOnlineAsync(_NULL_LOGGER) - +

@@ -926,7 +926,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -967,7 +967,7 @@

Type Parameters

PlainToShadowAsync(_NULL_LOGGER) - +

@@ -1003,7 +1003,7 @@

Returns

Poll() - +

@@ -1029,7 +1029,7 @@

ShadowToPlain<T>() - +

@@ -1065,7 +1065,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1096,7 +1096,7 @@

Returns

ShadowToPlainAsync(_NULL_LOGGER) - +

@@ -1132,7 +1132,7 @@

Returns

@@ -1148,7 +1148,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core._NULL_OBJECT.html b/docs/api/AXOpen.Core._NULL_OBJECT.html index 700e11066..27e3e125c 100644 --- a/docs/api/AXOpen.Core._NULL_OBJECT.html +++ b/docs/api/AXOpen.Core._NULL_OBJECT.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _NULL_OBJECT - +

@@ -176,7 +176,7 @@

Constructors

_NULL_OBJECT(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

HumanReadable - +

@@ -308,7 +308,7 @@

Property Value

Interpreter - +

@@ -339,7 +339,7 @@

Property Value

Parent - +

@@ -370,7 +370,7 @@

Property Value

Symbol - +

@@ -401,7 +401,7 @@

Property Value

SymbolTail - +

@@ -436,7 +436,7 @@

Methods

AddChild(ITwinObject) - +

@@ -467,7 +467,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -498,7 +498,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -529,7 +529,7 @@

Parameters

CreateEmptyPoco() - +

@@ -560,7 +560,7 @@

Returns

GetChildren() - +

@@ -591,7 +591,7 @@

Returns

GetConnector() - +

@@ -622,7 +622,7 @@

Returns

GetKids() - +

@@ -653,7 +653,7 @@

Returns

GetParent() - +

@@ -684,7 +684,7 @@

Returns

GetSymbolTail() - +

@@ -715,7 +715,7 @@

Returns

GetValueTags() - +

@@ -746,7 +746,7 @@

Returns

OnlineToPlain<T>() - +

@@ -782,7 +782,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -813,7 +813,7 @@

Returns

OnlineToPlainAsync(_NULL_OBJECT) - +

@@ -849,7 +849,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -890,7 +890,7 @@

Type Parameters

PlainToOnlineAsync(_NULL_OBJECT) - +

@@ -926,7 +926,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -967,7 +967,7 @@

Type Parameters

PlainToShadowAsync(_NULL_OBJECT) - +

@@ -1003,7 +1003,7 @@

Returns

Poll() - +

@@ -1029,7 +1029,7 @@

ShadowToPlain<T>() - +

@@ -1065,7 +1065,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1096,7 +1096,7 @@

Returns

ShadowToPlainAsync(_NULL_OBJECT) - +

@@ -1132,7 +1132,7 @@

Returns

@@ -1148,7 +1148,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core._NULL_RTC.html b/docs/api/AXOpen.Core._NULL_RTC.html index 411d0099a..5db74d7d7 100644 --- a/docs/api/AXOpen.Core._NULL_RTC.html +++ b/docs/api/AXOpen.Core._NULL_RTC.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _NULL_RTC - +

@@ -176,7 +176,7 @@

Constructors

_NULL_RTC(ITwinObject, string, string) - +

@@ -215,7 +215,7 @@

Properties

AttributeName - +

@@ -246,7 +246,7 @@

Property Value

Connector - +

@@ -277,7 +277,7 @@

Property Value

HumanReadable - +

@@ -308,7 +308,7 @@

Property Value

Interpreter - +

@@ -339,7 +339,7 @@

Property Value

Parent - +

@@ -370,7 +370,7 @@

Property Value

Symbol - +

@@ -401,7 +401,7 @@

Property Value

SymbolTail - +

@@ -436,7 +436,7 @@

Methods

AddChild(ITwinObject) - +

@@ -467,7 +467,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -498,7 +498,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -529,7 +529,7 @@

Parameters

CreateEmptyPoco() - +

@@ -560,7 +560,7 @@

Returns

GetChildren() - +

@@ -591,7 +591,7 @@

Returns

GetConnector() - +

@@ -622,7 +622,7 @@

Returns

GetKids() - +

@@ -653,7 +653,7 @@

Returns

GetParent() - +

@@ -684,7 +684,7 @@

Returns

GetSymbolTail() - +

@@ -715,7 +715,7 @@

Returns

GetValueTags() - +

@@ -746,7 +746,7 @@

Returns

OnlineToPlain<T>() - +

@@ -782,7 +782,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -813,7 +813,7 @@

Returns

OnlineToPlainAsync(_NULL_RTC) - +

@@ -849,7 +849,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -890,7 +890,7 @@

Type Parameters

PlainToOnlineAsync(_NULL_RTC) - +

@@ -926,7 +926,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -967,7 +967,7 @@

Type Parameters

PlainToShadowAsync(_NULL_RTC) - +

@@ -1003,7 +1003,7 @@

Returns

Poll() - +

@@ -1029,7 +1029,7 @@

ShadowToPlain<T>() - +

@@ -1065,7 +1065,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1096,7 +1096,7 @@

Returns

ShadowToPlainAsync(_NULL_RTC) - +

@@ -1132,7 +1132,7 @@

Returns

@@ -1148,7 +1148,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.eAxoSequenceMode.html b/docs/api/AXOpen.Core.eAxoSequenceMode.html index 69f2b549c..4386c9311 100644 --- a/docs/api/AXOpen.Core.eAxoSequenceMode.html +++ b/docs/api/AXOpen.Core.eAxoSequenceMode.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eAxoSequenceMode - +

@@ -141,7 +141,7 @@

Fields @@ -157,7 +157,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.eAxoSteppingMode.html b/docs/api/AXOpen.Core.eAxoSteppingMode.html index d03bbba63..a921dd2f8 100644 --- a/docs/api/AXOpen.Core.eAxoSteppingMode.html +++ b/docs/api/AXOpen.Core.eAxoSteppingMode.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoSteppingMode - +

@@ -141,7 +141,7 @@

Fields @@ -157,7 +157,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.eAxoTaskState.html b/docs/api/AXOpen.Core.eAxoTaskState.html index 8bdb099e2..7b5293010 100644 --- a/docs/api/AXOpen.Core.eAxoTaskState.html +++ b/docs/api/AXOpen.Core.eAxoTaskState.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoTaskState - +

@@ -149,7 +149,7 @@

Fields @@ -165,7 +165,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.eDialogAnswer.html b/docs/api/AXOpen.Core.eDialogAnswer.html index 700f77828..f4117321e 100644 --- a/docs/api/AXOpen.Core.eDialogAnswer.html +++ b/docs/api/AXOpen.Core.eDialogAnswer.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eDialogAnswer - +

@@ -145,7 +145,7 @@

Fields @@ -161,7 +161,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.eDialogType.html b/docs/api/AXOpen.Core.eDialogType.html index 69fa1f0d3..fc09d0151 100644 --- a/docs/api/AXOpen.Core.eDialogType.html +++ b/docs/api/AXOpen.Core.eDialogType.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eDialogType - +

@@ -145,7 +145,7 @@

Fields @@ -161,7 +161,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.eDisplayFormat.html b/docs/api/AXOpen.Core.eDisplayFormat.html index 1d828bcec..31721f2d7 100644 --- a/docs/api/AXOpen.Core.eDisplayFormat.html +++ b/docs/api/AXOpen.Core.eDisplayFormat.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eDisplayFormat - +

@@ -141,7 +141,7 @@

Fields @@ -157,7 +157,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Core.html b/docs/api/AXOpen.Core.html index 464626b22..8eed5fc87 100644 --- a/docs/api/AXOpen.Core.html +++ b/docs/api/AXOpen.Core.html @@ -457,7 +457,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoCompoundRepository.html b/docs/api/AXOpen.Data.AxoCompoundRepository.html index 1389e8f39..4bc6b1ecd 100644 --- a/docs/api/AXOpen.Data.AxoCompoundRepository.html +++ b/docs/api/AXOpen.Data.AxoCompoundRepository.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoCompoundRepository - +

@@ -174,7 +174,7 @@

Constructors

AxoCompoundRepository(IEnumerable<IAxoDataExchange>) - +

@@ -209,7 +209,7 @@

Properties

Count - +

@@ -244,7 +244,7 @@

Methods

Create(string, object) - +

@@ -277,7 +277,7 @@

Parameters

Delete(string) - +

@@ -308,7 +308,7 @@

Parameters

Exists(string) - +

@@ -344,7 +344,7 @@

Returns

FilteredCount(string, eSearchMode) - +

@@ -382,7 +382,7 @@

Returns

GetRecords(string, int, int, eSearchMode) - +

@@ -424,7 +424,7 @@

Returns

GetRecords(string) - +

@@ -460,7 +460,7 @@

Returns

Read(string) - +

@@ -496,7 +496,7 @@

Returns

Update(string, object) - +

@@ -529,7 +529,7 @@

Parameters

@@ -545,7 +545,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataCrudTask.html b/docs/api/AXOpen.Data.AxoDataCrudTask.html index 535144f49..7c3f85f7e 100644 --- a/docs/api/AXOpen.Data.AxoDataCrudTask.html +++ b/docs/api/AXOpen.Data.AxoDataCrudTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataCrudTask - +

@@ -388,7 +388,7 @@

Constructors

AxoDataCrudTask(ITwinObject, string, string) - +

@@ -427,7 +427,7 @@

Properties

CrudOperation - +

@@ -463,7 +463,7 @@

Methods

CreateEmptyPoco() - +

@@ -494,7 +494,7 @@

Returns

OnlineToPlain<T>() - +

@@ -530,7 +530,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -561,7 +561,7 @@

Returns

OnlineToPlainAsync(AxoDataCrudTask) - +

@@ -597,7 +597,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -638,7 +638,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataCrudTask) - +

@@ -674,7 +674,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -715,7 +715,7 @@

Type Parameters

PlainToShadowAsync(AxoDataCrudTask) - +

@@ -751,7 +751,7 @@

Returns

Poll() - +

@@ -777,7 +777,7 @@

ShadowToPlain<T>() - +

@@ -813,7 +813,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -844,7 +844,7 @@

Returns

ShadowToPlainAsync(AxoDataCrudTask) - +

@@ -880,7 +880,7 @@

Returns

@@ -896,7 +896,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataEntity.html b/docs/api/AXOpen.Data.AxoDataEntity.html index 433462918..79fbe9c12 100644 --- a/docs/api/AXOpen.Data.AxoDataEntity.html +++ b/docs/api/AXOpen.Data.AxoDataEntity.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataEntity - +

@@ -177,7 +177,7 @@

Constructors

AxoDataEntity(ITwinObject, string, string) - +

@@ -216,7 +216,7 @@

Properties

AttributeName - +

@@ -247,7 +247,7 @@

Property Value

Changes - +

@@ -278,7 +278,7 @@

Property Value

ChangeTracker - +

@@ -309,7 +309,7 @@

Property Value

Connector - +

@@ -340,7 +340,7 @@

Property Value

DataEntityId - +

@@ -372,7 +372,7 @@

Property Value

Hash - +

@@ -403,7 +403,7 @@

Property Value

HumanReadable - +

@@ -434,7 +434,7 @@

Property Value

Interpreter - +

@@ -465,7 +465,7 @@

Property Value

LockedBy - +

@@ -496,7 +496,7 @@

Property Value

Parent - +

@@ -527,7 +527,7 @@

Property Value

Symbol - +

@@ -558,7 +558,7 @@

Property Value

SymbolTail - +

@@ -593,7 +593,7 @@

Methods

AddChild(ITwinObject) - +

@@ -624,7 +624,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -655,7 +655,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -686,7 +686,7 @@

Parameters

CreateEmptyPoco() - +

@@ -717,7 +717,7 @@

Returns

GetChildren() - +

@@ -748,7 +748,7 @@

Returns

GetConnector() - +

@@ -779,7 +779,7 @@

Returns

GetKids() - +

@@ -810,7 +810,7 @@

Returns

GetParent() - +

@@ -841,7 +841,7 @@

Returns

GetSymbolTail() - +

@@ -872,7 +872,7 @@

Returns

GetValueTags() - +

@@ -903,7 +903,7 @@

Returns

OnlineToPlain<T>() - +

@@ -939,7 +939,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -970,7 +970,7 @@

Returns

OnlineToPlainAsync(AxoDataEntity) - +

@@ -1006,7 +1006,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1047,7 +1047,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataEntity) - +

@@ -1083,7 +1083,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1124,7 +1124,7 @@

Type Parameters

PlainToShadowAsync(AxoDataEntity) - +

@@ -1160,7 +1160,7 @@

Returns

Poll() - +

@@ -1186,7 +1186,7 @@

ShadowToPlain<T>() - +

@@ -1222,7 +1222,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1253,7 +1253,7 @@

Returns

ShadowToPlainAsync(AxoDataEntity) - +

@@ -1289,7 +1289,7 @@

Returns

@@ -1305,7 +1305,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataEntityAttribute.html b/docs/api/AXOpen.Data.AxoDataEntityAttribute.html index 5667a0de4..9464a0fb4 100644 --- a/docs/api/AXOpen.Data.AxoDataEntityAttribute.html +++ b/docs/api/AXOpen.Data.AxoDataEntityAttribute.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataEntityAttribute - +

@@ -271,7 +271,7 @@

- Edit this page + Edit this page

@@ -287,7 +287,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataEntityAttributeNotFoundException.html b/docs/api/AXOpen.Data.AxoDataEntityAttributeNotFoundException.html index 2c5504f5b..c251e7dce 100644 --- a/docs/api/AXOpen.Data.AxoDataEntityAttributeNotFoundException.html +++ b/docs/api/AXOpen.Data.AxoDataEntityAttributeNotFoundException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDataEntityAttributeNotFoundException - +

@@ -208,7 +208,7 @@

Constructors

AxoDataEntityAttributeNotFoundException() - +

@@ -234,7 +234,7 @@

AxoDataEntityAttributeNotFoundException(string) - +

@@ -265,7 +265,7 @@

Parameters

@@ -281,7 +281,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataEntityExistTask.html b/docs/api/AXOpen.Data.AxoDataEntityExistTask.html index 064e8585a..5f3c4ef26 100644 --- a/docs/api/AXOpen.Data.AxoDataEntityExistTask.html +++ b/docs/api/AXOpen.Data.AxoDataEntityExistTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataEntityExistTask - +

@@ -366,7 +366,7 @@

Constructors

AxoDataEntityExistTask(ITwinObject, string, string) - +

@@ -405,7 +405,7 @@

Properties

_exist - +

@@ -440,7 +440,7 @@

Methods

CreateEmptyPoco() - +

@@ -471,7 +471,7 @@

Returns

OnlineToPlain<T>() - +

@@ -507,7 +507,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -538,7 +538,7 @@

Returns

OnlineToPlainAsync(AxoDataEntityExistTask) - +

@@ -574,7 +574,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -615,7 +615,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataEntityExistTask) - +

@@ -651,7 +651,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -692,7 +692,7 @@

Type Parameters

PlainToShadowAsync(AxoDataEntityExistTask) - +

@@ -728,7 +728,7 @@

Returns

Poll() - +

@@ -754,7 +754,7 @@

ShadowToPlain<T>() - +

@@ -790,7 +790,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -821,7 +821,7 @@

Returns

ShadowToPlainAsync(AxoDataEntityExistTask) - +

@@ -857,7 +857,7 @@

Returns

@@ -873,7 +873,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataExchange-2.html b/docs/api/AXOpen.Data.AxoDataExchange-2.html index c5450fdcd..368efe9cb 100644 --- a/docs/api/AXOpen.Data.AxoDataExchange-2.html +++ b/docs/api/AXOpen.Data.AxoDataExchange-2.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchange<TOnline, TPlain> - +

@@ -265,7 +265,7 @@

Constructors

AxoDataExchange(ITwinObject, string, string) - +

@@ -304,7 +304,7 @@

Properties

CrudDataObject - +

@@ -335,7 +335,7 @@

Property Value

DataEntity - +

Gets AxoDataEntity associated with this AxoDataExchange<TOnline, TPlain>.

@@ -367,7 +367,7 @@

Property Value

DataRepository - +

Get strongly typed repository associated with this AxoDataExchange<TOnline, TPlain>.

@@ -399,7 +399,7 @@

Property Value

Exporters - +

@@ -430,7 +430,7 @@

Property Value

Operation - +

@@ -461,7 +461,7 @@

Property Value

RefUIData - +

Gets AxoDataEntity as AXSharp.Connector.ITwinObject that provides exchange mechanisms between this @@ -494,7 +494,7 @@

Property Value

Repository - +

Gets repository associated with this IAxoDataExchange object.

@@ -526,7 +526,7 @@

Property Value

VerifyHash - +

@@ -561,7 +561,7 @@

Methods

ChangeTrackerGetChanges() - +

Gets changes from changeTracker.

@@ -594,7 +594,7 @@

Returns

ChangeTrackerSaveObservedChanges(IBrowsableDataObject) - +

Saves observed changes from changeTracker to object.

@@ -626,7 +626,7 @@

Parameters

ChangeTrackerSetChanges() - +

Sets changes to changeTracker.

@@ -653,7 +653,7 @@

ChangeTrackerStartObservingChanges(AuthenticationState) - +

Start observing changes of the data object with changeTracker.

@@ -686,7 +686,7 @@

Parameters

ChangeTrackerStopObservingChanges() - +

Stop observing changes of the data object with changeTracker.

@@ -713,7 +713,7 @@

CreateAsync(string, TPlain) - +

@@ -751,7 +751,7 @@

Returns

CreateCopyCurrentShadowsAsync(string) - +

Create new record of the current data present in the shadows of this object in the repository.

@@ -788,7 +788,7 @@

Returns

CreateDataFromControllerAsync(string) - +

Load data from controller and creates new record in the repository.

@@ -825,7 +825,7 @@

Returns

CreateEmptyPoco() - +

@@ -856,7 +856,7 @@

Returns

CreateNewAsync(string) - +

Creates new record in the repository.

@@ -895,7 +895,7 @@

Returns

CreateOrUpdate(string) - +

Create or update record in the repository.

@@ -933,7 +933,7 @@

Returns

CreateOrUpdateAsync(string, TPlain) - +

@@ -971,7 +971,7 @@

Returns

DeInitializeRemoteDataExchange() - +

Terminates data exchange between controller and this AxoDataExchange<TOnline, TPlain>

@@ -998,7 +998,7 @@

Delete(string) - +

Deletes record from the repository.

@@ -1037,7 +1037,7 @@

Returns

DeleteAsync(string) - +

@@ -1073,7 +1073,7 @@

Returns

EntityExistAsync(string) - +

@@ -1109,7 +1109,7 @@

Returns

ExistsAsync(string) - +

Check if record exists in the repository.

@@ -1147,7 +1147,7 @@

Returns

ExportData(string, Dictionary<string, ExportData>?, eExportMode, int, int, string, char) - +

Export data from the Repository associated with this IAxoDataExchange.

@@ -1193,7 +1193,7 @@

Parameters

FromRepositoryToControllerAsync(IBrowsableDataObject) - +

Loads data from respective record of the repository into the controller.

@@ -1230,7 +1230,7 @@

Returns

FromRepositoryToShadowsAsync(IBrowsableDataObject) - +

Copies the data from the repository(ies) to shadows of this twin object.

@@ -1268,7 +1268,7 @@

Returns

GetLockedBy() - +

Get object which locked this repository.

@@ -1300,7 +1300,7 @@

Returns

GetRecords(string, int, int, eSearchMode) - +

Gets records meeting criteria from the Repository associated with this IAxoDataExchange

@@ -1348,7 +1348,7 @@

Returns

GetRecords(string) - +

Gets record meeting criteria from the Repository associated with this IAxoDataExchange where the data entity id matches exactly the argument.

@@ -1387,7 +1387,7 @@

Returns

ImportData(string, AuthenticationState, ITwinObject, string, char) - +

Import data from file to the Repository associated with this IAxoDataExchange.

@@ -1430,7 +1430,7 @@

Parameters

InitializeRemoteDataExchange() - +

Initializes data exchange between remote controller and this AxoDataExchange<TOnline, TPlain>

@@ -1457,7 +1457,7 @@

InitializeRemoteDataExchange(IRepository<TPlain>) - +

Initializes data exchange between remote controller and this AxoDataExchange<TOnline, TPlain>

@@ -1490,7 +1490,7 @@

Parameters

IsHashCorrect(IIdentity) - +

@@ -1526,7 +1526,7 @@

Returns

OnlineToPlain<T>() - +

@@ -1562,7 +1562,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -1593,7 +1593,7 @@

Returns

OnlineToPlainAsync(AxoDataExchange) - +

@@ -1629,7 +1629,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1670,7 +1670,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataExchange) - +

@@ -1706,7 +1706,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1747,7 +1747,7 @@

Type Parameters

PlainToShadowAsync(AxoDataExchange) - +

@@ -1783,7 +1783,7 @@

Returns

Poll() - +

@@ -1809,7 +1809,7 @@

ReadAsync(string) - +

@@ -1845,7 +1845,7 @@

Returns

RemoteCreate(string) - +

Provides handler for remote (controller's) request to create new data entry in the Repository associated with this IAxoDataExchange

@@ -1884,7 +1884,7 @@

Returns

RemoteCreateOrUpdate(string) - +

Provides handler for remote (controller's) request to create or update data in the Repository associated with this IAxoDataExchange

@@ -1923,7 +1923,7 @@

Returns

RemoteDelete(string) - +

Provides handler for remote (controller's) request to delete data from the Repository associated with this IAxoDataExchange

@@ -1962,7 +1962,7 @@

Returns

RemoteEntityExist(string) - +

Provides handler for remote (controller's) request to check if data exists in the Repository associated with this IAxoDataExchange

@@ -2001,7 +2001,7 @@

Returns

RemoteRead(string) - +

Provides handler for remote (controller's) request to read data from the Repository associated with this IAxoDataExchange

@@ -2040,7 +2040,7 @@

Returns

RemoteUpdate(string) - +

Provides handler for remote (controller's) request to update data in the Repository associated with this IAxoDataExchange

@@ -2079,7 +2079,7 @@

Returns

SetLockedBy(object) - +

Set object which locked this repository.

@@ -2111,7 +2111,7 @@

Parameters

SetRepository(IRepository<TPlain>) - +

Sets repository for this instance of AxoDataExchange<TOnline, TPlain>

@@ -2143,7 +2143,7 @@

Parameters

ShadowToPlain<T>() - +

@@ -2179,7 +2179,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -2210,7 +2210,7 @@

Returns

ShadowToPlainAsync(AxoDataExchange) - +

@@ -2246,7 +2246,7 @@

Returns

UpdateAsync(string, TPlain) - +

@@ -2284,7 +2284,7 @@

Returns

UpdateFromShadowsAsync() - +

Updates data form shadows of this object to respective record in the repository.

@@ -2317,7 +2317,7 @@

Returns

@@ -2333,7 +2333,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataExchangeBase.html b/docs/api/AXOpen.Data.AxoDataExchangeBase.html index 81093a906..71e07b12e 100644 --- a/docs/api/AXOpen.Data.AxoDataExchangeBase.html +++ b/docs/api/AXOpen.Data.AxoDataExchangeBase.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchangeBase - +

@@ -248,7 +248,7 @@

Constructors

AxoDataExchangeBase(ITwinObject, string, string) - +

@@ -287,7 +287,7 @@

Methods

CreateEmptyPoco() - +

@@ -318,7 +318,7 @@

Returns

OnlineToPlain<T>() - +

@@ -354,7 +354,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -385,7 +385,7 @@

Returns

OnlineToPlainAsync(AxoDataExchangeBase) - +

@@ -421,7 +421,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -462,7 +462,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataExchangeBase) - +

@@ -498,7 +498,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -539,7 +539,7 @@

Type Parameters

PlainToShadowAsync(AxoDataExchangeBase) - +

@@ -575,7 +575,7 @@

Returns

Poll() - +

@@ -601,7 +601,7 @@

ShadowToPlain<T>() - +

@@ -637,7 +637,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -668,7 +668,7 @@

Returns

ShadowToPlainAsync(AxoDataExchangeBase) - +

@@ -704,7 +704,7 @@

Returns

@@ -720,7 +720,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataExchangeBaseCommandView.html b/docs/api/AXOpen.Data.AxoDataExchangeBaseCommandView.html index ac906f281..8efcdfc1f 100644 --- a/docs/api/AXOpen.Data.AxoDataExchangeBaseCommandView.html +++ b/docs/api/AXOpen.Data.AxoDataExchangeBaseCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchangeBaseCommandView - +

@@ -247,7 +247,7 @@

Methods

BuildRenderTree(RenderTreeBuilder) - +

@@ -278,7 +278,7 @@

Parameters

@@ -294,7 +294,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataExchangeBaseStatusView.html b/docs/api/AXOpen.Data.AxoDataExchangeBaseStatusView.html index 6f2ba8389..bd4c05f62 100644 --- a/docs/api/AXOpen.Data.AxoDataExchangeBaseStatusView.html +++ b/docs/api/AXOpen.Data.AxoDataExchangeBaseStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchangeBaseStatusView - +

@@ -247,7 +247,7 @@

Methods

BuildRenderTree(RenderTreeBuilder) - +

@@ -278,7 +278,7 @@

Parameters

@@ -294,7 +294,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataExchangeTask.html b/docs/api/AXOpen.Data.AxoDataExchangeTask.html index 7fb72bddd..ac79c963f 100644 --- a/docs/api/AXOpen.Data.AxoDataExchangeTask.html +++ b/docs/api/AXOpen.Data.AxoDataExchangeTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchangeTask - +

@@ -375,7 +375,7 @@

Constructors

AxoDataExchangeTask(ITwinObject, string, string) - +

@@ -414,7 +414,7 @@

Properties

_exist - +

@@ -445,7 +445,7 @@

Property Value

DataEntityIdentifier - +

@@ -480,7 +480,7 @@

Methods

CreateEmptyPoco() - +

@@ -511,7 +511,7 @@

Returns

OnlineToPlain<T>() - +

@@ -547,7 +547,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -578,7 +578,7 @@

Returns

OnlineToPlainAsync(AxoDataExchangeTask) - +

@@ -614,7 +614,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -655,7 +655,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataExchangeTask) - +

@@ -691,7 +691,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -732,7 +732,7 @@

Type Parameters

PlainToShadowAsync(AxoDataExchangeTask) - +

@@ -768,7 +768,7 @@

Returns

Poll() - +

@@ -794,7 +794,7 @@

ShadowToPlain<T>() - +

@@ -830,7 +830,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -861,7 +861,7 @@

Returns

ShadowToPlainAsync(AxoDataExchangeTask) - +

@@ -897,7 +897,7 @@

Returns

@@ -913,7 +913,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataFragmentAttribute.html b/docs/api/AXOpen.Data.AxoDataFragmentAttribute.html index 351826a87..c6a2b55ea 100644 --- a/docs/api/AXOpen.Data.AxoDataFragmentAttribute.html +++ b/docs/api/AXOpen.Data.AxoDataFragmentAttribute.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataFragmentAttribute - +

@@ -271,7 +271,7 @@

- Edit this page + Edit this page

@@ -287,7 +287,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataFragmentExchange.html b/docs/api/AXOpen.Data.AxoDataFragmentExchange.html index eaa1842a2..efc915372 100644 --- a/docs/api/AXOpen.Data.AxoDataFragmentExchange.html +++ b/docs/api/AXOpen.Data.AxoDataFragmentExchange.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDataFragmentExchange - +

@@ -255,7 +255,7 @@

Constructors

AxoDataFragmentExchange(ITwinObject, string, string) - +

@@ -294,7 +294,7 @@

Properties

DataFragments - +

@@ -325,7 +325,7 @@

Property Value

Exporters - +

@@ -356,7 +356,7 @@

Property Value

Operation - +

@@ -387,7 +387,7 @@

Property Value

RefUIData - +

@@ -418,7 +418,7 @@

Property Value

Repository - +

@@ -449,7 +449,7 @@

Property Value

VerifyHash - +

@@ -484,7 +484,7 @@

Methods

ChangeTrackerGetChanges() - +

Gets changes from changeTracker.

@@ -517,7 +517,7 @@

Returns

ChangeTrackerSaveObservedChanges(IBrowsableDataObject) - +

Saves observed changes from changeTracker to object.

@@ -549,7 +549,7 @@

Parameters

ChangeTrackerSetChanges() - +

Sets changes to changeTracker.

@@ -576,7 +576,7 @@

ChangeTrackerStartObservingChanges(AuthenticationState) - +

Start observing changes of the data object with changeTracker.

@@ -609,7 +609,7 @@

Parameters

ChangeTrackerStopObservingChanges() - +

Stop observing changes of the data object with changeTracker.

@@ -636,7 +636,7 @@

CreateBuilder() - +

@@ -667,7 +667,7 @@

Returns

CreateBuilder<T>() - +

@@ -703,7 +703,7 @@

Type Parameters

CreateCopyCurrentShadowsAsync(string) - +

@@ -739,7 +739,7 @@

Returns

CreateDataFromControllerAsync(string) - +

@@ -775,7 +775,7 @@

Returns

CreateEmptyPoco() - +

@@ -806,7 +806,7 @@

Returns

CreateNewAsync(string) - +

@@ -842,7 +842,7 @@

Returns

CreateOrUpdate(string) - +

@@ -878,7 +878,7 @@

Returns

DeInitializeRemoteDataExchange() - +

@@ -904,7 +904,7 @@

Delete(string) - +

@@ -940,7 +940,7 @@

Returns

ExistsAsync(string) - +

@@ -976,7 +976,7 @@

Returns

ExportData(string, Dictionary<string, ExportData>, eExportMode, int, int, string, char) - +

@@ -1019,7 +1019,7 @@

Parameters

FromRepositoryToControllerAsync(IBrowsableDataObject) - +

@@ -1055,7 +1055,7 @@

Returns

FromRepositoryToShadowsAsync(IBrowsableDataObject) - +

@@ -1091,7 +1091,7 @@

Returns

GetLockedBy() - +

Get object which locked this repository.

@@ -1123,7 +1123,7 @@

Returns

GetRecords(string, int, int, eSearchMode) - +

@@ -1165,7 +1165,7 @@

Returns

GetRecords(string) - +

@@ -1201,7 +1201,7 @@

Returns

ImportData(string, AuthenticationState, ITwinObject, string, char) - +

@@ -1240,7 +1240,7 @@

Parameters

InitializeRemoteDataExchange() - +

Initializes data exchange between remote controller and this AxoDataExchange<TOnline, TPlain>

@@ -1267,7 +1267,7 @@

IsHashCorrect(IIdentity) - +

@@ -1303,7 +1303,7 @@

Returns

OnlineToPlain<T>() - +

@@ -1339,7 +1339,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -1370,7 +1370,7 @@

Returns

OnlineToPlainAsync(AxoDataFragmentExchange) - +

@@ -1406,7 +1406,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1447,7 +1447,7 @@

Type Parameters

PlainToOnlineAsync(AxoDataFragmentExchange) - +

@@ -1483,7 +1483,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1524,7 +1524,7 @@

Type Parameters

PlainToShadowAsync(AxoDataFragmentExchange) - +

@@ -1560,7 +1560,7 @@

Returns

Poll() - +

@@ -1586,7 +1586,7 @@

RemoteCreate(string) - +

@@ -1622,7 +1622,7 @@

Returns

RemoteCreateOrUpdate(string) - +

@@ -1658,7 +1658,7 @@

Returns

RemoteDelete(string) - +

@@ -1694,7 +1694,7 @@

Returns

RemoteEntityExist(string) - +

@@ -1730,7 +1730,7 @@

Returns

RemoteRead(string) - +

@@ -1766,7 +1766,7 @@

Returns

RemoteUpdate(string) - +

@@ -1802,7 +1802,7 @@

Returns

SetLockedBy(object) - +

Set object which locked this repository.

@@ -1834,7 +1834,7 @@

Parameters

ShadowToPlain<T>() - +

@@ -1870,7 +1870,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1901,7 +1901,7 @@

Returns

ShadowToPlainAsync(AxoDataFragmentExchange) - +

@@ -1937,7 +1937,7 @@

Returns

UpdateFromShadowsAsync() - +

@@ -1968,7 +1968,7 @@

Returns

@@ -1984,7 +1984,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoDataVerifyHashAttribute.html b/docs/api/AXOpen.Data.AxoDataVerifyHashAttribute.html index 587074d99..e62490d11 100644 --- a/docs/api/AXOpen.Data.AxoDataVerifyHashAttribute.html +++ b/docs/api/AXOpen.Data.AxoDataVerifyHashAttribute.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataVerifyHashAttribute - +

@@ -271,7 +271,7 @@

- Edit this page + Edit this page

@@ -287,7 +287,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.AxoFragmentedDataCompound.html b/docs/api/AXOpen.Data.AxoFragmentedDataCompound.html index 9c1a2efa5..d23926d6d 100644 --- a/docs/api/AXOpen.Data.AxoFragmentedDataCompound.html +++ b/docs/api/AXOpen.Data.AxoFragmentedDataCompound.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoFragmentedDataCompound - +

@@ -176,7 +176,7 @@

Constructors

AxoFragmentedDataCompound(ITwinObject, IList<ITwinElement>) - +

@@ -213,7 +213,7 @@

Properties

AttributeName - +

@@ -244,7 +244,7 @@

Property Value

HumanReadable - +

@@ -275,7 +275,7 @@

Property Value

Interpreter - +

@@ -306,7 +306,7 @@

Property Value

Symbol - +

@@ -341,7 +341,7 @@

Methods

AddChild(ITwinObject) - +

@@ -372,7 +372,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -403,7 +403,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -434,7 +434,7 @@

Parameters

GetChildren() - +

@@ -465,7 +465,7 @@

Returns

GetConnector() - +

@@ -496,7 +496,7 @@

Returns

GetKids() - +

@@ -527,7 +527,7 @@

Returns

GetParent() - +

@@ -558,7 +558,7 @@

Returns

GetSymbolTail() - +

@@ -589,7 +589,7 @@

Returns

GetValueTags() - +

@@ -620,7 +620,7 @@

Returns

OnlineToPlain<T>() - +

@@ -656,7 +656,7 @@

Type Parameters

PlainToOnline<T>(T) - +

@@ -697,7 +697,7 @@

Type Parameters

PlainToShadow<T>(T) - +

@@ -738,7 +738,7 @@

Type Parameters

Poll() - +

@@ -764,7 +764,7 @@

ShadowToPlain<T>() - +

@@ -800,7 +800,7 @@

Type Parameters

@@ -816,7 +816,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.BaseDataExporter-2.ImportItems.html b/docs/api/AXOpen.Data.BaseDataExporter-2.ImportItems.html index 839c74a11..7f07257ad 100644 --- a/docs/api/AXOpen.Data.BaseDataExporter-2.ImportItems.html +++ b/docs/api/AXOpen.Data.BaseDataExporter-2.ImportItems.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class BaseDataExporter<TPlain, TOnline>.ImportItems - +

@@ -168,7 +168,7 @@

Properties

Key - +

@@ -199,7 +199,7 @@

Property Value

Value - +

@@ -230,7 +230,7 @@

Property Value

@@ -246,7 +246,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.BaseDataExporter-2.html b/docs/api/AXOpen.Data.BaseDataExporter-2.html index 41ce5d649..0158f6ef3 100644 --- a/docs/api/AXOpen.Data.BaseDataExporter-2.html +++ b/docs/api/AXOpen.Data.BaseDataExporter-2.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class BaseDataExporter<TPlain, TOnline> - +

@@ -183,7 +183,7 @@

Constructors

BaseDataExporter() - +

@@ -213,7 +213,7 @@

Methods

BaseExport(IRepository<TPlain>, Expression<Func<TPlain, bool>>, Dictionary<string, bool>?, eExportMode, int, int, char) - +

@@ -261,7 +261,7 @@

Returns

BaseImport(IRepository<TPlain>, List<string>, AuthenticationState, ITwinObject, char) - +

@@ -300,7 +300,7 @@

Parameters

UpdateDocument(IRepository<TPlain>, List<ImportItems>, IEnumerable<ITwinPrimitive>, ITwinObject, AuthenticationState, char) - +

@@ -341,7 +341,7 @@

Parameters

@@ -357,7 +357,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.Blazor._Imports.html b/docs/api/AXOpen.Data.Blazor._Imports.html index ae1eaa748..d5d03804d 100644 --- a/docs/api/AXOpen.Data.Blazor._Imports.html +++ b/docs/api/AXOpen.Data.Blazor._Imports.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _Imports - +

@@ -203,7 +203,7 @@

Methods

BuildRenderTree(RenderTreeBuilder) - +

@@ -234,7 +234,7 @@

Parameters

@@ -250,7 +250,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.Blazor.html b/docs/api/AXOpen.Data.Blazor.html index 923001126..50336e4d4 100644 --- a/docs/api/AXOpen.Data.Blazor.html +++ b/docs/api/AXOpen.Data.Blazor.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.CSVDataExporter-2.html b/docs/api/AXOpen.Data.CSVDataExporter-2.html index 0f1c07abe..0e1fb0ef0 100644 --- a/docs/api/AXOpen.Data.CSVDataExporter-2.html +++ b/docs/api/AXOpen.Data.CSVDataExporter-2.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class CSVDataExporter<TPlain, TOnline> - +

@@ -191,7 +191,7 @@

Constructors

CSVDataExporter() - +

@@ -221,7 +221,7 @@

Methods

Export(IRepository<TPlain>, string, string, Expression<Func<TPlain, bool>>, Dictionary<string, bool>, eExportMode, int, int, char) - +

@@ -268,7 +268,7 @@

Parameters

GetName() - +

@@ -299,7 +299,7 @@

Returns

Import(IRepository<TPlain>, string, string, AuthenticationState, ITwinObject, char) - +

@@ -340,7 +340,7 @@

Parameters

@@ -356,7 +356,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.ColumnData.html b/docs/api/AXOpen.Data.ColumnData.html index b7fbe384b..c26efa27c 100644 --- a/docs/api/AXOpen.Data.ColumnData.html +++ b/docs/api/AXOpen.Data.ColumnData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class ColumnData - +

@@ -164,7 +164,7 @@

- Edit this page + Edit this page

@@ -180,7 +180,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.DataExchangeView.html b/docs/api/AXOpen.Data.DataExchangeView.html index ffcd5df3a..028e15a7c 100644 --- a/docs/api/AXOpen.Data.DataExchangeView.html +++ b/docs/api/AXOpen.Data.DataExchangeView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class DataExchangeView - +

@@ -211,7 +211,7 @@

Properties

CanExport - +

@@ -243,7 +243,7 @@

Property Value

ChildContent - +

@@ -275,7 +275,7 @@

Property Value

ModalDataView - +

@@ -307,7 +307,7 @@

Property Value

Presentation - +

@@ -339,7 +339,7 @@

Property Value

Vm - +

@@ -375,7 +375,7 @@

Methods

AddLine(ColumnData) - +

@@ -406,7 +406,7 @@

Parameters

Dispose() - +

@@ -432,7 +432,7 @@

LoadCustomExportDataAsync() - +

@@ -463,7 +463,7 @@

Returns

OnInitializedAsync() - +

@@ -494,7 +494,7 @@

Returns

RemoveLine(ColumnData) - +

@@ -525,7 +525,7 @@

Parameters

SaveCustomExportDataAsync() - +

@@ -556,7 +556,7 @@

Returns

@@ -572,7 +572,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.DataExchangeViewModel.ExportSettings.html b/docs/api/AXOpen.Data.DataExchangeViewModel.ExportSettings.html index e1c13a955..c5dc8f6a1 100644 --- a/docs/api/AXOpen.Data.DataExchangeViewModel.ExportSettings.html +++ b/docs/api/AXOpen.Data.DataExchangeViewModel.ExportSettings.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DataExchangeViewModel.ExportSettings - +

@@ -168,7 +168,7 @@

Properties

CustomExportData - +

@@ -199,7 +199,7 @@

Property Value

ExportFileType - +

@@ -230,7 +230,7 @@

Property Value

ExportMode - +

@@ -261,7 +261,7 @@

Property Value

FirstNumber - +

@@ -292,7 +292,7 @@

Property Value

SecondNumber - +

@@ -323,7 +323,7 @@

Property Value

Separator - +

@@ -354,7 +354,7 @@

Property Value

@@ -370,7 +370,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.DataExchangeViewModel.html b/docs/api/AXOpen.Data.DataExchangeViewModel.html index 392e10467..d56043998 100644 --- a/docs/api/AXOpen.Data.DataExchangeViewModel.html +++ b/docs/api/AXOpen.Data.DataExchangeViewModel.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class DataExchangeViewModel - +

@@ -185,7 +185,7 @@

Constructors

DataExchangeViewModel() - +

@@ -215,7 +215,7 @@

Properties

AlertDialogService - +

@@ -246,7 +246,7 @@

Property Value

Asp - +

@@ -277,7 +277,7 @@

Property Value

Changes - +

@@ -308,7 +308,7 @@

Property Value

CreateItemId - +

@@ -339,7 +339,7 @@

Property Value

DataExchange - +

@@ -370,7 +370,7 @@

Property Value

ExportSet - +

@@ -401,7 +401,7 @@

Property Value

FilterById - +

@@ -432,7 +432,7 @@

Property Value

FilteredCount - +

@@ -463,7 +463,7 @@

Property Value

IsBusy - +

@@ -494,7 +494,7 @@

Property Value

IsFileExported - +

@@ -525,7 +525,7 @@

Property Value

IsHashCorrect - +

@@ -556,7 +556,7 @@

Property Value

Limit - +

@@ -587,7 +587,7 @@

Property Value

Model - +

@@ -618,7 +618,7 @@

Property Value

Page - +

@@ -649,7 +649,7 @@

Property Value

Records - +

@@ -680,7 +680,7 @@

Property Value

SearchMode - +

@@ -711,7 +711,7 @@

Property Value

SelectedRecord - +

@@ -742,7 +742,7 @@

Property Value

StateHasChangedDelegate - +

@@ -777,7 +777,7 @@

Methods

ChangeCustomExportDataValue(ChangeEventArgs, string, string) - +

@@ -812,7 +812,7 @@

Parameters

ChangeCustomExportDataValue(ChangeEventArgs, string) - +

@@ -845,7 +845,7 @@

Parameters

Copy() - +

@@ -876,7 +876,7 @@

Returns

CountFiltered(string, eSearchMode) - +

@@ -914,7 +914,7 @@

Returns

CreateNew() - +

@@ -945,7 +945,7 @@

Returns

Delete() - +

@@ -971,7 +971,7 @@

Edit() - +

@@ -1002,7 +1002,7 @@

Returns

ExportDataAsync(string) - +

@@ -1038,7 +1038,7 @@

Returns

FillObservableRecordsAsync() - +

@@ -1069,7 +1069,7 @@

Returns

Filter() - +

@@ -1100,7 +1100,7 @@

Returns

Filter(string, int, int, eSearchMode) - +

@@ -1142,7 +1142,7 @@

Returns

FindById(string) - +

@@ -1178,7 +1178,7 @@

Returns

GetCustomExportDataValue(string, string) - +

@@ -1216,7 +1216,7 @@

Returns

GetCustomExportDataValue(string) - +

@@ -1252,7 +1252,7 @@

Returns

GetFragmentsExportedValue() - +

@@ -1283,7 +1283,7 @@

Returns

GetValueTags(Type) - +

@@ -1319,7 +1319,7 @@

Returns

ImportDataAsync(string) - +

@@ -1355,7 +1355,7 @@

Returns

InDictionary(bool) - +

@@ -1391,7 +1391,7 @@

Returns

LoadFromPlc() - +

@@ -1422,7 +1422,7 @@

Returns

RefreshFilter() - +

@@ -1453,7 +1453,7 @@

Returns

SendToPlc() - +

@@ -1484,7 +1484,7 @@

Returns

UpdateObservableRecords() - +

@@ -1510,7 +1510,7 @@

- Edit this page + Edit this page

@@ -1526,7 +1526,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.ExportData.html b/docs/api/AXOpen.Data.ExportData.html index a2daff858..3431dc1e3 100644 --- a/docs/api/AXOpen.Data.ExportData.html +++ b/docs/api/AXOpen.Data.ExportData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class ExportData - +

@@ -168,7 +168,7 @@

Constructors

ExportData(bool, Dictionary<string, bool>) - +

@@ -205,7 +205,7 @@

Properties

Data - +

@@ -236,7 +236,7 @@

Property Value

Exported - +

@@ -267,7 +267,7 @@

Property Value

@@ -283,7 +283,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.HashHelper.html b/docs/api/AXOpen.Data.HashHelper.html index a7a0dbe61..b95940aea 100644 --- a/docs/api/AXOpen.Data.HashHelper.html +++ b/docs/api/AXOpen.Data.HashHelper.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class HashHelper - +

@@ -161,7 +161,7 @@

Methods

CreateHash(IAxoDataEntity) - +

@@ -197,7 +197,7 @@

Returns

VerifyHash(IAxoDataEntity, IIdentity) - +

@@ -235,7 +235,7 @@

Returns

@@ -251,7 +251,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.IAxoDataEntity.html b/docs/api/AXOpen.Data.IAxoDataEntity.html index fa4cd1299..5a5d8aaaf 100644 --- a/docs/api/AXOpen.Data.IAxoDataEntity.html +++ b/docs/api/AXOpen.Data.IAxoDataEntity.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDataEntity - +

@@ -136,7 +136,7 @@

Properties

DataEntityId - +

@@ -167,7 +167,7 @@

Property Value

Hash - +

@@ -198,7 +198,7 @@

Property Value

LockedBy - +

@@ -229,7 +229,7 @@

Property Value

@@ -245,7 +245,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.IAxoDataEntityExistTask.html b/docs/api/AXOpen.Data.IAxoDataEntityExistTask.html index 12a7b1ee8..212860741 100644 --- a/docs/api/AXOpen.Data.IAxoDataEntityExistTask.html +++ b/docs/api/AXOpen.Data.IAxoDataEntityExistTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDataEntityExistTask - +

@@ -125,7 +125,7 @@

- Edit this page + Edit this page

@@ -141,7 +141,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.IAxoDataExchange.html b/docs/api/AXOpen.Data.IAxoDataExchange.html index c0d9027ae..41ef29b36 100644 --- a/docs/api/AXOpen.Data.IAxoDataExchange.html +++ b/docs/api/AXOpen.Data.IAxoDataExchange.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoDataExchange - +

@@ -136,7 +136,7 @@

Properties

Exporters - +

@@ -167,7 +167,7 @@

Property Value

RefUIData - +

Gets data of this AxoDataExchange object for automated UI generation.

@@ -199,7 +199,7 @@

Property Value

Repository - +

Gets repository associated with this IAxoDataExchange object.

@@ -231,7 +231,7 @@

Property Value

VerifyHash - +

@@ -266,7 +266,7 @@

Methods

ChangeTrackerGetChanges() - +

Gets changes from changeTracker.

@@ -299,7 +299,7 @@

Returns

ChangeTrackerSaveObservedChanges(IBrowsableDataObject) - +

Saves observed changes from changeTracker to object.

@@ -331,7 +331,7 @@

Parameters

ChangeTrackerSetChanges() - +

Sets changes to changeTracker.

@@ -358,7 +358,7 @@

ChangeTrackerStartObservingChanges(AuthenticationState) - +

Start observing changes of the data object with changeTracker.

@@ -391,7 +391,7 @@

Parameters

ChangeTrackerStopObservingChanges() - +

Stop observing changes of the data object with changeTracker.

@@ -418,7 +418,7 @@

CleanUp(string) - +

Clear directory of temporary files.

@@ -451,7 +451,7 @@

Parameters

CreateCopyCurrentShadowsAsync(string) - +

Create new record of the current data present in the shadows of this object in the repository.

@@ -489,7 +489,7 @@

Returns

CreateDataFromControllerAsync(string) - +

Load data from controller and creates new record in the repository.

@@ -526,7 +526,7 @@

Returns

CreateNewAsync(string) - +

Creates new record in the repository.

@@ -565,7 +565,7 @@

Returns

CreateOrUpdate(string) - +

Create or update record in the repository.

@@ -604,7 +604,7 @@

Returns

Delete(string) - +

Deletes record from the repository.

@@ -643,7 +643,7 @@

Returns

ExistsAsync(string) - +

Check if record exists in the repository.

@@ -682,7 +682,7 @@

Returns

ExportData(string, Dictionary<string, ExportData>, eExportMode, int, int, string, char) - +

Export data from the Repository associated with this IAxoDataExchange.

@@ -728,7 +728,7 @@

Parameters

FromRepositoryToControllerAsync(IBrowsableDataObject) - +

Loads data from respective record of the repository into the controller.

@@ -766,7 +766,7 @@

Returns

FromRepositoryToShadowsAsync(IBrowsableDataObject) - +

Copies the data from the repository(ies) to shadows of this twin object.

@@ -804,7 +804,7 @@

Returns

GetLockedBy() - +

Get object which locked this repository.

@@ -836,7 +836,7 @@

Returns

GetRecords(string, int, int, eSearchMode) - +

Gets records meeting criteria from the Repository associated with this IAxoDataExchange

@@ -884,7 +884,7 @@

Returns

GetRecords(string) - +

Gets record meeting criteria from the Repository associated with this IAxoDataExchange where the data entity id matches exactly the argument.

@@ -923,7 +923,7 @@

Returns

ImportData(string, AuthenticationState, ITwinObject, string, char) - +

Import data from file to the Repository associated with this IAxoDataExchange.

@@ -966,7 +966,7 @@

Parameters

IsHashCorrect(IIdentity) - +

@@ -1002,7 +1002,7 @@

Returns

RemoteCreate(string) - +

Provides handler for remote (controller's) request to create new data entry in the Repository associated with this IAxoDataExchange

@@ -1041,7 +1041,7 @@

Returns

RemoteCreateOrUpdate(string) - +

Provides handler for remote (controller's) request to create or update data in the Repository associated with this IAxoDataExchange

@@ -1080,7 +1080,7 @@

Returns

RemoteDelete(string) - +

Provides handler for remote (controller's) request to delete data from the Repository associated with this IAxoDataExchange

@@ -1119,7 +1119,7 @@

Returns

RemoteEntityExist(string) - +

Provides handler for remote (controller's) request to check if data exists in the Repository associated with this IAxoDataExchange

@@ -1158,7 +1158,7 @@

Returns

RemoteRead(string) - +

Provides handler for remote (controller's) request to read data from the Repository associated with this IAxoDataExchange

@@ -1197,7 +1197,7 @@

Returns

RemoteUpdate(string) - +

Provides handler for remote (controller's) request to update data in the Repository associated with this IAxoDataExchange

@@ -1236,7 +1236,7 @@

Returns

SetLockedBy(object) - +

Set object which locked this repository.

@@ -1268,7 +1268,7 @@

Parameters

UpdateFromShadowsAsync() - +

Updates data form shadows of this object to respective record in the repository.

@@ -1301,7 +1301,7 @@

Returns

@@ -1317,7 +1317,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.IAxoEntityExistTaskState.html b/docs/api/AXOpen.Data.IAxoEntityExistTaskState.html index fb25184b3..5cfd27846 100644 --- a/docs/api/AXOpen.Data.IAxoEntityExistTaskState.html +++ b/docs/api/AXOpen.Data.IAxoEntityExistTaskState.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoEntityExistTaskState - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.ICrudDataObject.html b/docs/api/AXOpen.Data.ICrudDataObject.html index 9c7bbb67d..66dae20a0 100644 --- a/docs/api/AXOpen.Data.ICrudDataObject.html +++ b/docs/api/AXOpen.Data.ICrudDataObject.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface ICrudDataObject - +

@@ -136,7 +136,7 @@

Properties

Changes - +

@@ -167,7 +167,7 @@

Property Value

ChangeTracker - +

@@ -198,7 +198,7 @@

Property Value

DataEntityId - +

@@ -229,7 +229,7 @@

Property Value

@@ -245,7 +245,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.IDataExchangeOperations.html b/docs/api/AXOpen.Data.IDataExchangeOperations.html index 1963da3fc..e90f16c92 100644 --- a/docs/api/AXOpen.Data.IDataExchangeOperations.html +++ b/docs/api/AXOpen.Data.IDataExchangeOperations.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IDataExchangeOperations - +

@@ -138,7 +138,7 @@

Properties

FilterByID - +

@@ -169,7 +169,7 @@

Property Value

SelectedRecord - +

@@ -204,7 +204,7 @@

Methods

InvokeSearch() - +

@@ -230,7 +230,7 @@

- Edit this page + Edit this page

@@ -246,7 +246,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.IDataExporter-2.html b/docs/api/AXOpen.Data.IDataExporter-2.html index fd645bf25..a4579b08f 100644 --- a/docs/api/AXOpen.Data.IDataExporter-2.html +++ b/docs/api/AXOpen.Data.IDataExporter-2.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IDataExporter<TPlain, TOnline> - +

@@ -143,7 +143,7 @@

Methods

Export(IRepository<TPlain>, string, string, Expression<Func<TPlain, bool>>, Dictionary<string, bool>, eExportMode, int, int, char) - +

Export data from the repository.

@@ -196,7 +196,7 @@

Parameters

GetName() - +

Get name of the exporter.

@@ -229,7 +229,7 @@

Returns

Import(IRepository<TPlain>, string, string, AuthenticationState, ITwinObject, char) - +

Import data from file to the repository.

@@ -277,7 +277,7 @@

Parameters

@@ -293,7 +293,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.InMemory.InMemoryRepository-1.html b/docs/api/AXOpen.Data.InMemory.InMemoryRepository-1.html index 9a49cae1e..8a92c0b97 100644 --- a/docs/api/AXOpen.Data.InMemory.InMemoryRepository-1.html +++ b/docs/api/AXOpen.Data.InMemory.InMemoryRepository-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class InMemoryRepository<T> - +

@@ -249,7 +249,7 @@

Constructors

InMemoryRepository() - +

Creates new instance of InMemoryRepository<T>

@@ -276,7 +276,7 @@

InMemoryRepository(InMemoryRepositorySettings<T>) - +

Creates new instance of InMemoryRepository<T>

@@ -313,7 +313,7 @@

Properties

CountNvi - +

@@ -344,7 +344,7 @@

Property Value

Queryable - +

@@ -379,7 +379,7 @@

Methods

CreateNvi(string, T) - +

@@ -412,7 +412,7 @@

Parameters

DeleteNvi(string) - +

@@ -443,7 +443,7 @@

Parameters

ExistsNvi(string) - +

@@ -479,7 +479,7 @@

Returns

FilteredCountNvi(string, eSearchMode) - +

@@ -517,7 +517,7 @@

Returns

GetRecordsNvi(string, int, int, eSearchMode) - +

@@ -559,7 +559,7 @@

Returns

ReadNvi(string) - +

@@ -595,7 +595,7 @@

Returns

UpdateNvi(string, T) - +

@@ -628,7 +628,7 @@

Parameters

@@ -644,7 +644,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.InMemory.InMemoryRepositorySettings-1.html b/docs/api/AXOpen.Data.InMemory.InMemoryRepositorySettings-1.html index 4678544e5..c5f6e8fbf 100644 --- a/docs/api/AXOpen.Data.InMemory.InMemoryRepositorySettings-1.html +++ b/docs/api/AXOpen.Data.InMemory.InMemoryRepositorySettings-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class InMemoryRepositorySettings<T> - +

@@ -172,7 +172,7 @@

Type Parameters

@@ -188,7 +188,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.InMemory.Repository.html b/docs/api/AXOpen.Data.InMemory.Repository.html index 60a9e2d7f..2f172a895 100644 --- a/docs/api/AXOpen.Data.InMemory.Repository.html +++ b/docs/api/AXOpen.Data.InMemory.Repository.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class Repository - +

@@ -161,7 +161,7 @@

Methods

Factory<T>(InMemoryRepositorySettings<T>) - +

@@ -202,7 +202,7 @@

Type Parameters

@@ -218,7 +218,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.InMemory.SameObjectReferenceException.html b/docs/api/AXOpen.Data.InMemory.SameObjectReferenceException.html index 9d3433c23..b6b7d3ccf 100644 --- a/docs/api/AXOpen.Data.InMemory.SameObjectReferenceException.html +++ b/docs/api/AXOpen.Data.InMemory.SameObjectReferenceException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class SameObjectReferenceException - +

@@ -208,7 +208,7 @@

Constructors

SameObjectReferenceException() - +

@@ -234,7 +234,7 @@

SameObjectReferenceException(SerializationInfo, StreamingContext) - +

@@ -267,7 +267,7 @@

Parameters

SameObjectReferenceException(string, Exception) - +

@@ -300,7 +300,7 @@

Parameters

SameObjectReferenceException(string) - +

@@ -331,7 +331,7 @@

Parameters

@@ -347,7 +347,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.InMemory.html b/docs/api/AXOpen.Data.InMemory.html index 3dae46092..b73a04ce9 100644 --- a/docs/api/AXOpen.Data.InMemory.html +++ b/docs/api/AXOpen.Data.InMemory.html @@ -140,7 +140,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.Interfaces.IDataViewModel.html b/docs/api/AXOpen.Data.Interfaces.IDataViewModel.html index 691f0aa64..7db484a74 100644 --- a/docs/api/AXOpen.Data.Interfaces.IDataViewModel.html +++ b/docs/api/AXOpen.Data.Interfaces.IDataViewModel.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IDataViewModel - +

@@ -136,7 +136,7 @@

Properties

CreateItemId - +

@@ -167,7 +167,7 @@

Property Value

FilterById - +

@@ -198,7 +198,7 @@

Property Value

FilteredCount - +

@@ -229,7 +229,7 @@

Property Value

IsBusy - +

@@ -260,7 +260,7 @@

Property Value

Limit - +

@@ -291,7 +291,7 @@

Property Value

Page - +

@@ -322,7 +322,7 @@

Property Value

Records - +

@@ -353,7 +353,7 @@

Property Value

SearchMode - +

@@ -384,7 +384,7 @@

Property Value

SelectedRecord - +

@@ -419,7 +419,7 @@

Methods

Copy() - +

@@ -450,7 +450,7 @@

Returns

CreateNew() - +

@@ -481,7 +481,7 @@

Returns

Delete() - +

@@ -507,7 +507,7 @@

Edit() - +

@@ -538,7 +538,7 @@

Returns

ExportData() - +

@@ -564,7 +564,7 @@

FillObservableRecordsAsync() - +

@@ -595,7 +595,7 @@

Returns

Filter() - +

@@ -626,7 +626,7 @@

Returns

ImportData() - +

@@ -652,7 +652,7 @@

LoadFromPlc() - +

@@ -683,7 +683,7 @@

Returns

RefreshFilter() - +

@@ -714,7 +714,7 @@

Returns

SendToPlc() - +

@@ -748,7 +748,7 @@

Events

PropertyChanged - +

@@ -779,7 +779,7 @@

Event Type

@@ -795,7 +795,7 @@

Event Type

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.Interfaces.html b/docs/api/AXOpen.Data.Interfaces.html index d2aa3f888..5785b2b0b 100644 --- a/docs/api/AXOpen.Data.Interfaces.html +++ b/docs/api/AXOpen.Data.Interfaces.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.Json.JsonRepository-1.html b/docs/api/AXOpen.Data.Json.JsonRepository-1.html index a77501568..e9ed2ca68 100644 --- a/docs/api/AXOpen.Data.Json.JsonRepository-1.html +++ b/docs/api/AXOpen.Data.Json.JsonRepository-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class JsonRepository<T> - +

@@ -250,7 +250,7 @@

Constructors

JsonRepository(JsonRepositorySettings<T>) - +

Creates new instance of JsonRepository<T>

@@ -287,7 +287,7 @@

Properties

CountNvi - +

@@ -318,7 +318,7 @@

Property Value

Location - +

Get the location (directory) where the entries of this repository are placed.

@@ -350,7 +350,7 @@

Property Value

Queryable - +

@@ -385,7 +385,7 @@

Methods

CreateNvi(string, T) - +

@@ -418,7 +418,7 @@

Parameters

DeleteNvi(string) - +

@@ -449,7 +449,7 @@

Parameters

ExistsNvi(string) - +

@@ -485,7 +485,7 @@

Returns

FilteredCountNvi(string, eSearchMode) - +

@@ -523,7 +523,7 @@

Returns

GetRecordsNvi(string, int, int, eSearchMode) - +

@@ -565,7 +565,7 @@

Returns

ReadNvi(string) - +

@@ -601,7 +601,7 @@

Returns

UpdateNvi(string, T) - +

@@ -634,7 +634,7 @@

Parameters

@@ -650,7 +650,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.Json.JsonRepositorySettings-1.html b/docs/api/AXOpen.Data.Json.JsonRepositorySettings-1.html index 96231b429..fa756247e 100644 --- a/docs/api/AXOpen.Data.Json.JsonRepositorySettings-1.html +++ b/docs/api/AXOpen.Data.Json.JsonRepositorySettings-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class JsonRepositorySettings<T> - +

@@ -176,7 +176,7 @@

Constructors

JsonRepositorySettings(string) - +

Creates new instance of JsonRepositorySettings<T>

@@ -213,7 +213,7 @@

Properties

Location - +

Gets location of Json file of the respective repository.

@@ -245,7 +245,7 @@

Property Value

@@ -261,7 +261,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.Json.html b/docs/api/AXOpen.Data.Json.html index 5d6749d4d..06fd8ec20 100644 --- a/docs/api/AXOpen.Data.Json.html +++ b/docs/api/AXOpen.Data.Json.html @@ -133,7 +133,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.MongoDb.FloatTruncationSerializer.html b/docs/api/AXOpen.Data.MongoDb.FloatTruncationSerializer.html index 022cb2e81..8aa64faea 100644 --- a/docs/api/AXOpen.Data.MongoDb.FloatTruncationSerializer.html +++ b/docs/api/AXOpen.Data.MongoDb.FloatTruncationSerializer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class FloatTruncationSerializer - +

@@ -192,7 +192,7 @@

Methods

Deserialize(BsonDeserializationContext, BsonDeserializationArgs) - +

@@ -230,7 +230,7 @@

Returns

Serialize(BsonSerializationContext, BsonSerializationArgs, float) - +

@@ -265,7 +265,7 @@

Parameters

@@ -281,7 +281,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.MongoDb.MongoDbCredentials.html b/docs/api/AXOpen.Data.MongoDb.MongoDbCredentials.html index 55fe51954..3253614e3 100644 --- a/docs/api/AXOpen.Data.MongoDb.MongoDbCredentials.html +++ b/docs/api/AXOpen.Data.MongoDb.MongoDbCredentials.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class MongoDbCredentials - +

@@ -168,7 +168,7 @@

Constructors

MongoDbCredentials(string, string, string) - +

@@ -207,7 +207,7 @@

Properties

Password - +

@@ -238,7 +238,7 @@

Property Value

Username - +

@@ -269,7 +269,7 @@

Property Value

UsersDatabase - +

@@ -300,7 +300,7 @@

Property Value

@@ -316,7 +316,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.MongoDb.MongoDbRepository-1.html b/docs/api/AXOpen.Data.MongoDb.MongoDbRepository-1.html index 63c9d2a84..44218d1e4 100644 --- a/docs/api/AXOpen.Data.MongoDb.MongoDbRepository-1.html +++ b/docs/api/AXOpen.Data.MongoDb.MongoDbRepository-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class MongoDbRepository<T> - +

@@ -253,7 +253,7 @@

Constructors

MongoDbRepository(MongoDbRepositorySettings<T>) - +

Creates new instance of MongoDbRepository<T>.

@@ -290,7 +290,7 @@

Properties

Collection - +

Gets the MongoDB.Driver.IMongoCollection<TDocument> of this repository.

@@ -322,7 +322,7 @@

Property Value

CountNvi - +

@@ -353,7 +353,7 @@

Property Value

Queryable - +

@@ -388,7 +388,7 @@

Methods

CreateNvi(string, T) - +

@@ -421,7 +421,7 @@

Parameters

DeleteNvi(string) - +

@@ -452,7 +452,7 @@

Parameters

ExistsNvi(string) - +

@@ -488,7 +488,7 @@

Returns

FilteredCountNvi(string, eSearchMode) - +

@@ -526,7 +526,7 @@

Returns

GetRecordsNvi(string, int, int, eSearchMode) - +

@@ -568,7 +568,7 @@

Returns

ReadNvi(string) - +

@@ -604,7 +604,7 @@

Returns

UpdateNvi(string, T) - +

@@ -637,7 +637,7 @@

Parameters

@@ -653,7 +653,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.MongoDb.MongoDbRepositorySettings-1.html b/docs/api/AXOpen.Data.MongoDb.MongoDbRepositorySettings-1.html index b47247e47..56c6435d5 100644 --- a/docs/api/AXOpen.Data.MongoDb.MongoDbRepositorySettings-1.html +++ b/docs/api/AXOpen.Data.MongoDb.MongoDbRepositorySettings-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class MongoDbRepositorySettings<T> - +

@@ -174,7 +174,7 @@

Constructors

MongoDbRepositorySettings(string, string, string, MongoDbCredentials) - +

Creates new instance of MongoDbRepositorySettings<T> for a MongoDbRepository<T> with secured access.

@@ -216,7 +216,7 @@

Parameters

MongoDbRepositorySettings(string, string, string) - +

Creates new instance of MongoDbRepositorySettings<T> for a MongoDbRepository<T> with NON-SECURED access.

@@ -259,7 +259,7 @@

Properties

Client - +

@@ -290,7 +290,7 @@

Property Value

Collection - +

@@ -321,7 +321,7 @@

Property Value

Database - +

@@ -356,7 +356,7 @@

Methods

GetConnectionInfo() - +

@@ -387,7 +387,7 @@

Returns

WaitForMongoServerAvailability() - +

@@ -413,7 +413,7 @@

- Edit this page + Edit this page

@@ -429,7 +429,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.MongoDb.Repository.html b/docs/api/AXOpen.Data.MongoDb.Repository.html index f6b231040..7b3afe2e3 100644 --- a/docs/api/AXOpen.Data.MongoDb.Repository.html +++ b/docs/api/AXOpen.Data.MongoDb.Repository.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class Repository - +

@@ -161,7 +161,7 @@

Methods

Factory<T>(MongoDbRepositorySettings<T>) - +

@@ -202,7 +202,7 @@

Type Parameters

@@ -218,7 +218,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.MongoDb.html b/docs/api/AXOpen.Data.MongoDb.html index 647f31b1c..1d65d4860 100644 --- a/docs/api/AXOpen.Data.MongoDb.html +++ b/docs/api/AXOpen.Data.MongoDb.html @@ -149,7 +149,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.MultipleDataEntityAttributeException.html b/docs/api/AXOpen.Data.MultipleDataEntityAttributeException.html index 0c52bf23f..1978b4222 100644 --- a/docs/api/AXOpen.Data.MultipleDataEntityAttributeException.html +++ b/docs/api/AXOpen.Data.MultipleDataEntityAttributeException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class MultipleDataEntityAttributeException - +

@@ -208,7 +208,7 @@

Constructors

MultipleDataEntityAttributeException() - +

@@ -234,7 +234,7 @@

MultipleDataEntityAttributeException(string) - +

@@ -265,7 +265,7 @@

Parameters

@@ -281,7 +281,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.MultipleRemoteCallInitializationException.html b/docs/api/AXOpen.Data.MultipleRemoteCallInitializationException.html index 6b8d7e602..532b4c9e8 100644 --- a/docs/api/AXOpen.Data.MultipleRemoteCallInitializationException.html +++ b/docs/api/AXOpen.Data.MultipleRemoteCallInitializationException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class MultipleRemoteCallInitializationException - +

@@ -208,7 +208,7 @@

Constructors

MultipleRemoteCallInitializationException() - +

@@ -234,7 +234,7 @@

MultipleRemoteCallInitializationException(SerializationInfo, StreamingContext) - +

Initializes a new instance of the MultipleRemoteCallInitializationException class with serialized data.

@@ -279,7 +279,7 @@

Exceptions

MultipleRemoteCallInitializationException(string, Exception) - +

Initializes a new instance of the MultipleRemoteCallInitializationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

@@ -315,7 +315,7 @@

Parameters

MultipleRemoteCallInitializationException(string) - +

Initializes a new instance of the MultipleRemoteCallInitializationException class with a specified error message.

@@ -348,7 +348,7 @@

Parameters

@@ -364,7 +364,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.RavenDb.RavenDbRepository-1.html b/docs/api/AXOpen.Data.RavenDb.RavenDbRepository-1.html index aea84784f..688c08867 100644 --- a/docs/api/AXOpen.Data.RavenDb.RavenDbRepository-1.html +++ b/docs/api/AXOpen.Data.RavenDb.RavenDbRepository-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class RavenDbRepository<T> - +

@@ -244,7 +244,7 @@

Constructors

RavenDbRepository(RavenDbRepositorySettingsBase<T>) - +

@@ -279,7 +279,7 @@

Properties

CountNvi - +

@@ -310,7 +310,7 @@

Property Value

Queryable - +

@@ -345,7 +345,7 @@

Methods

CreateNvi(string, T) - +

@@ -378,7 +378,7 @@

Parameters

DeleteNvi(string) - +

@@ -409,7 +409,7 @@

Parameters

EnsureDatabaseExists(IDocumentStore, string, bool) - +

@@ -444,7 +444,7 @@

Parameters

ExistsNvi(string) - +

@@ -480,7 +480,7 @@

Returns

FilteredCountNvi(string, eSearchMode) - +

@@ -518,7 +518,7 @@

Returns

GetRecordsNvi(string, int, int, eSearchMode) - +

@@ -560,7 +560,7 @@

Returns

ReadNvi(string) - +

@@ -596,7 +596,7 @@

Returns

UpdateNvi(string, T) - +

@@ -629,7 +629,7 @@

Parameters

@@ -645,7 +645,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.RavenDb.RavenDbRepositorySettings-1.html b/docs/api/AXOpen.Data.RavenDb.RavenDbRepositorySettings-1.html index 4533b8c1d..d19cf6e29 100644 --- a/docs/api/AXOpen.Data.RavenDb.RavenDbRepositorySettings-1.html +++ b/docs/api/AXOpen.Data.RavenDb.RavenDbRepositorySettings-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class RavenDbRepositorySettings<T> - +

@@ -178,7 +178,7 @@

Constructors

RavenDbRepositorySettings(string[], string, string, string) - +

@@ -215,7 +215,7 @@

Parameters

@@ -231,7 +231,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.RavenDb.RavenDbRepositorySettingsBase-1.html b/docs/api/AXOpen.Data.RavenDb.RavenDbRepositorySettingsBase-1.html index 8b50e0821..e6430132c 100644 --- a/docs/api/AXOpen.Data.RavenDb.RavenDbRepositorySettingsBase-1.html +++ b/docs/api/AXOpen.Data.RavenDb.RavenDbRepositorySettingsBase-1.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class RavenDbRepositorySettingsBase<T> - +

@@ -180,7 +180,7 @@

Properties

Store - +

@@ -211,7 +211,7 @@

Property Value

@@ -227,7 +227,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.RavenDb.SharedData.html b/docs/api/AXOpen.Data.RavenDb.SharedData.html index c777ef92b..76f09e589 100644 --- a/docs/api/AXOpen.Data.RavenDb.SharedData.html +++ b/docs/api/AXOpen.Data.RavenDb.SharedData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class SharedData - +

@@ -160,7 +160,7 @@

Fields

Stores - +

@@ -191,7 +191,7 @@

Field Value

@@ -207,7 +207,7 @@

Field Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.RavenDb.html b/docs/api/AXOpen.Data.RavenDb.html index 016b09970..058d133f4 100644 --- a/docs/api/AXOpen.Data.RavenDb.html +++ b/docs/api/AXOpen.Data.RavenDb.html @@ -135,7 +135,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.TXTDataExporter-2.html b/docs/api/AXOpen.Data.TXTDataExporter-2.html index fa50673b1..862a91121 100644 --- a/docs/api/AXOpen.Data.TXTDataExporter-2.html +++ b/docs/api/AXOpen.Data.TXTDataExporter-2.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class TXTDataExporter<TPlain, TOnline> - +

@@ -191,7 +191,7 @@

Constructors

TXTDataExporter() - +

@@ -221,7 +221,7 @@

Methods

Export(IRepository<TPlain>, string, string, Expression<Func<TPlain, bool>>, Dictionary<string, bool>, eExportMode, int, int, char) - +

@@ -268,7 +268,7 @@

Parameters

GetName() - +

@@ -299,7 +299,7 @@

Returns

Import(IRepository<TPlain>, string, string, AuthenticationState, ITwinObject, char) - +

@@ -340,7 +340,7 @@

Parameters

@@ -356,7 +356,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.ValueChangeItem.html b/docs/api/AXOpen.Data.ValueChangeItem.html index 8974693d3..dc17e130d 100644 --- a/docs/api/AXOpen.Data.ValueChangeItem.html +++ b/docs/api/AXOpen.Data.ValueChangeItem.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class ValueChangeItem - +

@@ -168,7 +168,7 @@

Properties

DateTime - +

@@ -199,7 +199,7 @@

Property Value

NewValue - +

@@ -230,7 +230,7 @@

Property Value

OldValue - +

@@ -261,7 +261,7 @@

Property Value

UserName - +

@@ -292,7 +292,7 @@

Property Value

ValueTag - +

@@ -323,7 +323,7 @@

Property Value

@@ -339,7 +339,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.ValueChangeTracker.html b/docs/api/AXOpen.Data.ValueChangeTracker.html index ca2aa0cf2..6b1a1b007 100644 --- a/docs/api/AXOpen.Data.ValueChangeTracker.html +++ b/docs/api/AXOpen.Data.ValueChangeTracker.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class ValueChangeTracker - +

@@ -168,7 +168,7 @@

Constructors

ValueChangeTracker(ICrudDataObject) - +

@@ -203,7 +203,7 @@

Methods

Import(IBrowsableDataObject) - +

@@ -234,7 +234,7 @@

Parameters

SaveObservedChanges(IBrowsableDataObject) - +

@@ -265,7 +265,7 @@

Parameters

StartObservingChanges(AuthenticationState) - +

@@ -296,7 +296,7 @@

Parameters

StopObservingChanges() - +

@@ -322,7 +322,7 @@

- Edit this page + Edit this page

@@ -338,7 +338,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.ValueItemDescriptor.html b/docs/api/AXOpen.Data.ValueItemDescriptor.html index 24701d395..0720f9cf9 100644 --- a/docs/api/AXOpen.Data.ValueItemDescriptor.html +++ b/docs/api/AXOpen.Data.ValueItemDescriptor.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class ValueItemDescriptor - +

@@ -168,7 +168,7 @@

Constructors

ValueItemDescriptor() - +

@@ -194,7 +194,7 @@

ValueItemDescriptor(ITwinPrimitive) - +

@@ -229,7 +229,7 @@

Properties

HumanReadable - +

@@ -260,7 +260,7 @@

Property Value

Symbol - +

@@ -291,7 +291,7 @@

Property Value

@@ -307,7 +307,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.WrongTypeOfDataObjectException.html b/docs/api/AXOpen.Data.WrongTypeOfDataObjectException.html index 21bfff502..b4244798b 100644 --- a/docs/api/AXOpen.Data.WrongTypeOfDataObjectException.html +++ b/docs/api/AXOpen.Data.WrongTypeOfDataObjectException.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class WrongTypeOfDataObjectException - +

@@ -208,7 +208,7 @@

Constructors

WrongTypeOfDataObjectException(string) - +

@@ -239,7 +239,7 @@

Parameters

@@ -255,7 +255,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.eCrudOperation.html b/docs/api/AXOpen.Data.eCrudOperation.html index 5bcf745fa..e9dee2a3a 100644 --- a/docs/api/AXOpen.Data.eCrudOperation.html +++ b/docs/api/AXOpen.Data.eCrudOperation.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eCrudOperation - +

@@ -147,7 +147,7 @@

Fields @@ -163,7 +163,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.eExportMode.html b/docs/api/AXOpen.Data.eExportMode.html index 55768b02d..6fc3450ec 100644 --- a/docs/api/AXOpen.Data.eExportMode.html +++ b/docs/api/AXOpen.Data.eExportMode.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eExportMode - +

@@ -141,7 +141,7 @@

Fields @@ -157,7 +157,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Data.html b/docs/api/AXOpen.Data.html index 2d6e7c98f..3108a2b02 100644 --- a/docs/api/AXOpen.Data.html +++ b/docs/api/AXOpen.Data.html @@ -272,7 +272,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.AxoAi.html b/docs/api/AXOpen.Elements.AxoAi.html index eb13ac166..043194974 100644 --- a/docs/api/AXOpen.Elements.AxoAi.html +++ b/docs/api/AXOpen.Elements.AxoAi.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoAi - +

@@ -258,7 +258,7 @@

Constructors

AxoAi(ITwinObject, string, string) - +

@@ -297,7 +297,7 @@

Properties

_config - +

@@ -330,7 +330,7 @@

Property Value

_messengerDivisionByZero - +

@@ -361,7 +361,7 @@

Property Value

_messengerGainNotDefined - +

@@ -392,7 +392,7 @@

Property Value

_messengerOutOfBoundaries - +

@@ -423,7 +423,7 @@

Property Value

_rawRange - +

@@ -455,7 +455,7 @@

Property Value

_realRange - +

@@ -486,7 +486,7 @@

Property Value

_scaled - +

@@ -517,7 +517,7 @@

Property Value

_status - +

@@ -556,7 +556,7 @@

Methods

CreateEmptyPoco() - +

@@ -587,7 +587,7 @@

Returns

OnlineToPlain<T>() - +

@@ -623,7 +623,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -654,7 +654,7 @@

Returns

OnlineToPlainAsync(AxoAi) - +

@@ -690,7 +690,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -731,7 +731,7 @@

Type Parameters

PlainToOnlineAsync(AxoAi) - +

@@ -767,7 +767,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -808,7 +808,7 @@

Type Parameters

PlainToShadowAsync(AxoAi) - +

@@ -844,7 +844,7 @@

Returns

Poll() - +

@@ -870,7 +870,7 @@

ShadowToPlain<T>() - +

@@ -906,7 +906,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -937,7 +937,7 @@

Returns

ShadowToPlainAsync(AxoAi) - +

@@ -973,7 +973,7 @@

Returns

@@ -989,7 +989,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.AxoAiConfig.html b/docs/api/AXOpen.Elements.AxoAiConfig.html index eef031895..3ac9dd926 100644 --- a/docs/api/AXOpen.Elements.AxoAiConfig.html +++ b/docs/api/AXOpen.Elements.AxoAiConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAiConfig - +

@@ -175,7 +175,7 @@

Constructors

AxoAiConfig(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

Gain - +

@@ -307,7 +307,7 @@

Property Value

HumanReadable - +

@@ -338,7 +338,7 @@

Property Value

Interpreter - +

@@ -369,7 +369,7 @@

Property Value

Offset - +

@@ -400,7 +400,7 @@

Property Value

Parent - +

@@ -431,7 +431,7 @@

Property Value

RawHigh - +

@@ -462,7 +462,7 @@

Property Value

RawLow - +

@@ -493,7 +493,7 @@

Property Value

RealHigh - +

@@ -524,7 +524,7 @@

Property Value

RealLow - +

@@ -555,7 +555,7 @@

Property Value

Symbol - +

@@ -586,7 +586,7 @@

Property Value

SymbolTail - +

@@ -621,7 +621,7 @@

Methods

AddChild(ITwinObject) - +

@@ -652,7 +652,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -683,7 +683,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -714,7 +714,7 @@

Parameters

CreateEmptyPoco() - +

@@ -745,7 +745,7 @@

Returns

GetChildren() - +

@@ -776,7 +776,7 @@

Returns

GetConnector() - +

@@ -807,7 +807,7 @@

Returns

GetKids() - +

@@ -838,7 +838,7 @@

Returns

GetParent() - +

@@ -869,7 +869,7 @@

Returns

GetSymbolTail() - +

@@ -900,7 +900,7 @@

Returns

GetValueTags() - +

@@ -931,7 +931,7 @@

Returns

OnlineToPlain<T>() - +

@@ -967,7 +967,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -998,7 +998,7 @@

Returns

OnlineToPlainAsync(AxoAiConfig) - +

@@ -1034,7 +1034,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1075,7 +1075,7 @@

Type Parameters

PlainToOnlineAsync(AxoAiConfig) - +

@@ -1111,7 +1111,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1152,7 +1152,7 @@

Type Parameters

PlainToShadowAsync(AxoAiConfig) - +

@@ -1188,7 +1188,7 @@

Returns

Poll() - +

@@ -1214,7 +1214,7 @@

ShadowToPlain<T>() - +

@@ -1250,7 +1250,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1281,7 +1281,7 @@

Returns

ShadowToPlainAsync(AxoAiConfig) - +

@@ -1317,7 +1317,7 @@

Returns

@@ -1333,7 +1333,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.AxoAiStatus.html b/docs/api/AXOpen.Elements.AxoAiStatus.html index e5574efa0..d2026a836 100644 --- a/docs/api/AXOpen.Elements.AxoAiStatus.html +++ b/docs/api/AXOpen.Elements.AxoAiStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAiStatus - +

@@ -175,7 +175,7 @@

Constructors

AxoAiStatus(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

HumanReadable - +

@@ -307,7 +307,7 @@

Property Value

Interpreter - +

@@ -338,7 +338,7 @@

Property Value

Parent - +

@@ -369,7 +369,7 @@

Property Value

RawRange - +

@@ -400,7 +400,7 @@

Property Value

RealRange - +

@@ -431,7 +431,7 @@

Property Value

Scaled - +

@@ -462,7 +462,7 @@

Property Value

Symbol - +

@@ -493,7 +493,7 @@

Property Value

SymbolTail - +

@@ -528,7 +528,7 @@

Methods

AddChild(ITwinObject) - +

@@ -559,7 +559,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -590,7 +590,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -621,7 +621,7 @@

Parameters

CreateEmptyPoco() - +

@@ -652,7 +652,7 @@

Returns

GetChildren() - +

@@ -683,7 +683,7 @@

Returns

GetConnector() - +

@@ -714,7 +714,7 @@

Returns

GetKids() - +

@@ -745,7 +745,7 @@

Returns

GetParent() - +

@@ -776,7 +776,7 @@

Returns

GetSymbolTail() - +

@@ -807,7 +807,7 @@

Returns

GetValueTags() - +

@@ -838,7 +838,7 @@

Returns

OnlineToPlain<T>() - +

@@ -874,7 +874,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -905,7 +905,7 @@

Returns

OnlineToPlainAsync(AxoAiStatus) - +

@@ -941,7 +941,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -982,7 +982,7 @@

Type Parameters

PlainToOnlineAsync(AxoAiStatus) - +

@@ -1018,7 +1018,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1059,7 +1059,7 @@

Type Parameters

PlainToShadowAsync(AxoAiStatus) - +

@@ -1095,7 +1095,7 @@

Returns

Poll() - +

@@ -1121,7 +1121,7 @@

ShadowToPlain<T>() - +

@@ -1157,7 +1157,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1188,7 +1188,7 @@

Returns

ShadowToPlainAsync(AxoAiStatus) - +

@@ -1224,7 +1224,7 @@

Returns

@@ -1240,7 +1240,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.AxoAo.html b/docs/api/AXOpen.Elements.AxoAo.html index 6435653bf..8d79727bc 100644 --- a/docs/api/AXOpen.Elements.AxoAo.html +++ b/docs/api/AXOpen.Elements.AxoAo.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAo - +

@@ -258,7 +258,7 @@

Constructors

AxoAo(ITwinObject, string, string) - +

@@ -297,7 +297,7 @@

Properties

_config - +

@@ -330,7 +330,7 @@

Property Value

_messengerDivisionByZero - +

@@ -361,7 +361,7 @@

Property Value

_messengerGainNotDefined - +

@@ -392,7 +392,7 @@

Property Value

_messengerOutOfBoundaries - +

@@ -423,7 +423,7 @@

Property Value

_rawRange - +

@@ -454,7 +454,7 @@

Property Value

_realRange - +

@@ -485,7 +485,7 @@

Property Value

_requiredValue - +

@@ -518,7 +518,7 @@

Property Value

_status - +

@@ -553,7 +553,7 @@

Property Value

_unscaled - +

@@ -588,7 +588,7 @@

Methods

CreateEmptyPoco() - +

@@ -619,7 +619,7 @@

Returns

OnlineToPlain<T>() - +

@@ -655,7 +655,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -686,7 +686,7 @@

Returns

OnlineToPlainAsync(AxoAo) - +

@@ -722,7 +722,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -763,7 +763,7 @@

Type Parameters

PlainToOnlineAsync(AxoAo) - +

@@ -799,7 +799,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -840,7 +840,7 @@

Type Parameters

PlainToShadowAsync(AxoAo) - +

@@ -876,7 +876,7 @@

Returns

Poll() - +

@@ -902,7 +902,7 @@

ShadowToPlain<T>() - +

@@ -938,7 +938,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -969,7 +969,7 @@

Returns

ShadowToPlainAsync(AxoAo) - +

@@ -1005,7 +1005,7 @@

Returns

@@ -1021,7 +1021,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.AxoAoConfig.html b/docs/api/AXOpen.Elements.AxoAoConfig.html index 6e18abc20..2bf1f486f 100644 --- a/docs/api/AXOpen.Elements.AxoAoConfig.html +++ b/docs/api/AXOpen.Elements.AxoAoConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAoConfig - +

@@ -175,7 +175,7 @@

Constructors

AxoAoConfig(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

Gain - +

@@ -307,7 +307,7 @@

Property Value

HumanReadable - +

@@ -338,7 +338,7 @@

Property Value

Interpreter - +

@@ -369,7 +369,7 @@

Property Value

Offset - +

@@ -400,7 +400,7 @@

Property Value

Parent - +

@@ -431,7 +431,7 @@

Property Value

RawHigh - +

@@ -462,7 +462,7 @@

Property Value

RawLow - +

@@ -493,7 +493,7 @@

Property Value

RealHigh - +

@@ -524,7 +524,7 @@

Property Value

RealLow - +

@@ -555,7 +555,7 @@

Property Value

Symbol - +

@@ -586,7 +586,7 @@

Property Value

SymbolTail - +

@@ -621,7 +621,7 @@

Methods

AddChild(ITwinObject) - +

@@ -652,7 +652,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -683,7 +683,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -714,7 +714,7 @@

Parameters

CreateEmptyPoco() - +

@@ -745,7 +745,7 @@

Returns

GetChildren() - +

@@ -776,7 +776,7 @@

Returns

GetConnector() - +

@@ -807,7 +807,7 @@

Returns

GetKids() - +

@@ -838,7 +838,7 @@

Returns

GetParent() - +

@@ -869,7 +869,7 @@

Returns

GetSymbolTail() - +

@@ -900,7 +900,7 @@

Returns

GetValueTags() - +

@@ -931,7 +931,7 @@

Returns

OnlineToPlain<T>() - +

@@ -967,7 +967,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -998,7 +998,7 @@

Returns

OnlineToPlainAsync(AxoAoConfig) - +

@@ -1034,7 +1034,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1075,7 +1075,7 @@

Type Parameters

PlainToOnlineAsync(AxoAoConfig) - +

@@ -1111,7 +1111,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1152,7 +1152,7 @@

Type Parameters

PlainToShadowAsync(AxoAoConfig) - +

@@ -1188,7 +1188,7 @@

Returns

Poll() - +

@@ -1214,7 +1214,7 @@

ShadowToPlain<T>() - +

@@ -1250,7 +1250,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1281,7 +1281,7 @@

Returns

ShadowToPlainAsync(AxoAoConfig) - +

@@ -1317,7 +1317,7 @@

Returns

@@ -1333,7 +1333,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.AxoAoStatus.html b/docs/api/AXOpen.Elements.AxoAoStatus.html index 0acc6a2cb..3818816a3 100644 --- a/docs/api/AXOpen.Elements.AxoAoStatus.html +++ b/docs/api/AXOpen.Elements.AxoAoStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAoStatus - +

@@ -175,7 +175,7 @@

Constructors

AxoAoStatus(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

HumanReadable - +

@@ -307,7 +307,7 @@

Property Value

Interpreter - +

@@ -338,7 +338,7 @@

Property Value

Parent - +

@@ -369,7 +369,7 @@

Property Value

RawRange - +

@@ -400,7 +400,7 @@

Property Value

RealRange - +

@@ -431,7 +431,7 @@

Property Value

Symbol - +

@@ -462,7 +462,7 @@

Property Value

SymbolTail - +

@@ -493,7 +493,7 @@

Property Value

Unscaled - +

@@ -528,7 +528,7 @@

Methods

AddChild(ITwinObject) - +

@@ -559,7 +559,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -590,7 +590,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -621,7 +621,7 @@

Parameters

CreateEmptyPoco() - +

@@ -652,7 +652,7 @@

Returns

GetChildren() - +

@@ -683,7 +683,7 @@

Returns

GetConnector() - +

@@ -714,7 +714,7 @@

Returns

GetKids() - +

@@ -745,7 +745,7 @@

Returns

GetParent() - +

@@ -776,7 +776,7 @@

Returns

GetSymbolTail() - +

@@ -807,7 +807,7 @@

Returns

GetValueTags() - +

@@ -838,7 +838,7 @@

Returns

OnlineToPlain<T>() - +

@@ -874,7 +874,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -905,7 +905,7 @@

Returns

OnlineToPlainAsync(AxoAoStatus) - +

@@ -941,7 +941,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -982,7 +982,7 @@

Type Parameters

PlainToOnlineAsync(AxoAoStatus) - +

@@ -1018,7 +1018,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1059,7 +1059,7 @@

Type Parameters

PlainToShadowAsync(AxoAoStatus) - +

@@ -1095,7 +1095,7 @@

Returns

Poll() - +

@@ -1121,7 +1121,7 @@

ShadowToPlain<T>() - +

@@ -1157,7 +1157,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1188,7 +1188,7 @@

Returns

ShadowToPlainAsync(AxoAoStatus) - +

@@ -1224,7 +1224,7 @@

Returns

@@ -1240,7 +1240,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.AxoDi.html b/docs/api/AXOpen.Elements.AxoDi.html index 11e786059..dc37cac65 100644 --- a/docs/api/AXOpen.Elements.AxoDi.html +++ b/docs/api/AXOpen.Elements.AxoDi.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDi - +

@@ -258,7 +258,7 @@

Constructors

AxoDi(ITwinObject, string, string) - +

@@ -297,7 +297,7 @@

Properties

_isFalseTask - +

@@ -329,7 +329,7 @@

Property Value

_isTrueTask - +

@@ -362,7 +362,7 @@

Property Value

_messengerInfoNegative - +

@@ -393,7 +393,7 @@

Property Value

_messengerInfoPositive - +

@@ -428,7 +428,7 @@

Methods

CreateEmptyPoco() - +

@@ -459,7 +459,7 @@

Returns

OnlineToPlain<T>() - +

@@ -495,7 +495,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -526,7 +526,7 @@

Returns

OnlineToPlainAsync(AxoDi) - +

@@ -562,7 +562,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -603,7 +603,7 @@

Type Parameters

PlainToOnlineAsync(AxoDi) - +

@@ -639,7 +639,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -680,7 +680,7 @@

Type Parameters

PlainToShadowAsync(AxoDi) - +

@@ -716,7 +716,7 @@

Returns

Poll() - +

@@ -742,7 +742,7 @@

ShadowToPlain<T>() - +

@@ -778,7 +778,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -809,7 +809,7 @@

Returns

ShadowToPlainAsync(AxoDi) - +

@@ -845,7 +845,7 @@

Returns

@@ -861,7 +861,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.AxoDo.html b/docs/api/AXOpen.Elements.AxoDo.html index ddda9af47..a768735eb 100644 --- a/docs/api/AXOpen.Elements.AxoDo.html +++ b/docs/api/AXOpen.Elements.AxoDo.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDo - +

@@ -258,7 +258,7 @@

Constructors

AxoDo(ITwinObject, string, string) - +

@@ -297,7 +297,7 @@

Properties

_messengerInfoNegative - +

@@ -328,7 +328,7 @@

Property Value

_messengerInfoPositive - +

@@ -359,7 +359,7 @@

Property Value

_resetTask - +

@@ -391,7 +391,7 @@

Property Value

_setTask - +

@@ -428,7 +428,7 @@

Methods

CreateEmptyPoco() - +

@@ -459,7 +459,7 @@

Returns

OnlineToPlain<T>() - +

@@ -495,7 +495,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -526,7 +526,7 @@

Returns

OnlineToPlainAsync(AxoDo) - +

@@ -562,7 +562,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -603,7 +603,7 @@

Type Parameters

PlainToOnlineAsync(AxoDo) - +

@@ -639,7 +639,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -680,7 +680,7 @@

Type Parameters

PlainToShadowAsync(AxoDo) - +

@@ -716,7 +716,7 @@

Returns

Poll() - +

@@ -742,7 +742,7 @@

ShadowToPlain<T>() - +

@@ -778,7 +778,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -809,7 +809,7 @@

Returns

ShadowToPlainAsync(AxoDo) - +

@@ -845,7 +845,7 @@

Returns

@@ -861,7 +861,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Elements.html b/docs/api/AXOpen.Elements.html index 110fdaee1..50a962ccb 100644 --- a/docs/api/AXOpen.Elements.html +++ b/docs/api/AXOpen.Elements.html @@ -151,7 +151,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.IAxoApplication.html b/docs/api/AXOpen.IAxoApplication.html index 9c2c77088..f8f173a07 100644 --- a/docs/api/AXOpen.IAxoApplication.html +++ b/docs/api/AXOpen.IAxoApplication.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoApplication - +

@@ -137,7 +137,7 @@

Properties

Logger - +

Gets logger configured for this application.

@@ -169,7 +169,7 @@

Property Value

@@ -185,7 +185,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.IAxoApplicationBuilder.html b/docs/api/AXOpen.IAxoApplicationBuilder.html index 087fc43b3..7bbc7b864 100644 --- a/docs/api/AXOpen.IAxoApplicationBuilder.html +++ b/docs/api/AXOpen.IAxoApplicationBuilder.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoApplicationBuilder - +

@@ -137,7 +137,7 @@

Methods

Build() - +

Builds an AxoApplication.

@@ -170,7 +170,7 @@

Returns

ConfigureLogger(ILogger) - +

Configures logger for an AxoApplication

@@ -209,7 +209,7 @@

Returns

@@ -225,7 +225,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.AxoLogEntry.html b/docs/api/AXOpen.Logging.AxoLogEntry.html index dc9b8a9e5..0d2ed06a9 100644 --- a/docs/api/AXOpen.Logging.AxoLogEntry.html +++ b/docs/api/AXOpen.Logging.AxoLogEntry.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoLogEntry - +

@@ -175,7 +175,7 @@

Constructors

AxoLogEntry(ITwinObject, string, string) - +

@@ -214,7 +214,7 @@

Properties

AttributeName - +

@@ -245,7 +245,7 @@

Property Value

Connector - +

@@ -276,7 +276,7 @@

Property Value

HumanReadable - +

@@ -307,7 +307,7 @@

Property Value

Interpreter - +

@@ -338,7 +338,7 @@

Property Value

Level - +

@@ -370,7 +370,7 @@

Property Value

Message - +

@@ -401,7 +401,7 @@

Property Value

Parent - +

@@ -432,7 +432,7 @@

Property Value

Sender - +

@@ -463,7 +463,7 @@

Property Value

Symbol - +

@@ -494,7 +494,7 @@

Property Value

SymbolTail - +

@@ -525,7 +525,7 @@

Property Value

ToDequeue - +

@@ -560,7 +560,7 @@

Methods

AddChild(ITwinObject) - +

@@ -591,7 +591,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -622,7 +622,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -653,7 +653,7 @@

Parameters

CreateEmptyPoco() - +

@@ -684,7 +684,7 @@

Returns

GetChildren() - +

@@ -715,7 +715,7 @@

Returns

GetConnector() - +

@@ -746,7 +746,7 @@

Returns

GetKids() - +

@@ -777,7 +777,7 @@

Returns

GetParent() - +

@@ -808,7 +808,7 @@

Returns

GetSymbolTail() - +

@@ -839,7 +839,7 @@

Returns

GetValueTags() - +

@@ -870,7 +870,7 @@

Returns

OnlineToPlain<T>() - +

@@ -906,7 +906,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -937,7 +937,7 @@

Returns

OnlineToPlainAsync(AxoLogEntry) - +

@@ -973,7 +973,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1014,7 +1014,7 @@

Type Parameters

PlainToOnlineAsync(AxoLogEntry) - +

@@ -1050,7 +1050,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1091,7 +1091,7 @@

Type Parameters

PlainToShadowAsync(AxoLogEntry) - +

@@ -1127,7 +1127,7 @@

Returns

Poll() - +

@@ -1153,7 +1153,7 @@

ShadowToPlain<T>() - +

@@ -1189,7 +1189,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1220,7 +1220,7 @@

Returns

ShadowToPlainAsync(AxoLogEntry) - +

@@ -1256,7 +1256,7 @@

Returns

@@ -1272,7 +1272,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.AxoLogger.html b/docs/api/AXOpen.Logging.AxoLogger.html index cdd30835c..3c6fb6a5a 100644 --- a/docs/api/AXOpen.Logging.AxoLogger.html +++ b/docs/api/AXOpen.Logging.AxoLogger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoLogger - +

@@ -177,7 +177,7 @@

Constructors

AxoLogger(ITwinObject, string, string) - +

@@ -216,7 +216,7 @@

Properties

AttributeName - +

@@ -247,7 +247,7 @@

Property Value

Carret - +

@@ -278,7 +278,7 @@

Property Value

Connector - +

@@ -309,7 +309,7 @@

Property Value

HumanReadable - +

@@ -340,7 +340,7 @@

Property Value

Interpreter - +

@@ -371,7 +371,7 @@

Property Value

LogEntries - +

@@ -402,7 +402,7 @@

Property Value

MinimumLevel - +

@@ -434,7 +434,7 @@

Property Value

Parent - +

@@ -465,7 +465,7 @@

Property Value

Symbol - +

@@ -496,7 +496,7 @@

Property Value

SymbolTail - +

@@ -531,7 +531,7 @@

Methods

AddChild(ITwinObject) - +

@@ -562,7 +562,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -593,7 +593,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -624,7 +624,7 @@

Parameters

CreateEmptyPoco() - +

@@ -655,7 +655,7 @@

Returns

Dequeue() - +

@@ -686,7 +686,7 @@

Returns

GetChildren() - +

@@ -717,7 +717,7 @@

Returns

GetConnector() - +

@@ -748,7 +748,7 @@

Returns

GetKids() - +

@@ -779,7 +779,7 @@

Returns

GetParent() - +

@@ -810,7 +810,7 @@

Returns

GetSymbolTail() - +

@@ -841,7 +841,7 @@

Returns

GetValueTags() - +

@@ -872,7 +872,7 @@

Returns

OnlineToPlain<T>() - +

@@ -908,7 +908,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -939,7 +939,7 @@

Returns

OnlineToPlainAsync(AxoLogger) - +

@@ -975,7 +975,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -1016,7 +1016,7 @@

Type Parameters

PlainToOnlineAsync(AxoLogger) - +

@@ -1052,7 +1052,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1093,7 +1093,7 @@

Type Parameters

PlainToShadowAsync(AxoLogger) - +

@@ -1129,7 +1129,7 @@

Returns

Poll() - +

@@ -1155,7 +1155,7 @@

SetLogger(ILogger) - +

@@ -1186,7 +1186,7 @@

Parameters

ShadowToPlain<T>() - +

@@ -1222,7 +1222,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1253,7 +1253,7 @@

Returns

ShadowToPlainAsync(AxoLogger) - +

@@ -1289,7 +1289,7 @@

Returns

StartDequeuing(ILogger, int) - +

@@ -1322,7 +1322,7 @@

Parameters

@@ -1338,7 +1338,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.IAxoLogger.html b/docs/api/AXOpen.Logging.IAxoLogger.html index 23e74679f..be8ffd455 100644 --- a/docs/api/AXOpen.Logging.IAxoLogger.html +++ b/docs/api/AXOpen.Logging.IAxoLogger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoLogger - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.IAxoLoggerConfig.html b/docs/api/AXOpen.Logging.IAxoLoggerConfig.html index 07fbed548..dd77f528c 100644 --- a/docs/api/AXOpen.Logging.IAxoLoggerConfig.html +++ b/docs/api/AXOpen.Logging.IAxoLoggerConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoLoggerConfig - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.ILogger.html b/docs/api/AXOpen.Logging.ILogger.html index 6a3193de1..49fde3892 100644 --- a/docs/api/AXOpen.Logging.ILogger.html +++ b/docs/api/AXOpen.Logging.ILogger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface ILogger - +

@@ -136,7 +136,7 @@

Methods

Debug(string, ITwinElement, IIdentity, object) - +

@@ -173,7 +173,7 @@

Parameters

Debug(string, IIdentity) - +

@@ -206,7 +206,7 @@

Parameters

Error(string, ITwinElement, IIdentity, object) - +

@@ -243,7 +243,7 @@

Parameters

Error(string, IIdentity) - +

@@ -276,7 +276,7 @@

Parameters

Fatal(string, ITwinElement, IIdentity, object) - +

@@ -313,7 +313,7 @@

Parameters

Fatal(string, IIdentity) - +

@@ -346,7 +346,7 @@

Parameters

Information(string, ITwinElement, IIdentity, object) - +

@@ -383,7 +383,7 @@

Parameters

Information(string, IIdentity) - +

@@ -416,7 +416,7 @@

Parameters

Verbose(string, ITwinElement, IIdentity, object) - +

@@ -453,7 +453,7 @@

Parameters

Verbose(string, IIdentity) - +

@@ -486,7 +486,7 @@

Parameters

Warning(string, ITwinElement, IIdentity, object) - +

@@ -523,7 +523,7 @@

Parameters

Warning(string, IIdentity) - +

@@ -556,7 +556,7 @@

Parameters

@@ -572,7 +572,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.LoggingServiceConfiguration.html b/docs/api/AXOpen.Logging.LoggingServiceConfiguration.html index 9d97a0713..caa71796e 100644 --- a/docs/api/AXOpen.Logging.LoggingServiceConfiguration.html +++ b/docs/api/AXOpen.Logging.LoggingServiceConfiguration.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class LoggingServiceConfiguration - +

@@ -162,7 +162,7 @@

Methods

AddAxoLoggingServices(IServiceCollection) - +

@@ -193,7 +193,7 @@

Parameters

@@ -209,7 +209,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.SerilogLogger.html b/docs/api/AXOpen.Logging.SerilogLogger.html index b1c715ed4..d86c7b88a 100644 --- a/docs/api/AXOpen.Logging.SerilogLogger.html +++ b/docs/api/AXOpen.Logging.SerilogLogger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class SerilogLogger - +

@@ -174,7 +174,7 @@

Constructors

SerilogLogger(ILogger) - +

@@ -209,7 +209,7 @@

Methods

Debug(string, ITwinElement, IIdentity, object) - +

@@ -246,7 +246,7 @@

Parameters

Debug(string, IIdentity) - +

@@ -279,7 +279,7 @@

Parameters

Error(string, ITwinElement, IIdentity, object) - +

@@ -316,7 +316,7 @@

Parameters

Error(string, IIdentity) - +

@@ -349,7 +349,7 @@

Parameters

Fatal(string, ITwinElement, IIdentity, object) - +

@@ -386,7 +386,7 @@

Parameters

Fatal(string, IIdentity) - +

@@ -419,7 +419,7 @@

Parameters

Information(string, ITwinElement, IIdentity, object) - +

@@ -456,7 +456,7 @@

Parameters

Information(string, IIdentity) - +

@@ -489,7 +489,7 @@

Parameters

Verbose(string, ITwinElement, IIdentity, object) - +

@@ -526,7 +526,7 @@

Parameters

Verbose(string, IIdentity) - +

@@ -559,7 +559,7 @@

Parameters

Warning(string, ITwinElement, IIdentity, object) - +

@@ -596,7 +596,7 @@

Parameters

Warning(string, IIdentity) - +

@@ -629,7 +629,7 @@

Parameters

@@ -645,7 +645,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.eLogLevel.html b/docs/api/AXOpen.Logging.eLogLevel.html index 3ce68a748..006eba811 100644 --- a/docs/api/AXOpen.Logging.eLogLevel.html +++ b/docs/api/AXOpen.Logging.eLogLevel.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eLogLevel - +

@@ -149,7 +149,7 @@

Fields @@ -165,7 +165,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Logging.html b/docs/api/AXOpen.Logging.html index 1aec80ede..d92c0a466 100644 --- a/docs/api/AXOpen.Logging.html +++ b/docs/api/AXOpen.Logging.html @@ -158,7 +158,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.Static.AxoMessenger.html b/docs/api/AXOpen.Messaging.Static.AxoMessenger.html index 076a8d18a..5be2c58e3 100644 --- a/docs/api/AXOpen.Messaging.Static.AxoMessenger.html +++ b/docs/api/AXOpen.Messaging.Static.AxoMessenger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMessenger - +

@@ -242,7 +242,7 @@

Constructors

AxoMessenger(ITwinObject, string, string) - +

@@ -281,7 +281,7 @@

Properties

Acknowledged - +

@@ -313,7 +313,7 @@

Property Value

AcknowledgedBeforeFallen - +

@@ -345,7 +345,7 @@

Property Value

AcknowledgementRequired - +

@@ -377,7 +377,7 @@

Property Value

AcknowledgeRequest - +

@@ -408,7 +408,7 @@

Property Value

Category - +

@@ -441,7 +441,7 @@

Property Value

DotNetMessengerTextList - +

@@ -472,7 +472,7 @@

Property Value

Fallen - +

@@ -504,7 +504,7 @@

Property Value

Help - +

@@ -535,7 +535,7 @@

Property Value

IsActive - +

@@ -567,7 +567,7 @@

Property Value

MessageCode - +

@@ -599,7 +599,7 @@

Property Value

MessageText - +

@@ -630,7 +630,7 @@

Property Value

PlcMessengerTextList - +

@@ -661,7 +661,7 @@

Property Value

PlcTextList - +

@@ -692,7 +692,7 @@

Property Value

Risen - +

@@ -724,7 +724,7 @@

Property Value

WaitingForAcknowledge - +

@@ -760,7 +760,7 @@

Methods

CreateEmptyPoco() - +

@@ -791,7 +791,7 @@

Returns

OnlineToPlain<T>() - +

@@ -827,7 +827,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -858,7 +858,7 @@

Returns

OnlineToPlainAsync(AxoMessenger) - +

@@ -894,7 +894,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -935,7 +935,7 @@

Type Parameters

PlainToOnlineAsync(AxoMessenger) - +

@@ -971,7 +971,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -1012,7 +1012,7 @@

Type Parameters

PlainToShadowAsync(AxoMessenger) - +

@@ -1048,7 +1048,7 @@

Returns

Poll() - +

@@ -1074,7 +1074,7 @@

ShadowToPlain<T>() - +

@@ -1110,7 +1110,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1141,7 +1141,7 @@

Returns

ShadowToPlainAsync(AxoMessenger) - +

@@ -1177,7 +1177,7 @@

Returns

@@ -1193,7 +1193,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.Static.AxoMessengerCommandView.html b/docs/api/AXOpen.Messaging.Static.AxoMessengerCommandView.html index 59879b57a..9b29519f9 100644 --- a/docs/api/AXOpen.Messaging.Static.AxoMessengerCommandView.html +++ b/docs/api/AXOpen.Messaging.Static.AxoMessengerCommandView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoMessengerCommandView - +

@@ -273,7 +273,7 @@

Constructors

AxoMessengerCommandView() - +

@@ -299,7 +299,7 @@

- Edit this page + Edit this page

@@ -315,7 +315,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.Static.AxoMessengerStatusView.html b/docs/api/AXOpen.Messaging.Static.AxoMessengerStatusView.html index 5f5e92f78..8750134f0 100644 --- a/docs/api/AXOpen.Messaging.Static.AxoMessengerStatusView.html +++ b/docs/api/AXOpen.Messaging.Static.AxoMessengerStatusView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMessengerStatusView - +

@@ -273,7 +273,7 @@

Constructors

AxoMessengerStatusView() - +

@@ -299,7 +299,7 @@

- Edit this page + Edit this page

@@ -315,7 +315,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.Static.AxoMessengerTextItem.html b/docs/api/AXOpen.Messaging.Static.AxoMessengerTextItem.html index 24b68a137..3d2c3fc49 100644 --- a/docs/api/AXOpen.Messaging.Static.AxoMessengerTextItem.html +++ b/docs/api/AXOpen.Messaging.Static.AxoMessengerTextItem.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMessengerTextItem - +

@@ -168,7 +168,7 @@

Constructors

AxoMessengerTextItem(string, string) - +

@@ -205,7 +205,7 @@

Properties

HelpText - +

@@ -236,7 +236,7 @@

Property Value

MessageText - +

@@ -267,7 +267,7 @@

Property Value

@@ -283,7 +283,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.Static.AxoMessengerView.html b/docs/api/AXOpen.Messaging.Static.AxoMessengerView.html index cb3bff77a..de6393430 100644 --- a/docs/api/AXOpen.Messaging.Static.AxoMessengerView.html +++ b/docs/api/AXOpen.Messaging.Static.AxoMessengerView.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoMessengerView - +

@@ -258,7 +258,7 @@

Properties

AuthenticationStateProvider - +

@@ -290,7 +290,7 @@

Property Value

js - +

@@ -326,7 +326,7 @@

Methods

Dispose() - +

@@ -352,7 +352,7 @@

GetCurrentUserIdentity() - +

@@ -383,7 +383,7 @@

Returns

GetCurrentUserName() - +

@@ -414,7 +414,7 @@

Returns

OnAfterRenderAsync(bool) - +

@@ -450,7 +450,7 @@

Returns

OnInitialized() - +

@@ -476,7 +476,7 @@

- Edit this page + Edit this page

@@ -492,7 +492,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.Static.IAxoMessageProperties.html b/docs/api/AXOpen.Messaging.Static.IAxoMessageProperties.html index 4d029e580..6a0438b49 100644 --- a/docs/api/AXOpen.Messaging.Static.IAxoMessageProperties.html +++ b/docs/api/AXOpen.Messaging.Static.IAxoMessageProperties.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoMessageProperties - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.Static.html b/docs/api/AXOpen.Messaging.Static.html index 88f191e9c..d9b572e1d 100644 --- a/docs/api/AXOpen.Messaging.Static.html +++ b/docs/api/AXOpen.Messaging.Static.html @@ -146,7 +146,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.eAxoMessageCategory.html b/docs/api/AXOpen.Messaging.eAxoMessageCategory.html index 7605378c0..eaa05bf1d 100644 --- a/docs/api/AXOpen.Messaging.eAxoMessageCategory.html +++ b/docs/api/AXOpen.Messaging.eAxoMessageCategory.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoMessageCategory - +

@@ -161,7 +161,7 @@

Fields @@ -177,7 +177,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Messaging.html b/docs/api/AXOpen.Messaging.html index 19de96c52..a41f8507e 100644 --- a/docs/api/AXOpen.Messaging.html +++ b/docs/api/AXOpen.Messaging.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Rtc.IAxoRtc.html b/docs/api/AXOpen.Rtc.IAxoRtc.html index da3fa39a7..0314ebaf4 100644 --- a/docs/api/AXOpen.Rtc.IAxoRtc.html +++ b/docs/api/AXOpen.Rtc.IAxoRtc.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoRtc - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Rtc.html b/docs/api/AXOpen.Rtc.html index 7f4fd441e..a78344a0e 100644 --- a/docs/api/AXOpen.Rtc.html +++ b/docs/api/AXOpen.Rtc.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Utils.AxoStringBuilder.html b/docs/api/AXOpen.Utils.AxoStringBuilder.html index 792307274..f7264a34c 100644 --- a/docs/api/AXOpen.Utils.AxoStringBuilder.html +++ b/docs/api/AXOpen.Utils.AxoStringBuilder.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoStringBuilder - +

@@ -169,7 +169,7 @@

Constructors

AxoStringBuilder(ITwinObject, string, string) - +

@@ -208,7 +208,7 @@

Properties

AttributeName - +

@@ -239,7 +239,7 @@

Property Value

Connector - +

@@ -270,7 +270,7 @@

Property Value

HumanReadable - +

@@ -301,7 +301,7 @@

Property Value

Interpreter - +

@@ -332,7 +332,7 @@

Property Value

Parent - +

@@ -363,7 +363,7 @@

Property Value

Symbol - +

@@ -394,7 +394,7 @@

Property Value

SymbolTail - +

@@ -429,7 +429,7 @@

Methods

AddChild(ITwinObject) - +

@@ -460,7 +460,7 @@

Parameters

AddKid(ITwinElement) - +

@@ -491,7 +491,7 @@

Parameters

AddValueTag(ITwinPrimitive) - +

@@ -522,7 +522,7 @@

Parameters

CreateEmptyPoco() - +

@@ -553,7 +553,7 @@

Returns

GetChildren() - +

@@ -584,7 +584,7 @@

Returns

GetConnector() - +

@@ -615,7 +615,7 @@

Returns

GetKids() - +

@@ -646,7 +646,7 @@

Returns

GetParent() - +

@@ -677,7 +677,7 @@

Returns

GetSymbolTail() - +

@@ -708,7 +708,7 @@

Returns

GetValueTags() - +

@@ -739,7 +739,7 @@

Returns

OnlineToPlain<T>() - +

@@ -775,7 +775,7 @@

Type Parameters

OnlineToPlainAsync() - +

@@ -806,7 +806,7 @@

Returns

OnlineToPlainAsync(AxoStringBuilder) - +

@@ -842,7 +842,7 @@

Returns

PlainToOnline<T>(T) - +

@@ -883,7 +883,7 @@

Type Parameters

PlainToOnlineAsync(AxoStringBuilder) - +

@@ -919,7 +919,7 @@

Returns

PlainToShadow<T>(T) - +

@@ -960,7 +960,7 @@

Type Parameters

PlainToShadowAsync(AxoStringBuilder) - +

@@ -996,7 +996,7 @@

Returns

Poll() - +

@@ -1022,7 +1022,7 @@

ShadowToPlain<T>() - +

@@ -1058,7 +1058,7 @@

Type Parameters

ShadowToPlainAsync() - +

@@ -1089,7 +1089,7 @@

Returns

ShadowToPlainAsync(AxoStringBuilder) - +

@@ -1125,7 +1125,7 @@

Returns

@@ -1141,7 +1141,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Utils.IAxoStringBuilder.html b/docs/api/AXOpen.Utils.IAxoStringBuilder.html index edf0ce84c..fa8ea7943 100644 --- a/docs/api/AXOpen.Utils.IAxoStringBuilder.html +++ b/docs/api/AXOpen.Utils.IAxoStringBuilder.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoStringBuilder - +

@@ -125,7 +125,7 @@

- Edit this page + Edit this page

@@ -141,7 +141,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.Utils.html b/docs/api/AXOpen.Utils.html index 81f5f823b..46125c5c4 100644 --- a/docs/api/AXOpen.Utils.html +++ b/docs/api/AXOpen.Utils.html @@ -130,7 +130,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXOpen.html b/docs/api/AXOpen.html index 256f20991..d282680a5 100644 --- a/docs/api/AXOpen.html +++ b/docs/api/AXOpen.html @@ -137,7 +137,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.AlertDialog.html b/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.AlertDialog.html index 6c0efb271..bf12af483 100644 --- a/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.AlertDialog.html +++ b/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.AlertDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AlertDialog - +

@@ -167,7 +167,7 @@

Constructors

AlertDialog(string, string, string, int) - +

@@ -208,7 +208,7 @@

Properties

Id - +

@@ -239,7 +239,7 @@

Property Value

Message - +

@@ -270,7 +270,7 @@

Property Value

Posted - +

@@ -301,7 +301,7 @@

Property Value

TimeToBurn - +

@@ -332,7 +332,7 @@

Property Value

Title - +

@@ -363,7 +363,7 @@

Property Value

Type - +

@@ -394,7 +394,7 @@

Property Value

@@ -410,7 +410,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.Toaster.html b/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.Toaster.html index 3e24564c1..67071c966 100644 --- a/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.Toaster.html +++ b/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.Toaster.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class Toaster - +

@@ -201,7 +201,7 @@

Methods

BuildRenderTree(RenderTreeBuilder) - +

@@ -232,7 +232,7 @@

Parameters

Dispose() - +

@@ -258,7 +258,7 @@

OnInitialized() - +

@@ -284,7 +284,7 @@

- Edit this page + Edit this page

@@ -300,7 +300,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.ToasterService.html b/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.ToasterService.html index 0eec2f3e3..600c45e7d 100644 --- a/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.ToasterService.html +++ b/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.ToasterService.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class ToasterService - +

@@ -168,7 +168,7 @@

Constructors

ToasterService() - +

@@ -198,7 +198,7 @@

Methods

AddAlertDialog(IAlertDialog) - +

@@ -229,7 +229,7 @@

Parameters

AddAlertDialog(string, string, string, int) - +

@@ -266,7 +266,7 @@

Parameters

Dispose() - +

@@ -292,7 +292,7 @@

GetAlertDialogs() - +

@@ -323,7 +323,7 @@

Returns

RemoveAlertDialog(IAlertDialog) - +

@@ -354,7 +354,7 @@

Parameters

RemoveAllAlertDialogs() - +

@@ -383,7 +383,7 @@

Events

AlertDialogChanged - +

@@ -414,7 +414,7 @@

Event Type

@@ -430,7 +430,7 @@

Event Type

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.html b/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.html index a3066611f..5e009e69c 100644 --- a/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.html +++ b/docs/api/AXSharp.Presentation.Blazor.Controls.Dialogs.AlertDialog.html @@ -131,7 +131,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Ix.Repository.Json.Repository.html b/docs/api/Ix.Repository.Json.Repository.html index 3cb6799d1..92ef9a51a 100644 --- a/docs/api/Ix.Repository.Json.Repository.html +++ b/docs/api/Ix.Repository.Json.Repository.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class Repository - +

@@ -161,7 +161,7 @@

Methods

Factory<T>(JsonRepositorySettings<T>) - +

@@ -202,7 +202,7 @@

Type Parameters

@@ -218,7 +218,7 @@

Type Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Ix.Repository.Json.html b/docs/api/Ix.Repository.Json.html index 3fa61c8cf..b8cbe1829 100644 --- a/docs/api/Ix.Repository.Json.html +++ b/docs/api/Ix.Repository.Json.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html index b6f79dbb3..2c88fb582 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoBoolArray8 - +

@@ -178,7 +178,7 @@

Properties

Data - +

@@ -209,7 +209,7 @@

Property Value

@@ -225,7 +225,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html index d31dbe8e9..917c3d08e 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman - +

@@ -182,7 +182,7 @@

Properties

_Messenger - +

@@ -213,7 +213,7 @@

Property Value

_TaskMessenger - +

@@ -244,7 +244,7 @@

Property Value

AcquisitionControl - +

@@ -275,7 +275,7 @@

Property Value

AcquisitionStatus - +

@@ -306,7 +306,7 @@

Property Value

ClearResultDataTask - +

@@ -337,7 +337,7 @@

Property Value

Config - +

@@ -368,7 +368,7 @@

Property Value

ReadTask - +

@@ -399,7 +399,7 @@

Property Value

RestoreTask - +

@@ -430,7 +430,7 @@

Property Value

ResultData - +

@@ -461,7 +461,7 @@

Property Value

Results - +

@@ -492,7 +492,7 @@

Property Value

ResultsControl - +

@@ -523,7 +523,7 @@

Property Value

ResultsStatus - +

@@ -554,7 +554,7 @@

Property Value

SoftEventControl - +

@@ -585,7 +585,7 @@

Property Value

SoftEventStatus - +

@@ -616,7 +616,7 @@

Property Value

Status - +

@@ -647,7 +647,7 @@

Property Value

User - +

@@ -678,7 +678,7 @@

Property Value

UserData - +

@@ -709,7 +709,7 @@

Property Value

@@ -725,7 +725,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html index 041c298b8..0e0598f33 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDatamanClearResultData - +

@@ -208,7 +208,7 @@

- Edit this page + Edit this page

@@ -224,7 +224,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html index fab103ec6..e499a5ed2 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDatamanRead - +

@@ -208,7 +208,7 @@

@@ -224,7 +224,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html index 690846f57..d12ddd6d2 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDataman_AcquisitionControl - +

@@ -168,7 +168,7 @@

Properties

Trigger - +

@@ -199,7 +199,7 @@

Property Value

TriggerEnable - +

@@ -230,7 +230,7 @@

Property Value

@@ -246,7 +246,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html index bb856e3b9..68ded0a91 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_AcquisitionStatus - +

@@ -168,7 +168,7 @@

Properties

Acquiring - +

@@ -199,7 +199,7 @@

Property Value

MissedAcquisition - +

@@ -230,7 +230,7 @@

Property Value

TriggerAcknowledge - +

@@ -261,7 +261,7 @@

Property Value

TriggerID - +

@@ -292,7 +292,7 @@

Property Value

TriggerReady - +

@@ -323,7 +323,7 @@

Property Value

@@ -339,7 +339,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html index d123c7ecf..4296174bf 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_Config - +

@@ -168,7 +168,7 @@

Properties

ContinuousReading - +

@@ -199,7 +199,7 @@

Property Value

ErrorTime - +

@@ -230,7 +230,7 @@

Property Value

InfoTime - +

@@ -261,7 +261,7 @@

Property Value

@@ -277,7 +277,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html index 0de3c58da..a5b7b2795 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_ResultData - +

@@ -178,7 +178,7 @@

Properties

Data - +

@@ -209,7 +209,7 @@

Property Value

@@ -225,7 +225,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html index 0b59d0936..dc4d51e19 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_Results - +

@@ -168,7 +168,7 @@

Properties

Code - +

@@ -199,7 +199,7 @@

Property Value

Extended - +

@@ -230,7 +230,7 @@

Property Value

Id - +

@@ -261,7 +261,7 @@

Property Value

Length - +

@@ -292,7 +292,7 @@

Property Value

@@ -308,7 +308,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html index 3f527347d..86cc9b6e4 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_ResultsControl - +

@@ -168,7 +168,7 @@

Properties

EnableResultBuffering - +

@@ -199,7 +199,7 @@

Property Value

ResultsAcknowledge - +

@@ -230,7 +230,7 @@

Property Value

@@ -246,7 +246,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html index 76e2c038e..b8be3753f 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_ResultsStatus - +

@@ -168,7 +168,7 @@

Properties

DecodeComplete - +

@@ -199,7 +199,7 @@

Property Value

Decoding - +

@@ -230,7 +230,7 @@

Property Value

ErrorDetected - +

@@ -261,7 +261,7 @@

Property Value

ResultsAvailable - +

@@ -292,7 +292,7 @@

Property Value

ResultsBufferOverrun - +

@@ -323,7 +323,7 @@

Property Value

@@ -339,7 +339,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html index a883760f8..6d47f0110 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_SoftEventControl - +

@@ -168,7 +168,7 @@

Properties

ExecuteDMCC - +

@@ -199,7 +199,7 @@

Property Value

SetMatchString - +

@@ -230,7 +230,7 @@

Property Value

TrainBrightness - +

@@ -261,7 +261,7 @@

Property Value

TrainCode - +

@@ -292,7 +292,7 @@

Property Value

TrainFocus - +

@@ -323,7 +323,7 @@

Property Value

TrainMatchString - +

@@ -354,7 +354,7 @@

Property Value

Untrain - +

@@ -385,7 +385,7 @@

Property Value

@@ -401,7 +401,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html index a358dc1e4..bc0b47214 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_SoftEventStatus - +

@@ -168,7 +168,7 @@

Properties

ExecuteDMCCAcknowledge - +

@@ -199,7 +199,7 @@

Property Value

SetMatchStringAcknowledge - +

@@ -230,7 +230,7 @@

Property Value

TrainBrightnessAcknowledge - +

@@ -261,7 +261,7 @@

Property Value

TrainCodeAcknowledge - +

@@ -292,7 +292,7 @@

Property Value

TrainFocusAcknowledge - +

@@ -323,7 +323,7 @@

Property Value

TrainMatchStringAcknowledge - +

@@ -354,7 +354,7 @@

Property Value

UntrainAcknowledge - +

@@ -385,7 +385,7 @@

Property Value

@@ -401,7 +401,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html index d7b55a526..0b6350902 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_Status - +

@@ -181,7 +181,7 @@

Properties

ResultDataSize - +

@@ -212,7 +212,7 @@

Property Value

@@ -228,7 +228,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html index 6680ab265..141fd2020 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_User - +

@@ -168,7 +168,7 @@

Properties

Length - +

@@ -199,7 +199,7 @@

Property Value

Option - +

@@ -230,7 +230,7 @@

Property Value

@@ -246,7 +246,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html index b7264a726..3412a03b6 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_UserData - +

@@ -178,7 +178,7 @@

Properties

Data - +

@@ -209,7 +209,7 @@

Property Value

@@ -225,7 +225,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html index be27ea3fe..13ff86e39 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight - +

@@ -182,7 +182,7 @@

Properties

_Messenger - +

@@ -213,7 +213,7 @@

Property Value

_TaskMessenger - +

@@ -244,7 +244,7 @@

Property Value

AcquisitionControl - +

@@ -275,7 +275,7 @@

Property Value

AcquisitionStatus - +

@@ -306,7 +306,7 @@

Property Value

ChangeJobByNameTask - +

@@ -337,7 +337,7 @@

Property Value

ChangeJobByNumberTask - +

@@ -368,7 +368,7 @@

Property Value

ClearInspectionResultsTask - +

@@ -399,7 +399,7 @@

Property Value

CommandControl - +

@@ -430,7 +430,7 @@

Property Value

CommandStatus - +

@@ -461,7 +461,7 @@

Property Value

Config - +

@@ -492,7 +492,7 @@

Property Value

InspectionControl - +

@@ -523,7 +523,7 @@

Property Value

InspectionResults - +

@@ -554,7 +554,7 @@

Property Value

InspectionStatus - +

@@ -585,7 +585,7 @@

Property Value

RequiredJobName - +

@@ -616,7 +616,7 @@

Property Value

RequiredJobNumber - +

@@ -647,7 +647,7 @@

Property Value

RequiredSoftEventNumber - +

@@ -678,7 +678,7 @@

Property Value

RestoreTask - +

@@ -709,7 +709,7 @@

Property Value

Results - +

@@ -740,7 +740,7 @@

Property Value

SoftEventControl - +

@@ -771,7 +771,7 @@

Property Value

SoftEventStatus - +

@@ -802,7 +802,7 @@

Property Value

SoftEventTask - +

@@ -833,7 +833,7 @@

Property Value

Status - +

@@ -864,7 +864,7 @@

Property Value

TriggerTask - +

@@ -895,7 +895,7 @@

Property Value

UserData - +

@@ -926,7 +926,7 @@

Property Value

@@ -942,7 +942,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html index 69d9c94b2..99ec73f4c 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightChangeJobByName - +

@@ -208,7 +208,7 @@

- Edit this page + Edit this page

@@ -224,7 +224,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html index cab6bc6d9..c735bc138 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoInsightChangeJobByNumber - +

@@ -208,7 +208,7 @@

- Edit this page + Edit this page

@@ -224,7 +224,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html index b1dc9b691..b40820840 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoInsightClearInspectionResults - +

@@ -208,7 +208,7 @@

- Edit this page + Edit this page

@@ -224,7 +224,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html index c878b1aa3..14129eb16 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoInsightSoftEvent - +

@@ -208,7 +208,7 @@

@@ -224,7 +224,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html index f9dbc2892..46b4e2eaa 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoInsightTrigger - +

@@ -208,7 +208,7 @@

@@ -224,7 +224,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html index e7f7c850d..e63fb5110 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoInsight_AcquisitionControl - +

@@ -168,7 +168,7 @@

Properties

ClearExposureComplete - +

@@ -199,7 +199,7 @@

Property Value

SetOffline - +

@@ -230,7 +230,7 @@

Property Value

Trigger - +

@@ -261,7 +261,7 @@

Property Value

TriggerEnable - +

@@ -292,7 +292,7 @@

Property Value

@@ -308,7 +308,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html index 63df5e070..2c9670e85 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_AcquisitionStatus - +

@@ -168,7 +168,7 @@

Properties

AcquisitionID - +

@@ -199,7 +199,7 @@

Property Value

ExposureComplete - +

@@ -230,7 +230,7 @@

Property Value

MissedAcquisition - +

@@ -261,7 +261,7 @@

Property Value

OfflineReason0 - +

@@ -292,7 +292,7 @@

Property Value

OfflineReason1 - +

@@ -323,7 +323,7 @@

Property Value

OfflineReason2 - +

@@ -354,7 +354,7 @@

Property Value

Online - +

@@ -385,7 +385,7 @@

Property Value

TriggerAcknowledge - +

@@ -416,7 +416,7 @@

Property Value

TriggerReady - +

@@ -447,7 +447,7 @@

Property Value

@@ -463,7 +463,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html index 311ea5d35..bda53fa0f 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_CommandControl - +

@@ -168,7 +168,7 @@

Properties

Command - +

@@ -199,7 +199,7 @@

Property Value

@@ -215,7 +215,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html index c6127192d..3866a402a 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_CommandStatus - +

@@ -168,7 +168,7 @@

Properties

CurrentJobID - +

@@ -199,7 +199,7 @@

Property Value

@@ -215,7 +215,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html index 604ee2bcc..b54ed6dc3 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_Config - +

@@ -168,7 +168,7 @@

Properties

ErrorTime - +

@@ -199,7 +199,7 @@

Property Value

InfoTime - +

@@ -230,7 +230,7 @@

Property Value

MaxJobNumber - +

@@ -261,7 +261,7 @@

Property Value

@@ -277,7 +277,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html index 794feb866..fdd763097 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_InspectionControl - +

@@ -168,7 +168,7 @@

Properties

AcknowledgeInspectionResults - +

@@ -199,7 +199,7 @@

Property Value

ClearError - +

@@ -230,7 +230,7 @@

Property Value

EnableResultsBuffering - +

@@ -261,7 +261,7 @@

Property Value

ExecuteCommand - +

@@ -292,7 +292,7 @@

Property Value

ExtendedUserDataSet - +

@@ -323,7 +323,7 @@

Property Value

@@ -339,7 +339,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html index 25e04b56e..c17e790ca 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_InspectionStatus - +

@@ -168,7 +168,7 @@

Properties

CommandComplete - +

@@ -199,7 +199,7 @@

Property Value

CommandExecuting - +

@@ -230,7 +230,7 @@

Property Value

CommandFailed - +

@@ -261,7 +261,7 @@

Property Value

Error - +

@@ -292,7 +292,7 @@

Property Value

ErrorCode - +

@@ -323,7 +323,7 @@

Property Value

ExtendedUserDataSetAcknowledge - +

@@ -354,7 +354,7 @@

Property Value

InspectionCompleted - +

@@ -385,7 +385,7 @@

Property Value

OverallJobPassFail - +

@@ -416,7 +416,7 @@

Property Value

ResultsBufferOverrun - +

@@ -447,7 +447,7 @@

Property Value

ResultsValid - +

@@ -478,7 +478,7 @@

Property Value

SystemBusy - +

@@ -509,7 +509,7 @@

Property Value

TestRunReady - +

@@ -540,7 +540,7 @@

Property Value

@@ -556,7 +556,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html index 760cf818a..8c55e5b7f 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_ResultData - +

@@ -178,7 +178,7 @@

Properties

Data - +

@@ -209,7 +209,7 @@

Property Value

@@ -225,7 +225,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html index 7d3867e66..5091e9da9 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_Results - +

@@ -168,7 +168,7 @@

Properties

InspectionID - +

@@ -199,7 +199,7 @@

Property Value

ResultCode - +

@@ -230,7 +230,7 @@

Property Value

@@ -246,7 +246,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html index 35b6598a1..0d79e9811 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_SoftEventControl - +

@@ -168,7 +168,7 @@

Properties

TriggerSoftEvent - +

@@ -199,7 +199,7 @@

Property Value

@@ -215,7 +215,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html index d82060d7a..174b3703b 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_SoftEventStatus - +

@@ -168,7 +168,7 @@

Properties

TriggerSoftEventAcknowledge - +

@@ -199,7 +199,7 @@

Property Value

@@ -215,7 +215,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html index 5996d7ce9..b9e3b67a7 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_Status - +

@@ -181,7 +181,7 @@

Properties

CurrentJobName - +

@@ -212,7 +212,7 @@

Property Value

CurrentJobNumber - +

@@ -243,7 +243,7 @@

Property Value

ResultDataSize - +

@@ -274,7 +274,7 @@

Property Value

UserDataSize - +

@@ -305,7 +305,7 @@

Property Value

@@ -321,7 +321,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html index 9e293e56d..09fc04694 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_UserData - +

@@ -178,7 +178,7 @@

Properties

Data - +

@@ -209,7 +209,7 @@

Property Value

@@ -225,7 +225,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.html b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.html index e8ba10bbf..e129dd21e 100644 --- a/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.html +++ b/docs/api/Pocos.AXOpen.Components.Cognex.Vision.v_6_0_0_0.html @@ -259,7 +259,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Pneumatics.AxoCylinder.html b/docs/api/Pocos.AXOpen.Components.Pneumatics.AxoCylinder.html index 6c34f5d49..eac512a5e 100644 --- a/docs/api/Pocos.AXOpen.Components.Pneumatics.AxoCylinder.html +++ b/docs/api/Pocos.AXOpen.Components.Pneumatics.AxoCylinder.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoCylinder - +

@@ -181,7 +181,7 @@

Properties

_HomeSensor - +

@@ -212,7 +212,7 @@

Property Value

_Messenger - +

@@ -243,7 +243,7 @@

Property Value

_MoveHomeSignal - +

@@ -274,7 +274,7 @@

Property Value

_MoveToHomeTask - +

@@ -305,7 +305,7 @@

Property Value

_MoveToWorkTask - +

@@ -336,7 +336,7 @@

Property Value

_MoveWorkSignal - +

@@ -367,7 +367,7 @@

Property Value

_StopTask - +

@@ -398,7 +398,7 @@

Property Value

_WorkSensor - +

@@ -429,7 +429,7 @@

Property Value

@@ -445,7 +445,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Components.Pneumatics.html b/docs/api/Pocos.AXOpen.Components.Pneumatics.html index 8467e48a0..80e31d2c0 100644 --- a/docs/api/Pocos.AXOpen.Components.Pneumatics.html +++ b/docs/api/Pocos.AXOpen.Components.Pneumatics.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoAlertDialog.html b/docs/api/Pocos.AXOpen.Core.AxoAlertDialog.html index b732cd212..4fdf69a3e 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoAlertDialog.html +++ b/docs/api/Pocos.AXOpen.Core.AxoAlertDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoAlertDialog - +

@@ -232,7 +232,7 @@

Properties

_dialogType - +

@@ -263,7 +263,7 @@

Property Value

_message - +

@@ -294,7 +294,7 @@

Property Value

_timeToBurn - +

@@ -325,7 +325,7 @@

Property Value

_title - +

@@ -356,7 +356,7 @@

Property Value

@@ -372,7 +372,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoBoolArray.html b/docs/api/Pocos.AXOpen.Core.AxoBoolArray.html index 85a682b20..77ac10183 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoBoolArray.html +++ b/docs/api/Pocos.AXOpen.Core.AxoBoolArray.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoBoolArray - +

@@ -180,7 +180,7 @@

Properties

DataChanged - +

@@ -211,7 +211,7 @@

Property Value

@@ -227,7 +227,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoByteArray.html b/docs/api/Pocos.AXOpen.Core.AxoByteArray.html index 905f06a83..c281890d0 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoByteArray.html +++ b/docs/api/Pocos.AXOpen.Core.AxoByteArray.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoByteArray - +

@@ -183,7 +183,7 @@

Properties

DataChanged - +

@@ -214,7 +214,7 @@

Property Value

@@ -230,7 +230,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoComponent.html b/docs/api/Pocos.AXOpen.Core.AxoComponent.html index 636584f53..b8dc102a7 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoComponent.html +++ b/docs/api/Pocos.AXOpen.Core.AxoComponent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoComponent - +

@@ -189,7 +189,7 @@

Properties

_isManuallyControllable - +

@@ -220,7 +220,7 @@

Property Value

@@ -236,7 +236,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoContext.html b/docs/api/Pocos.AXOpen.Core.AxoContext.html index 0db6118d2..55bf4b5a3 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoContext.html +++ b/docs/api/Pocos.AXOpen.Core.AxoContext.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoContext - +

@@ -171,7 +171,7 @@

@@ -187,7 +187,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoDialog.html b/docs/api/Pocos.AXOpen.Core.AxoDialog.html index 3d90db58e..42bfdaf77 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoDialog.html +++ b/docs/api/Pocos.AXOpen.Core.AxoDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDialog - +

@@ -234,7 +234,7 @@

Properties

_answer - +

@@ -265,7 +265,7 @@

Property Value

_caption - +

@@ -296,7 +296,7 @@

Property Value

_closeSignal - +

@@ -327,7 +327,7 @@

Property Value

_dialogType - +

@@ -358,7 +358,7 @@

Property Value

_externalCloseReq - +

@@ -389,7 +389,7 @@

Property Value

_hasCancel - +

@@ -420,7 +420,7 @@

Property Value

_hasNo - +

@@ -451,7 +451,7 @@

Property Value

_hasOK - +

@@ -482,7 +482,7 @@

Property Value

_hasYes - +

@@ -513,7 +513,7 @@

Property Value

_risingEdge - +

@@ -544,7 +544,7 @@

Property Value

_text - +

@@ -575,7 +575,7 @@

Property Value

@@ -591,7 +591,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoDialogBase.html b/docs/api/Pocos.AXOpen.Core.AxoDialogBase.html index 250fadab8..ff8187347 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoDialogBase.html +++ b/docs/api/Pocos.AXOpen.Core.AxoDialogBase.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogBase - +

@@ -233,7 +233,7 @@

- Edit this page + Edit this page

@@ -249,7 +249,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoMomentaryTask.html b/docs/api/Pocos.AXOpen.Core.AxoMomentaryTask.html index 16983c606..d4e8e0e35 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoMomentaryTask.html +++ b/docs/api/Pocos.AXOpen.Core.AxoMomentaryTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMomentaryTask - +

@@ -177,7 +177,7 @@

Properties

IsDisabled - +

@@ -208,7 +208,7 @@

Property Value

RemoteSwitchOn - +

@@ -239,7 +239,7 @@

Property Value

State - +

@@ -270,7 +270,7 @@

Property Value

@@ -286,7 +286,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoObject.html b/docs/api/Pocos.AXOpen.Core.AxoObject.html index bd22aec5a..8e6eee700 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoObject.html +++ b/docs/api/Pocos.AXOpen.Core.AxoObject.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoObject - +

@@ -182,7 +182,7 @@

@@ -198,7 +198,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoRemoteTask.html b/docs/api/Pocos.AXOpen.Core.AxoRemoteTask.html index 35cc63567..1b393812c 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoRemoteTask.html +++ b/docs/api/Pocos.AXOpen.Core.AxoRemoteTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoRemoteTask - +

@@ -220,7 +220,7 @@

Properties

DoneSignature - +

@@ -251,7 +251,7 @@

Property Value

HasRemoteException - +

@@ -282,7 +282,7 @@

Property Value

IsBeingCalledCounter - +

@@ -313,7 +313,7 @@

Property Value

IsInitialized - +

@@ -344,7 +344,7 @@

Property Value

TaskHasRemoteException - +

@@ -375,7 +375,7 @@

Property Value

TaskNotInitialized - +

@@ -406,7 +406,7 @@

Property Value

@@ -422,7 +422,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoSequencer.html b/docs/api/Pocos.AXOpen.Core.AxoSequencer.html index 23c0584e3..0e3481c3f 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoSequencer.html +++ b/docs/api/Pocos.AXOpen.Core.AxoSequencer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoSequencer - +

@@ -218,7 +218,7 @@

Properties

AfterStep - +

@@ -249,7 +249,7 @@

Property Value

BeforeStep - +

@@ -280,7 +280,7 @@

Property Value

CurrentOrder - +

@@ -311,7 +311,7 @@

Property Value

CurrentStep - +

@@ -342,7 +342,7 @@

Property Value

SequenceMode - +

@@ -373,7 +373,7 @@

Property Value

StepBackwardCommand - +

@@ -404,7 +404,7 @@

Property Value

StepForwardCommand - +

@@ -435,7 +435,7 @@

Property Value

StepIn - +

@@ -466,7 +466,7 @@

Property Value

SteppingMode - +

@@ -497,7 +497,7 @@

Property Value

@@ -513,7 +513,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoSequencerContainer.html b/docs/api/Pocos.AXOpen.Core.AxoSequencerContainer.html index 9bab6be5e..cda46326f 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoSequencerContainer.html +++ b/docs/api/Pocos.AXOpen.Core.AxoSequencerContainer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoSequencerContainer - +

@@ -236,7 +236,7 @@

- Edit this page + Edit this page

@@ -252,7 +252,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoStep.html b/docs/api/Pocos.AXOpen.Core.AxoStep.html index e22dc62fe..681d82ae0 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoStep.html +++ b/docs/api/Pocos.AXOpen.Core.AxoStep.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoStep - +

@@ -213,7 +213,7 @@

Properties

IsActive - +

@@ -244,7 +244,7 @@

Property Value

IsEnabled - +

@@ -275,7 +275,7 @@

Property Value

Order - +

@@ -306,7 +306,7 @@

Property Value

StepDescription - +

@@ -337,7 +337,7 @@

Property Value

@@ -353,7 +353,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoTask.html b/docs/api/Pocos.AXOpen.Core.AxoTask.html index f3125357e..1875aeeeb 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoTask.html +++ b/docs/api/Pocos.AXOpen.Core.AxoTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoTask - +

@@ -193,7 +193,7 @@

Properties

_CyclicExecuteIsNotCalled - +

@@ -224,7 +224,7 @@

Property Value

Duration - +

@@ -255,7 +255,7 @@

Property Value

ErrorDetails - +

@@ -286,7 +286,7 @@

Property Value

IsDisabled - +

@@ -317,7 +317,7 @@

Property Value

RemoteAbort - +

@@ -348,7 +348,7 @@

Property Value

RemoteInvoke - +

@@ -379,7 +379,7 @@

Property Value

RemoteRestore - +

@@ -410,7 +410,7 @@

Property Value

RemoteResume - +

@@ -441,7 +441,7 @@

Property Value

StartSignature - +

@@ -472,7 +472,7 @@

Property Value

StartTimeStamp - +

@@ -503,7 +503,7 @@

Property Value

Status - +

@@ -534,7 +534,7 @@

Property Value

@@ -550,7 +550,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoTextList.html b/docs/api/Pocos.AXOpen.Core.AxoTextList.html index 921eef294..14de67462 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoTextList.html +++ b/docs/api/Pocos.AXOpen.Core.AxoTextList.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoTextList - +

@@ -174,7 +174,7 @@

Properties

Id - +

@@ -205,7 +205,7 @@

Property Value

@@ -221,7 +221,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.AxoToggleTask.html b/docs/api/Pocos.AXOpen.Core.AxoToggleTask.html index ac123c2dd..1387bcd0b 100644 --- a/docs/api/Pocos.AXOpen.Core.AxoToggleTask.html +++ b/docs/api/Pocos.AXOpen.Core.AxoToggleTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoToggleTask - +

@@ -177,7 +177,7 @@

Properties

IsDisabled - +

@@ -208,7 +208,7 @@

Property Value

RemoteToggle - +

@@ -239,7 +239,7 @@

Property Value

State - +

@@ -270,7 +270,7 @@

Property Value

@@ -286,7 +286,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoAlertDialogFormat.html b/docs/api/Pocos.AXOpen.Core.IAxoAlertDialogFormat.html index ff6846559..b773c27d2 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoAlertDialogFormat.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoAlertDialogFormat.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoAlertDialogFormat - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoComponent.html b/docs/api/Pocos.AXOpen.Core.IAxoComponent.html index 569ecbece..d4ba8cdf0 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoComponent.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoComponent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoComponent - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoContext.html b/docs/api/Pocos.AXOpen.Core.IAxoContext.html index e3246cd58..fac23dd6f 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoContext.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoContext.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoContext - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoCoordinator.html b/docs/api/Pocos.AXOpen.Core.IAxoCoordinator.html index 4d1161019..983bad563 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoCoordinator.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoCoordinator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoCoordinator - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoDialogAnswer.html b/docs/api/Pocos.AXOpen.Core.IAxoDialogAnswer.html index f000755b5..a3ce7e889 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoDialogAnswer.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoDialogAnswer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoDialogAnswer - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoDialogFormat.html b/docs/api/Pocos.AXOpen.Core.IAxoDialogFormat.html index 098cf3858..5268d1953 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoDialogFormat.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoDialogFormat.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoDialogFormat - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoManuallyControllable.html b/docs/api/Pocos.AXOpen.Core.IAxoManuallyControllable.html index c3700b531..80dd4c5de 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoManuallyControllable.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoManuallyControllable.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoManuallyControllable - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoMomentaryTask.html b/docs/api/Pocos.AXOpen.Core.IAxoMomentaryTask.html index 4453961f8..3640f6d13 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoMomentaryTask.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoMomentaryTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoMomentaryTask - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoObject.html b/docs/api/Pocos.AXOpen.Core.IAxoObject.html index 9e1e9a141..c5504f1bd 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoObject.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoObject.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoObject - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoStep.html b/docs/api/Pocos.AXOpen.Core.IAxoStep.html index d2ab5762a..5683683fc 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoStep.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoStep.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoStep - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoTask.html b/docs/api/Pocos.AXOpen.Core.IAxoTask.html index 57de0d2b1..3eaa65b9e 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoTask.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoTask - +

@@ -132,7 +132,7 @@

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoTaskState.html b/docs/api/Pocos.AXOpen.Core.IAxoTaskState.html index 31776a36d..f8c3f6215 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoTaskState.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoTaskState.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoTaskState - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.IAxoToggleTask.html b/docs/api/Pocos.AXOpen.Core.IAxoToggleTask.html index 4ea785189..5c2e3c2eb 100644 --- a/docs/api/Pocos.AXOpen.Core.IAxoToggleTask.html +++ b/docs/api/Pocos.AXOpen.Core.IAxoToggleTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoToggleTask - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core._NULL_CONTEXT.html b/docs/api/Pocos.AXOpen.Core._NULL_CONTEXT.html index 1d1cd8ecc..122c5847f 100644 --- a/docs/api/Pocos.AXOpen.Core._NULL_CONTEXT.html +++ b/docs/api/Pocos.AXOpen.Core._NULL_CONTEXT.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class _NULL_CONTEXT - +

@@ -171,7 +171,7 @@

- Edit this page + Edit this page

@@ -187,7 +187,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core._NULL_LOGGER.html b/docs/api/Pocos.AXOpen.Core._NULL_LOGGER.html index f0f5b8fb6..7a03949dc 100644 --- a/docs/api/Pocos.AXOpen.Core._NULL_LOGGER.html +++ b/docs/api/Pocos.AXOpen.Core._NULL_LOGGER.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class _NULL_LOGGER - +

@@ -171,7 +171,7 @@

- Edit this page + Edit this page

@@ -187,7 +187,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core._NULL_OBJECT.html b/docs/api/Pocos.AXOpen.Core._NULL_OBJECT.html index ae6fff5fa..a649ca9ce 100644 --- a/docs/api/Pocos.AXOpen.Core._NULL_OBJECT.html +++ b/docs/api/Pocos.AXOpen.Core._NULL_OBJECT.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class _NULL_OBJECT - +

@@ -171,7 +171,7 @@

- Edit this page + Edit this page

@@ -187,7 +187,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core._NULL_RTC.html b/docs/api/Pocos.AXOpen.Core._NULL_RTC.html index b6f962705..cfbb07f50 100644 --- a/docs/api/Pocos.AXOpen.Core._NULL_RTC.html +++ b/docs/api/Pocos.AXOpen.Core._NULL_RTC.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class _NULL_RTC - +

@@ -171,7 +171,7 @@

@@ -187,7 +187,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Core.html b/docs/api/Pocos.AXOpen.Core.html index 1cc37c253..df94f68eb 100644 --- a/docs/api/Pocos.AXOpen.Core.html +++ b/docs/api/Pocos.AXOpen.Core.html @@ -254,7 +254,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.AxoDataCrudTask.html b/docs/api/Pocos.AXOpen.Data.AxoDataCrudTask.html index 73a242df9..12cb6eed9 100644 --- a/docs/api/Pocos.AXOpen.Data.AxoDataCrudTask.html +++ b/docs/api/Pocos.AXOpen.Data.AxoDataCrudTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDataCrudTask - +

@@ -239,7 +239,7 @@

Properties

CrudOperation - +

@@ -270,7 +270,7 @@

Property Value

@@ -286,7 +286,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.AxoDataEntity.html b/docs/api/Pocos.AXOpen.Data.AxoDataEntity.html index 4443507f6..28c1046b4 100644 --- a/docs/api/Pocos.AXOpen.Data.AxoDataEntity.html +++ b/docs/api/Pocos.AXOpen.Data.AxoDataEntity.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataEntity - +

@@ -176,7 +176,7 @@

Properties

Changes - +

@@ -207,7 +207,7 @@

Property Value

DataEntityId - +

@@ -238,7 +238,7 @@

Property Value

Hash - +

@@ -269,7 +269,7 @@

Property Value

RecordId - +

@@ -300,7 +300,7 @@

Property Value

@@ -316,7 +316,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.AxoDataEntityExistTask.html b/docs/api/Pocos.AXOpen.Data.AxoDataEntityExistTask.html index 5628e272e..8730c7b71 100644 --- a/docs/api/Pocos.AXOpen.Data.AxoDataEntityExistTask.html +++ b/docs/api/Pocos.AXOpen.Data.AxoDataEntityExistTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataEntityExistTask - +

@@ -226,7 +226,7 @@

Properties

_exist - +

@@ -257,7 +257,7 @@

Property Value

@@ -273,7 +273,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.AxoDataExchange.html b/docs/api/Pocos.AXOpen.Data.AxoDataExchange.html index 5cc524b2d..ab1a1f3e0 100644 --- a/docs/api/Pocos.AXOpen.Data.AxoDataExchange.html +++ b/docs/api/Pocos.AXOpen.Data.AxoDataExchange.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchange - +

@@ -178,7 +178,7 @@

Properties

Operation - +

@@ -209,7 +209,7 @@

Property Value

@@ -225,7 +225,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.AxoDataExchangeBase.html b/docs/api/Pocos.AXOpen.Data.AxoDataExchangeBase.html index 86811ca3e..67ffb95c7 100644 --- a/docs/api/Pocos.AXOpen.Data.AxoDataExchangeBase.html +++ b/docs/api/Pocos.AXOpen.Data.AxoDataExchangeBase.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchangeBase - +

@@ -179,7 +179,7 @@

- Edit this page + Edit this page

@@ -195,7 +195,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.AxoDataExchangeTask.html b/docs/api/Pocos.AXOpen.Data.AxoDataExchangeTask.html index 154792618..395c823ee 100644 --- a/docs/api/Pocos.AXOpen.Data.AxoDataExchangeTask.html +++ b/docs/api/Pocos.AXOpen.Data.AxoDataExchangeTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDataExchangeTask - +

@@ -238,7 +238,7 @@

Properties

_exist - +

@@ -269,7 +269,7 @@

Property Value

DataEntityIdentifier - +

@@ -300,7 +300,7 @@

Property Value

@@ -316,7 +316,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.AxoDataFragmentExchange.html b/docs/api/Pocos.AXOpen.Data.AxoDataFragmentExchange.html index 59a0e4196..06b7002d5 100644 --- a/docs/api/Pocos.AXOpen.Data.AxoDataFragmentExchange.html +++ b/docs/api/Pocos.AXOpen.Data.AxoDataFragmentExchange.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataFragmentExchange - +

@@ -178,7 +178,7 @@

Properties

Operation - +

@@ -209,7 +209,7 @@

Property Value

@@ -225,7 +225,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.IAxoDataEntity.html b/docs/api/Pocos.AXOpen.Data.IAxoDataEntity.html index c44e41011..b02f5fab2 100644 --- a/docs/api/Pocos.AXOpen.Data.IAxoDataEntity.html +++ b/docs/api/Pocos.AXOpen.Data.IAxoDataEntity.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDataEntity - +

@@ -143,7 +143,7 @@

Properties

Changes - +

@@ -174,7 +174,7 @@

Property Value

DataEntityId - +

@@ -205,7 +205,7 @@

Property Value

Hash - +

@@ -236,7 +236,7 @@

Property Value

@@ -252,7 +252,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.IAxoDataEntityExistTask.html b/docs/api/Pocos.AXOpen.Data.IAxoDataEntityExistTask.html index 5cb9eac37..183bcbc5e 100644 --- a/docs/api/Pocos.AXOpen.Data.IAxoDataEntityExistTask.html +++ b/docs/api/Pocos.AXOpen.Data.IAxoDataEntityExistTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDataEntityExistTask - +

@@ -125,7 +125,7 @@

- Edit this page + Edit this page

@@ -141,7 +141,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.IAxoDataExchange.html b/docs/api/Pocos.AXOpen.Data.IAxoDataExchange.html index ed406b801..8d57e90aa 100644 --- a/docs/api/Pocos.AXOpen.Data.IAxoDataExchange.html +++ b/docs/api/Pocos.AXOpen.Data.IAxoDataExchange.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoDataExchange - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.IAxoEntityExistTaskState.html b/docs/api/Pocos.AXOpen.Data.IAxoEntityExistTaskState.html index ba419c958..258d2ffc2 100644 --- a/docs/api/Pocos.AXOpen.Data.IAxoEntityExistTaskState.html +++ b/docs/api/Pocos.AXOpen.Data.IAxoEntityExistTaskState.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoEntityExistTaskState - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Data.html b/docs/api/Pocos.AXOpen.Data.html index c2ba7806c..909239a4f 100644 --- a/docs/api/Pocos.AXOpen.Data.html +++ b/docs/api/Pocos.AXOpen.Data.html @@ -158,7 +158,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.AxoAi.html b/docs/api/Pocos.AXOpen.Elements.AxoAi.html index 40e0b0c48..1c0f3a518 100644 --- a/docs/api/Pocos.AXOpen.Elements.AxoAi.html +++ b/docs/api/Pocos.AXOpen.Elements.AxoAi.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoAi - +

@@ -181,7 +181,7 @@

Properties

_config - +

@@ -212,7 +212,7 @@

Property Value

_messengerDivisionByZero - +

@@ -243,7 +243,7 @@

Property Value

_messengerGainNotDefined - +

@@ -274,7 +274,7 @@

Property Value

_messengerOutOfBoundaries - +

@@ -305,7 +305,7 @@

Property Value

_rawRange - +

@@ -336,7 +336,7 @@

Property Value

_realRange - +

@@ -367,7 +367,7 @@

Property Value

_scaled - +

@@ -398,7 +398,7 @@

Property Value

_status - +

@@ -429,7 +429,7 @@

Property Value

@@ -445,7 +445,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.AxoAiConfig.html b/docs/api/Pocos.AXOpen.Elements.AxoAiConfig.html index 7b5d89a10..4e6e997f1 100644 --- a/docs/api/Pocos.AXOpen.Elements.AxoAiConfig.html +++ b/docs/api/Pocos.AXOpen.Elements.AxoAiConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAiConfig - +

@@ -174,7 +174,7 @@

Properties

Gain - +

@@ -205,7 +205,7 @@

Property Value

Offset - +

@@ -236,7 +236,7 @@

Property Value

RawHigh - +

@@ -267,7 +267,7 @@

Property Value

RawLow - +

@@ -298,7 +298,7 @@

Property Value

RealHigh - +

@@ -329,7 +329,7 @@

Property Value

RealLow - +

@@ -360,7 +360,7 @@

Property Value

@@ -376,7 +376,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.AxoAiStatus.html b/docs/api/Pocos.AXOpen.Elements.AxoAiStatus.html index 500565fd6..47000eea9 100644 --- a/docs/api/Pocos.AXOpen.Elements.AxoAiStatus.html +++ b/docs/api/Pocos.AXOpen.Elements.AxoAiStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAiStatus - +

@@ -174,7 +174,7 @@

Properties

RawRange - +

@@ -205,7 +205,7 @@

Property Value

RealRange - +

@@ -236,7 +236,7 @@

Property Value

Scaled - +

@@ -267,7 +267,7 @@

Property Value

@@ -283,7 +283,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.AxoAo.html b/docs/api/Pocos.AXOpen.Elements.AxoAo.html index 0db69b718..94cd54f0b 100644 --- a/docs/api/Pocos.AXOpen.Elements.AxoAo.html +++ b/docs/api/Pocos.AXOpen.Elements.AxoAo.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAo - +

@@ -181,7 +181,7 @@

Properties

_config - +

@@ -212,7 +212,7 @@

Property Value

_messengerDivisionByZero - +

@@ -243,7 +243,7 @@

Property Value

_messengerGainNotDefined - +

@@ -274,7 +274,7 @@

Property Value

_messengerOutOfBoundaries - +

@@ -305,7 +305,7 @@

Property Value

_rawRange - +

@@ -336,7 +336,7 @@

Property Value

_realRange - +

@@ -367,7 +367,7 @@

Property Value

_requiredValue - +

@@ -398,7 +398,7 @@

Property Value

_status - +

@@ -429,7 +429,7 @@

Property Value

_unscaled - +

@@ -460,7 +460,7 @@

Property Value

@@ -476,7 +476,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.AxoAoConfig.html b/docs/api/Pocos.AXOpen.Elements.AxoAoConfig.html index 67d6623e5..5d614c515 100644 --- a/docs/api/Pocos.AXOpen.Elements.AxoAoConfig.html +++ b/docs/api/Pocos.AXOpen.Elements.AxoAoConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAoConfig - +

@@ -174,7 +174,7 @@

Properties

Gain - +

@@ -205,7 +205,7 @@

Property Value

Offset - +

@@ -236,7 +236,7 @@

Property Value

RawHigh - +

@@ -267,7 +267,7 @@

Property Value

RawLow - +

@@ -298,7 +298,7 @@

Property Value

RealHigh - +

@@ -329,7 +329,7 @@

Property Value

RealLow - +

@@ -360,7 +360,7 @@

Property Value

@@ -376,7 +376,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.AxoAoStatus.html b/docs/api/Pocos.AXOpen.Elements.AxoAoStatus.html index 066f92aae..c44448e46 100644 --- a/docs/api/Pocos.AXOpen.Elements.AxoAoStatus.html +++ b/docs/api/Pocos.AXOpen.Elements.AxoAoStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAoStatus - +

@@ -174,7 +174,7 @@

Properties

RawRange - +

@@ -205,7 +205,7 @@

Property Value

RealRange - +

@@ -236,7 +236,7 @@

Property Value

Unscaled - +

@@ -267,7 +267,7 @@

Property Value

@@ -283,7 +283,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.AxoDi.html b/docs/api/Pocos.AXOpen.Elements.AxoDi.html index 9a7d2d373..3b85cd29c 100644 --- a/docs/api/Pocos.AXOpen.Elements.AxoDi.html +++ b/docs/api/Pocos.AXOpen.Elements.AxoDi.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDi - +

@@ -181,7 +181,7 @@

Properties

_isFalseTask - +

@@ -212,7 +212,7 @@

Property Value

_isTrueTask - +

@@ -243,7 +243,7 @@

Property Value

_messengerInfoNegative - +

@@ -274,7 +274,7 @@

Property Value

_messengerInfoPositive - +

@@ -305,7 +305,7 @@

Property Value

@@ -321,7 +321,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.AxoDo.html b/docs/api/Pocos.AXOpen.Elements.AxoDo.html index dcf2ac514..5ac6b9966 100644 --- a/docs/api/Pocos.AXOpen.Elements.AxoDo.html +++ b/docs/api/Pocos.AXOpen.Elements.AxoDo.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDo - +

@@ -181,7 +181,7 @@

Properties

_messengerInfoNegative - +

@@ -212,7 +212,7 @@

Property Value

_messengerInfoPositive - +

@@ -243,7 +243,7 @@

Property Value

_resetTask - +

@@ -274,7 +274,7 @@

Property Value

_setTask - +

@@ -305,7 +305,7 @@

Property Value

@@ -321,7 +321,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Elements.html b/docs/api/Pocos.AXOpen.Elements.html index 3b85a8745..6ef439809 100644 --- a/docs/api/Pocos.AXOpen.Elements.html +++ b/docs/api/Pocos.AXOpen.Elements.html @@ -151,7 +151,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Logging.AxoLogEntry.html b/docs/api/Pocos.AXOpen.Logging.AxoLogEntry.html index d4bdb5be7..48156e8f0 100644 --- a/docs/api/Pocos.AXOpen.Logging.AxoLogEntry.html +++ b/docs/api/Pocos.AXOpen.Logging.AxoLogEntry.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoLogEntry - +

@@ -174,7 +174,7 @@

Properties

Level - +

@@ -205,7 +205,7 @@

Property Value

Message - +

@@ -236,7 +236,7 @@

Property Value

Sender - +

@@ -267,7 +267,7 @@

Property Value

ToDequeue - +

@@ -298,7 +298,7 @@

Property Value

@@ -314,7 +314,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Logging.AxoLogger.html b/docs/api/Pocos.AXOpen.Logging.AxoLogger.html index 7c30ad678..76bf76720 100644 --- a/docs/api/Pocos.AXOpen.Logging.AxoLogger.html +++ b/docs/api/Pocos.AXOpen.Logging.AxoLogger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoLogger - +

@@ -176,7 +176,7 @@

Properties

Carret - +

@@ -207,7 +207,7 @@

Property Value

LogEntries - +

@@ -238,7 +238,7 @@

Property Value

MinimumLevel - +

@@ -269,7 +269,7 @@

Property Value

@@ -285,7 +285,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Logging.IAxoLogger.html b/docs/api/Pocos.AXOpen.Logging.IAxoLogger.html index 1cb0ac9cb..07792f7b1 100644 --- a/docs/api/Pocos.AXOpen.Logging.IAxoLogger.html +++ b/docs/api/Pocos.AXOpen.Logging.IAxoLogger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoLogger - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Logging.IAxoLoggerConfig.html b/docs/api/Pocos.AXOpen.Logging.IAxoLoggerConfig.html index 53f7ad478..fc70322fd 100644 --- a/docs/api/Pocos.AXOpen.Logging.IAxoLoggerConfig.html +++ b/docs/api/Pocos.AXOpen.Logging.IAxoLoggerConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoLoggerConfig - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Logging.html b/docs/api/Pocos.AXOpen.Logging.html index 6477e0347..679be5b45 100644 --- a/docs/api/Pocos.AXOpen.Logging.html +++ b/docs/api/Pocos.AXOpen.Logging.html @@ -138,7 +138,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Messaging.Static.AxoMessenger.html b/docs/api/Pocos.AXOpen.Messaging.Static.AxoMessenger.html index 51086248a..72765a32e 100644 --- a/docs/api/Pocos.AXOpen.Messaging.Static.AxoMessenger.html +++ b/docs/api/Pocos.AXOpen.Messaging.Static.AxoMessenger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMessenger - +

@@ -177,7 +177,7 @@

Properties

Acknowledged - +

@@ -208,7 +208,7 @@

Property Value

AcknowledgedBeforeFallen - +

@@ -239,7 +239,7 @@

Property Value

AcknowledgementRequired - +

@@ -270,7 +270,7 @@

Property Value

AcknowledgeRequest - +

@@ -301,7 +301,7 @@

Property Value

Category - +

@@ -332,7 +332,7 @@

Property Value

Fallen - +

@@ -363,7 +363,7 @@

Property Value

IsActive - +

@@ -394,7 +394,7 @@

Property Value

MessageCode - +

@@ -425,7 +425,7 @@

Property Value

Risen - +

@@ -456,7 +456,7 @@

Property Value

WaitingForAcknowledge - +

@@ -487,7 +487,7 @@

Property Value

@@ -503,7 +503,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Messaging.Static.IAxoMessageProperties.html b/docs/api/Pocos.AXOpen.Messaging.Static.IAxoMessageProperties.html index 2abcd00b5..8dbb752fa 100644 --- a/docs/api/Pocos.AXOpen.Messaging.Static.IAxoMessageProperties.html +++ b/docs/api/Pocos.AXOpen.Messaging.Static.IAxoMessageProperties.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoMessageProperties - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Messaging.Static.html b/docs/api/Pocos.AXOpen.Messaging.Static.html index 2149013f2..a76264197 100644 --- a/docs/api/Pocos.AXOpen.Messaging.Static.html +++ b/docs/api/Pocos.AXOpen.Messaging.Static.html @@ -130,7 +130,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Rtc.IAxoRtc.html b/docs/api/Pocos.AXOpen.Rtc.IAxoRtc.html index 81ec0bcc7..ce0283427 100644 --- a/docs/api/Pocos.AXOpen.Rtc.IAxoRtc.html +++ b/docs/api/Pocos.AXOpen.Rtc.IAxoRtc.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoRtc - +

@@ -132,7 +132,7 @@

- Edit this page + Edit this page

@@ -148,7 +148,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Rtc.html b/docs/api/Pocos.AXOpen.Rtc.html index b4d113d45..8b59dfdfa 100644 --- a/docs/api/Pocos.AXOpen.Rtc.html +++ b/docs/api/Pocos.AXOpen.Rtc.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Utils.AxoStringBuilder.html b/docs/api/Pocos.AXOpen.Utils.AxoStringBuilder.html index 055ac9b21..58a7b4c06 100644 --- a/docs/api/Pocos.AXOpen.Utils.AxoStringBuilder.html +++ b/docs/api/Pocos.AXOpen.Utils.AxoStringBuilder.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoStringBuilder - +

@@ -164,7 +164,7 @@

- Edit this page + Edit this page

@@ -180,7 +180,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Utils.IAxoStringBuilder.html b/docs/api/Pocos.AXOpen.Utils.IAxoStringBuilder.html index 1023f9928..bc1646c34 100644 --- a/docs/api/Pocos.AXOpen.Utils.IAxoStringBuilder.html +++ b/docs/api/Pocos.AXOpen.Utils.IAxoStringBuilder.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoStringBuilder - +

@@ -125,7 +125,7 @@

- Edit this page + Edit this page

@@ -141,7 +141,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/Pocos.AXOpen.Utils.html b/docs/api/Pocos.AXOpen.Utils.html index 667f439d2..721ef8efc 100644 --- a/docs/api/Pocos.AXOpen.Utils.html +++ b/docs/api/Pocos.AXOpen.Utils.html @@ -130,7 +130,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/index.html b/docs/api/index.html index 7f14c34e3..78fc393af 100644 --- a/docs/api/index.html +++ b/docs/api/index.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

IX API Documentation

@@ -110,7 +110,7 @@

IX API Documentation

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_abstractions.PlcTranslator.html b/docs/api/ix_ax_axopen_abstractions.PlcTranslator.html index 8ba8087e2..e0a5806b5 100644 --- a/docs/api/ix_ax_axopen_abstractions.PlcTranslator.html +++ b/docs/api/ix_ax_axopen_abstractions.PlcTranslator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class PlcTranslator - +

@@ -175,7 +175,7 @@

Properties

Instance - +

@@ -206,7 +206,7 @@

Property Value

@@ -222,7 +222,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_abstractions.html b/docs/api/ix_ax_axopen_abstractions.html index 7ce99d498..37c502399 100644 --- a/docs/api/ix_ax_axopen_abstractions.html +++ b/docs/api/ix_ax_axopen_abstractions.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_components_cognex_vision.PlcTranslator.html b/docs/api/ix_ax_axopen_components_cognex_vision.PlcTranslator.html index bfafc9f54..1a5ff95b6 100644 --- a/docs/api/ix_ax_axopen_components_cognex_vision.PlcTranslator.html +++ b/docs/api/ix_ax_axopen_components_cognex_vision.PlcTranslator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class PlcTranslator - +

@@ -175,7 +175,7 @@

Properties

Instance - +

@@ -206,7 +206,7 @@

Property Value

@@ -222,7 +222,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_components_cognex_vision.html b/docs/api/ix_ax_axopen_components_cognex_vision.html index b05aa87c1..91f8bc978 100644 --- a/docs/api/ix_ax_axopen_components_cognex_vision.html +++ b/docs/api/ix_ax_axopen_components_cognex_vision.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_components_elements.PlcTranslator.html b/docs/api/ix_ax_axopen_components_elements.PlcTranslator.html index e8d4daa0a..0655563dc 100644 --- a/docs/api/ix_ax_axopen_components_elements.PlcTranslator.html +++ b/docs/api/ix_ax_axopen_components_elements.PlcTranslator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class PlcTranslator - +

@@ -175,7 +175,7 @@

Properties

Instance - +

@@ -206,7 +206,7 @@

Property Value

@@ -222,7 +222,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_components_elements.html b/docs/api/ix_ax_axopen_components_elements.html index 6646ce7f5..10526ea13 100644 --- a/docs/api/ix_ax_axopen_components_elements.html +++ b/docs/api/ix_ax_axopen_components_elements.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_components_pneumatics.PlcTranslator.html b/docs/api/ix_ax_axopen_components_pneumatics.PlcTranslator.html index 313707c4e..e72118e4b 100644 --- a/docs/api/ix_ax_axopen_components_pneumatics.PlcTranslator.html +++ b/docs/api/ix_ax_axopen_components_pneumatics.PlcTranslator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class PlcTranslator - +

@@ -175,7 +175,7 @@

Properties

Instance - +

@@ -206,7 +206,7 @@

Property Value

@@ -222,7 +222,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_components_pneumatics.html b/docs/api/ix_ax_axopen_components_pneumatics.html index 72568411b..751d786a8 100644 --- a/docs/api/ix_ax_axopen_components_pneumatics.html +++ b/docs/api/ix_ax_axopen_components_pneumatics.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_core.PlcTranslator.html b/docs/api/ix_ax_axopen_core.PlcTranslator.html index fe8b4b982..a0ac2356f 100644 --- a/docs/api/ix_ax_axopen_core.PlcTranslator.html +++ b/docs/api/ix_ax_axopen_core.PlcTranslator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class PlcTranslator - +

@@ -175,7 +175,7 @@

Properties

Instance - +

@@ -206,7 +206,7 @@

Property Value

@@ -222,7 +222,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_core.html b/docs/api/ix_ax_axopen_core.html index 33f732e27..d09ffb0f1 100644 --- a/docs/api/ix_ax_axopen_core.html +++ b/docs/api/ix_ax_axopen_core.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_data.PlcTranslator.html b/docs/api/ix_ax_axopen_data.PlcTranslator.html index b4146a1d8..b46453f65 100644 --- a/docs/api/ix_ax_axopen_data.PlcTranslator.html +++ b/docs/api/ix_ax_axopen_data.PlcTranslator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class PlcTranslator - +

@@ -175,7 +175,7 @@

Properties

Instance - +

@@ -206,7 +206,7 @@

Property Value

@@ -222,7 +222,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_data.html b/docs/api/ix_ax_axopen_data.html index 3ea347531..c375b23af 100644 --- a/docs/api/ix_ax_axopen_data.html +++ b/docs/api/ix_ax_axopen_data.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_exporters.ExcelDataExporter-2.html b/docs/api/ix_ax_axopen_exporters.ExcelDataExporter-2.html index ffea9f800..1f49fb90a 100644 --- a/docs/api/ix_ax_axopen_exporters.ExcelDataExporter-2.html +++ b/docs/api/ix_ax_axopen_exporters.ExcelDataExporter-2.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class ExcelDataExporter<TPlain, TOnline> - +

@@ -191,7 +191,7 @@

Constructors

ExcelDataExporter() - +

@@ -221,7 +221,7 @@

Methods

Export(IRepository<TPlain>, string, string, Expression<Func<TPlain, bool>>, Dictionary<string, bool>?, eExportMode, int, int, char) - +

@@ -268,7 +268,7 @@

Parameters

GetName() - +

@@ -299,7 +299,7 @@

Returns

Import(IRepository<TPlain>, string, string, AuthenticationState, ITwinObject, char) - +

@@ -340,7 +340,7 @@

Parameters

@@ -356,7 +356,7 @@

Parameters

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/api/ix_ax_axopen_exporters.html b/docs/api/ix_ax_axopen_exporters.html index acbe6de7e..3daa76d89 100644 --- a/docs/api/ix_ax_axopen_exporters.html +++ b/docs/api/ix_ax_axopen_exporters.html @@ -123,7 +123,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/index.html b/docs/apictrl/index.html index f7415a146..c8eb99488 100644 --- a/docs/apictrl/index.html +++ b/docs/apictrl/index.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

IX API Documentation

@@ -110,7 +110,7 @@

IX API Documentation

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Abstractions.AxoComponent_Status.html b/docs/apictrl/plc.AXOpen.Components.Abstractions.AxoComponent_Status.html index 4800a75c9..3fe8f00e1 100644 --- a/docs/apictrl/plc.AXOpen.Components.Abstractions.AxoComponent_Status.html +++ b/docs/apictrl/plc.AXOpen.Components.Abstractions.AxoComponent_Status.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoComponent_Status - +

@@ -129,7 +129,7 @@

Properties

Action - +

@@ -159,7 +159,7 @@

Property Value

Error - +

@@ -190,7 +190,7 @@

Property Value

@@ -206,7 +206,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Abstractions.IAxoCodeReader.html b/docs/apictrl/plc.AXOpen.Components.Abstractions.IAxoCodeReader.html index d8a2260be..316fa9e0c 100644 --- a/docs/apictrl/plc.AXOpen.Components.Abstractions.IAxoCodeReader.html +++ b/docs/apictrl/plc.AXOpen.Components.Abstractions.IAxoCodeReader.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoCodeReader - +

@@ -128,7 +128,7 @@

Methods

ClearResultData - +

@@ -158,7 +158,7 @@

Returns

Read - +

@@ -189,7 +189,7 @@

Returns

@@ -205,7 +205,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Abstractions.IAxoVisionSensor.html b/docs/apictrl/plc.AXOpen.Components.Abstractions.IAxoVisionSensor.html index 82db3867c..224c7fd52 100644 --- a/docs/apictrl/plc.AXOpen.Components.Abstractions.IAxoVisionSensor.html +++ b/docs/apictrl/plc.AXOpen.Components.Abstractions.IAxoVisionSensor.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoVisionSensor - +

@@ -128,7 +128,7 @@

Methods

ClearInspectionResults - +

@@ -158,7 +158,7 @@

Returns

Trigger - +

@@ -188,7 +188,7 @@

Returns

ChangeJob - +

@@ -223,7 +223,7 @@

Returns

ChangeJob - +

@@ -259,7 +259,7 @@

Returns

@@ -275,7 +275,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Abstractions.html b/docs/apictrl/plc.AXOpen.Components.Abstractions.html index af23f9687..ef3d3bb12 100644 --- a/docs/apictrl/plc.AXOpen.Components.Abstractions.html +++ b/docs/apictrl/plc.AXOpen.Components.Abstractions.html @@ -17,7 +17,7 @@ - + @@ -119,7 +119,7 @@

@@ -135,7 +135,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html index 8cb073bf3..6b90ad32b 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoBoolArray8.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoBoolArray8 - +

@@ -145,7 +145,7 @@

Properties

Data - +

@@ -176,7 +176,7 @@

Property Value

@@ -192,7 +192,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html index d0eab32ff..4a26efe25 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman - +

@@ -192,7 +192,7 @@

Properties

ReadTask - +

@@ -222,7 +222,7 @@

Property Value

ResultData - +

@@ -252,7 +252,7 @@

Property Value

RestoreTask - +

@@ -282,7 +282,7 @@

Property Value

ClearResultDataTask - +

@@ -312,7 +312,7 @@

Property Value

Config - +

@@ -342,7 +342,7 @@

Property Value

Status - +

@@ -372,7 +372,7 @@

Property Value

Results - +

@@ -402,7 +402,7 @@

Property Value

AcquisitionControl - +

@@ -432,7 +432,7 @@

Property Value

AcquisitionStatus - +

@@ -462,7 +462,7 @@

Property Value

ResultsControl - +

@@ -492,7 +492,7 @@

Property Value

ResultsStatus - +

@@ -522,7 +522,7 @@

Property Value

SoftEventControl - +

@@ -552,7 +552,7 @@

Property Value

SoftEventStatus - +

@@ -582,7 +582,7 @@

Property Value

User - +

@@ -612,7 +612,7 @@

Property Value

UserData - +

@@ -642,7 +642,7 @@

Property Value

_Messenger - +

@@ -672,7 +672,7 @@

Property Value

_TaskMessenger - +

@@ -706,7 +706,7 @@

Methods

Restore - +

Restores this instance to its initial state.

@@ -737,7 +737,7 @@

Returns

ManualControl - +

Custom logic for the manual control.

@@ -768,7 +768,7 @@

Returns

UpdateInputs - +

@@ -809,7 +809,7 @@

Returns

UpdateOutputs - +

@@ -850,7 +850,7 @@

Returns

IsValidReferences - +

@@ -899,7 +899,7 @@

Returns

ContinuousReading - +

@@ -938,7 +938,7 @@

Returns

Open - +

Custom component logic running before any other component logic.

@@ -969,7 +969,7 @@

Returns

Run - +

Runs tasks and logic of this component.>[!IMPORTANT] This method or one of its overloads must be called cyclically.

@@ -1021,7 +1021,7 @@

Returns

Run - +

Runs tasks and logic of this component.>[!IMPORTANT] This method or one of its overloads must be called cyclically.

@@ -1073,7 +1073,7 @@

Returns

Execute - +

@@ -1122,7 +1122,7 @@

Returns

Close - +

Custom component logic running after any other component logic.

@@ -1153,7 +1153,7 @@

Returns

ClearResultData - +

Clears the result data.

@@ -1184,7 +1184,7 @@

Returns

Read - +

Triggers the reading sequence and waits for results.

@@ -1216,7 +1216,7 @@

Returns

@@ -1232,7 +1232,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html index 99fc156e8..1b9425a35 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanClearResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDatamanClearResultData - +

@@ -291,7 +291,7 @@

Properties

_progress - +

@@ -321,7 +321,7 @@

Property Value

_infoTimer - +

@@ -351,7 +351,7 @@

Property Value

_errorTimer - +

@@ -381,7 +381,7 @@

Property Value

_infoTime - +

@@ -411,7 +411,7 @@

Property Value

_errorTime - +

@@ -441,7 +441,7 @@

Property Value

_refStatus - +

@@ -471,7 +471,7 @@

Property Value

_refMessenger - +

@@ -505,7 +505,7 @@

Methods

Run - +

Runs the logic of this tasks.>[!IMPORTANT] This method must be called cyclically.

@@ -557,7 +557,7 @@

Returns

CallTimers - +

@@ -592,7 +592,7 @@

Returns

OnRestore - +

@@ -622,7 +622,7 @@

Returns

OnAbort - +

@@ -652,7 +652,7 @@

Returns

OnDone - +

@@ -682,7 +682,7 @@

Returns

OnError - +

@@ -712,7 +712,7 @@

Returns

OnStart - +

@@ -743,7 +743,7 @@

Returns

@@ -759,7 +759,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html index e70f7ac87..df9835d2a 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDatamanRead.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDatamanRead - +

@@ -291,7 +291,7 @@

Properties

_progress - +

@@ -321,7 +321,7 @@

Property Value

_infoTimer - +

@@ -351,7 +351,7 @@

Property Value

_errorTimer - +

@@ -381,7 +381,7 @@

Property Value

_infoTime - +

@@ -411,7 +411,7 @@

Property Value

_errorTime - +

@@ -441,7 +441,7 @@

Property Value

_refStatus - +

@@ -471,7 +471,7 @@

Property Value

_refMessenger - +

@@ -505,7 +505,7 @@

Methods

Run - +

Runs the logic of this tasks.>[!IMPORTANT] This method must be called cyclically.

@@ -559,7 +559,7 @@

Returns

CallTimers - +

@@ -594,7 +594,7 @@

Returns

OnRestore - +

@@ -624,7 +624,7 @@

Returns

OnAbort - +

@@ -654,7 +654,7 @@

Returns

OnDone - +

@@ -684,7 +684,7 @@

Returns

OnError - +

@@ -714,7 +714,7 @@

Returns

OnStart - +

@@ -745,7 +745,7 @@

Returns

@@ -761,7 +761,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html index fe76432be..3c128189a 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_AcquisitionControl - +

@@ -128,7 +128,7 @@

Properties

TriggerEnable - +

@@ -158,7 +158,7 @@

Property Value

Trigger - +

@@ -189,7 +189,7 @@

Property Value

@@ -205,7 +205,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html index 79ac3da00..d91c0cd4d 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_AcquisitionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_AcquisitionStatus - +

@@ -128,7 +128,7 @@

Properties

TriggerReady - +

@@ -158,7 +158,7 @@

Property Value

TriggerAcknowledge - +

@@ -188,7 +188,7 @@

Property Value

Acquiring - +

@@ -218,7 +218,7 @@

Property Value

MissedAcquisition - +

@@ -248,7 +248,7 @@

Property Value

TriggerID - +

@@ -279,7 +279,7 @@

Property Value

@@ -295,7 +295,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html index 90f8eff81..290cad99d 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Config.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_Config - +

@@ -128,7 +128,7 @@

Properties

ContinuousReading - +

@@ -158,7 +158,7 @@

Property Value

InfoTime - +

@@ -188,7 +188,7 @@

Property Value

ErrorTime - +

@@ -219,7 +219,7 @@

Property Value

@@ -235,7 +235,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html index cfda5d3c0..1835bddcc 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_ResultData - +

@@ -145,7 +145,7 @@

Properties

Data - +

@@ -176,7 +176,7 @@

Property Value

@@ -192,7 +192,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html index c4ce34328..03cb36f04 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Results.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_Results - +

@@ -128,7 +128,7 @@

Properties

Id - +

@@ -158,7 +158,7 @@

Property Value

Code - +

@@ -188,7 +188,7 @@

Property Value

Extended - +

@@ -218,7 +218,7 @@

Property Value

Length - +

@@ -249,7 +249,7 @@

Property Value

@@ -265,7 +265,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html index cb7c1c951..78291dc88 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_ResultsControl - +

@@ -128,7 +128,7 @@

Properties

EnableResultBuffering - +

@@ -158,7 +158,7 @@

Property Value

ResultsAcknowledge - +

@@ -189,7 +189,7 @@

Property Value

@@ -205,7 +205,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html index 0e14eaa64..71328122d 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_ResultsStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_ResultsStatus - +

@@ -128,7 +128,7 @@

Properties

Decoding - +

@@ -158,7 +158,7 @@

Property Value

DecodeComplete - +

@@ -188,7 +188,7 @@

Property Value

ResultsBufferOverrun - +

@@ -218,7 +218,7 @@

Property Value

ResultsAvailable - +

@@ -248,7 +248,7 @@

Property Value

ErrorDetected - +

@@ -279,7 +279,7 @@

Property Value

@@ -295,7 +295,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html index 068363226..80f1fe931 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_SoftEventControl - +

@@ -128,7 +128,7 @@

Properties

TrainCode - +

@@ -158,7 +158,7 @@

Property Value

TrainMatchString - +

@@ -188,7 +188,7 @@

Property Value

TrainFocus - +

@@ -218,7 +218,7 @@

Property Value

TrainBrightness - +

@@ -248,7 +248,7 @@

Property Value

Untrain - +

@@ -278,7 +278,7 @@

Property Value

ExecuteDMCC - +

@@ -308,7 +308,7 @@

Property Value

Reserved06 - +

@@ -338,7 +338,7 @@

Property Value

SetMatchString - +

@@ -369,7 +369,7 @@

Property Value

@@ -385,7 +385,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html index 2a60976e9..9475b159e 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_SoftEventStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_SoftEventStatus - +

@@ -128,7 +128,7 @@

Properties

TrainCodeAcknowledge - +

@@ -158,7 +158,7 @@

Property Value

TrainMatchStringAcknowledge - +

@@ -188,7 +188,7 @@

Property Value

TrainFocusAcknowledge - +

@@ -218,7 +218,7 @@

Property Value

TrainBrightnessAcknowledge - +

@@ -248,7 +248,7 @@

Property Value

UntrainAcknowledge - +

@@ -278,7 +278,7 @@

Property Value

ExecuteDMCCAcknowledge - +

@@ -308,7 +308,7 @@

Property Value

Reserved06 - +

@@ -338,7 +338,7 @@

Property Value

SetMatchStringAcknowledge - +

@@ -369,7 +369,7 @@

Property Value

@@ -385,7 +385,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html index b332f9de1..796acec92 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_Status.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_Status - +

@@ -145,7 +145,7 @@

Properties

ResultDataSize - +

@@ -175,7 +175,7 @@

Property Value

UserDataSize - +

@@ -206,7 +206,7 @@

Property Value

@@ -222,7 +222,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html index 9540234db..ac449a8d9 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_User.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoDataman_User - +

@@ -128,7 +128,7 @@

Properties

Option - +

@@ -158,7 +158,7 @@

Property Value

Length - +

@@ -189,7 +189,7 @@

Property Value

@@ -205,7 +205,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html index 231d08452..22b397294 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoDataman_UserData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataman_UserData - +

@@ -145,7 +145,7 @@

Properties

Data - +

@@ -176,7 +176,7 @@

Property Value

@@ -192,7 +192,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html index 5e14c80b7..20b4058a5 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight - +

@@ -192,7 +192,7 @@

Properties

TriggerTask - +

@@ -222,7 +222,7 @@

Property Value

InspectionResults - +

@@ -252,7 +252,7 @@

Property Value

RestoreTask - +

@@ -282,7 +282,7 @@

Property Value

ClearInspectionResultsTask - +

@@ -312,7 +312,7 @@

Property Value

RequiredJobName - +

@@ -342,7 +342,7 @@

Property Value

ChangeJobByNameTask - +

@@ -372,7 +372,7 @@

Property Value

RequiredJobNumber - +

@@ -402,7 +402,7 @@

Property Value

ChangeJobByNumberTask - +

@@ -432,7 +432,7 @@

Property Value

RequiredSoftEventNumber - +

@@ -462,7 +462,7 @@

Property Value

SoftEventTask - +

@@ -492,7 +492,7 @@

Property Value

Config - +

@@ -522,7 +522,7 @@

Property Value

Status - +

@@ -552,7 +552,7 @@

Property Value

Results - +

@@ -582,7 +582,7 @@

Property Value

AcquisitionControl - +

@@ -612,7 +612,7 @@

Property Value

AcquisitionStatus - +

@@ -642,7 +642,7 @@

Property Value

InspectionControl - +

@@ -672,7 +672,7 @@

Property Value

InspectionStatus - +

@@ -702,7 +702,7 @@

Property Value

CommandControl - +

@@ -732,7 +732,7 @@

Property Value

CommandStatus - +

@@ -762,7 +762,7 @@

Property Value

SoftEventControl - +

@@ -792,7 +792,7 @@

Property Value

SoftEventStatus - +

@@ -822,7 +822,7 @@

Property Value

UserData - +

@@ -852,7 +852,7 @@

Property Value

_Messenger - +

@@ -882,7 +882,7 @@

Property Value

_TaskMessenger - +

@@ -916,7 +916,7 @@

Methods

Restore - +

Restores this instance .

@@ -947,7 +947,7 @@

Returns

ManualControl - +

Custom logic for the manual control.

@@ -978,7 +978,7 @@

Returns

UpdateInputs - +

@@ -1021,7 +1021,7 @@

Returns

UpdateOutputs - +

@@ -1064,7 +1064,7 @@

Returns

IsValidReferences - +

@@ -1117,7 +1117,7 @@

Returns

Open - +

Custom component logic running before any other component logic.

@@ -1148,7 +1148,7 @@

Returns

Run - +

Runs tasks and logic of this component.>[!IMPORTANT] This method or one of its overloads must be called cyclically.

@@ -1204,7 +1204,7 @@

Returns

Run - +

Runs tasks and logic of this component.>[!IMPORTANT] This method or one of its overloads must be called cyclically.

@@ -1260,7 +1260,7 @@

Returns

Execute - +

@@ -1313,7 +1313,7 @@

Returns

Close - +

Custom component logic running after any other component logic.

@@ -1344,7 +1344,7 @@

Returns

ClearInspectionResults - +

Clears the inspection results.

@@ -1375,7 +1375,7 @@

Returns

Trigger - +

Triggers the reading sequence and waits for results.

@@ -1406,7 +1406,7 @@

Returns

ChangeJob - +

Changes the sensor job using job number.

@@ -1442,7 +1442,7 @@

Returns

ChangeJob - +

Changes the sensor job using job name.

@@ -1478,7 +1478,7 @@

Returns

SoftEvent - +

Triggers the soft event.

@@ -1515,7 +1515,7 @@

Returns

@@ -1531,7 +1531,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html index bcc1388b2..ffde36eea 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByName.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightChangeJobByName - +

@@ -291,7 +291,7 @@

Properties

_progress - +

@@ -321,7 +321,7 @@

Property Value

_infoTimer - +

@@ -351,7 +351,7 @@

Property Value

_errorTimer - +

@@ -381,7 +381,7 @@

Property Value

_infoTime - +

@@ -411,7 +411,7 @@

Property Value

_errorTime - +

@@ -441,7 +441,7 @@

Property Value

_refStatus - +

@@ -471,7 +471,7 @@

Property Value

_refMessenger - +

@@ -501,7 +501,7 @@

Property Value

_jobName - +

@@ -535,7 +535,7 @@

Methods

Run - +

Runs the logic of this tasks.>[!IMPORTANT] This method must be called cyclically.

@@ -587,7 +587,7 @@

Returns

AppendSuffix - +

@@ -622,7 +622,7 @@

Returns

SetUserDataAsString - +

@@ -663,7 +663,7 @@

Returns

CallTimers - +

@@ -698,7 +698,7 @@

Returns

OnRestore - +

@@ -728,7 +728,7 @@

Returns

OnAbort - +

@@ -758,7 +758,7 @@

Returns

OnDone - +

@@ -788,7 +788,7 @@

Returns

OnError - +

@@ -818,7 +818,7 @@

Returns

OnStart - +

@@ -848,7 +848,7 @@

Returns

InvokeWithParameters - +

@@ -883,7 +883,7 @@

Returns

Manual - +

@@ -919,7 +919,7 @@

Returns

@@ -935,7 +935,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html index 34b30f151..98819e252 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightChangeJobByNumber.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightChangeJobByNumber - +

@@ -291,7 +291,7 @@

Properties

_progress - +

@@ -321,7 +321,7 @@

Property Value

_infoTimer - +

@@ -351,7 +351,7 @@

Property Value

_errorTimer - +

@@ -381,7 +381,7 @@

Property Value

_infoTime - +

@@ -411,7 +411,7 @@

Property Value

_errorTime - +

@@ -441,7 +441,7 @@

Property Value

_refStatus - +

@@ -471,7 +471,7 @@

Property Value

_refMessenger - +

@@ -501,7 +501,7 @@

Property Value

_jobNumber - +

@@ -535,7 +535,7 @@

Methods

Run - +

Runs the logic of this tasks.>[!IMPORTANT] This method must be called cyclically.

@@ -585,7 +585,7 @@

Returns

CallTimers - +

@@ -620,7 +620,7 @@

Returns

OnRestore - +

@@ -650,7 +650,7 @@

Returns

OnAbort - +

@@ -680,7 +680,7 @@

Returns

OnDone - +

@@ -710,7 +710,7 @@

Returns

OnError - +

@@ -740,7 +740,7 @@

Returns

OnStart - +

@@ -770,7 +770,7 @@

Returns

InvokeWithParameters - +

@@ -805,7 +805,7 @@

Returns

Manual - +

@@ -841,7 +841,7 @@

Returns

@@ -857,7 +857,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html index ec2680f58..c70a5dc4a 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightClearInspectionResults.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightClearInspectionResults - +

@@ -291,7 +291,7 @@

Properties

_progress - +

@@ -321,7 +321,7 @@

Property Value

_infoTimer - +

@@ -351,7 +351,7 @@

Property Value

_errorTimer - +

@@ -381,7 +381,7 @@

Property Value

_infoTime - +

@@ -411,7 +411,7 @@

Property Value

_errorTime - +

@@ -441,7 +441,7 @@

Property Value

_refStatus - +

@@ -471,7 +471,7 @@

Property Value

_refMessenger - +

@@ -505,7 +505,7 @@

Methods

Run - +

Runs the logic of this tasks.>[!IMPORTANT] This method must be called cyclically.

@@ -557,7 +557,7 @@

Returns

CallTimers - +

@@ -592,7 +592,7 @@

Returns

OnRestore - +

@@ -622,7 +622,7 @@

Returns

OnAbort - +

@@ -652,7 +652,7 @@

Returns

OnDone - +

@@ -682,7 +682,7 @@

Returns

OnError - +

@@ -712,7 +712,7 @@

Returns

OnStart - +

@@ -743,7 +743,7 @@

Returns

@@ -759,7 +759,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html index 46ef933ac..dd62f6e01 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightSoftEvent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightSoftEvent - +

@@ -291,7 +291,7 @@

Properties

_progress - +

@@ -321,7 +321,7 @@

Property Value

_infoTimer - +

@@ -351,7 +351,7 @@

Property Value

_errorTimer - +

@@ -381,7 +381,7 @@

Property Value

_infoTime - +

@@ -411,7 +411,7 @@

Property Value

_errorTime - +

@@ -441,7 +441,7 @@

Property Value

_refStatus - +

@@ -471,7 +471,7 @@

Property Value

_refMessenger - +

@@ -501,7 +501,7 @@

Property Value

_softEventNumber - +

@@ -535,7 +535,7 @@

Methods

Run - +

Runs the logic of this tasks.>[!IMPORTANT] This method must be called cyclically.

@@ -589,7 +589,7 @@

Returns

CallTimers - +

@@ -624,7 +624,7 @@

Returns

OnRestore - +

@@ -654,7 +654,7 @@

Returns

OnAbort - +

@@ -684,7 +684,7 @@

Returns

OnDone - +

@@ -714,7 +714,7 @@

Returns

OnError - +

@@ -744,7 +744,7 @@

Returns

OnStart - +

@@ -774,7 +774,7 @@

Returns

InvokeWithParameters - +

@@ -809,7 +809,7 @@

Returns

Manual - +

@@ -845,7 +845,7 @@

Returns

@@ -861,7 +861,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html index d06a4c457..ce992feaf 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsightTrigger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsightTrigger - +

@@ -291,7 +291,7 @@

Properties

_progress - +

@@ -321,7 +321,7 @@

Property Value

_infoTimer - +

@@ -351,7 +351,7 @@

Property Value

_errorTimer - +

@@ -381,7 +381,7 @@

Property Value

_infoTime - +

@@ -411,7 +411,7 @@

Property Value

_errorTime - +

@@ -441,7 +441,7 @@

Property Value

_refStatus - +

@@ -471,7 +471,7 @@

Property Value

_refMessenger - +

@@ -505,7 +505,7 @@

Methods

Run - +

Runs the logic of this tasks.>[!IMPORTANT] This method must be called cyclically.

@@ -561,7 +561,7 @@

Returns

CallTimers - +

@@ -596,7 +596,7 @@

Returns

OnRestore - +

@@ -626,7 +626,7 @@

Returns

OnAbort - +

@@ -656,7 +656,7 @@

Returns

OnDone - +

@@ -686,7 +686,7 @@

Returns

OnError - +

@@ -716,7 +716,7 @@

Returns

OnStart - +

@@ -747,7 +747,7 @@

Returns

@@ -763,7 +763,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html index 0a4c125c5..a5e15fb8a 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_AcquisitionControl - +

@@ -128,7 +128,7 @@

Properties

TriggerEnable - +

@@ -158,7 +158,7 @@

Property Value

Trigger - +

@@ -188,7 +188,7 @@

Property Value

ClearExposureComplete - +

@@ -218,7 +218,7 @@

Property Value

SetOffline - +

@@ -249,7 +249,7 @@

Property Value

@@ -265,7 +265,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html index 4fdd9758a..ec94dc787 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_AcquisitionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_AcquisitionStatus - +

@@ -128,7 +128,7 @@

Properties

TriggerReady - +

@@ -158,7 +158,7 @@

Property Value

TriggerAcknowledge - +

@@ -188,7 +188,7 @@

Property Value

ExposureComplete - +

@@ -218,7 +218,7 @@

Property Value

MissedAcquisition - +

@@ -248,7 +248,7 @@

Property Value

OfflineReason0 - +

@@ -278,7 +278,7 @@

Property Value

OfflineReason1 - +

@@ -308,7 +308,7 @@

Property Value

OfflineReason2 - +

@@ -338,7 +338,7 @@

Property Value

Online - +

@@ -368,7 +368,7 @@

Property Value

AcquisitionID - +

@@ -399,7 +399,7 @@

Property Value

@@ -415,7 +415,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html index fc34db263..7842950f4 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_CommandControl - +

@@ -128,7 +128,7 @@

Properties

Command - +

@@ -159,7 +159,7 @@

Property Value

@@ -175,7 +175,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html index e02ed8e28..9133edb6a 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_CommandStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_CommandStatus - +

@@ -128,7 +128,7 @@

Properties

CurrentJobID - +

@@ -159,7 +159,7 @@

Property Value

@@ -175,7 +175,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html index c369589bc..9e04fd973 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Config.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_Config - +

@@ -128,7 +128,7 @@

Properties

InfoTime - +

@@ -158,7 +158,7 @@

Property Value

ErrorTime - +

@@ -188,7 +188,7 @@

Property Value

MaxJobNumber - +

@@ -219,7 +219,7 @@

Property Value

@@ -235,7 +235,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html index 940929b33..a5d992148 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_InspectionControl - +

@@ -128,7 +128,7 @@

Properties

EnableResultsBuffering - +

@@ -158,7 +158,7 @@

Property Value

AcknowledgeInspectionResults - +

@@ -188,7 +188,7 @@

Property Value

ExtendedUserDataSet - +

@@ -218,7 +218,7 @@

Property Value

ExecuteCommand - +

@@ -248,7 +248,7 @@

Property Value

ClearError - +

@@ -279,7 +279,7 @@

Property Value

@@ -295,7 +295,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html index d8445c66a..263fa29d5 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_InspectionStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_InspectionStatus - +

@@ -128,7 +128,7 @@

Properties

SystemBusy - +

@@ -158,7 +158,7 @@

Property Value

InspectionCompleted - +

@@ -188,7 +188,7 @@

Property Value

ResultsBufferOverrun - +

@@ -218,7 +218,7 @@

Property Value

ResultsValid - +

@@ -248,7 +248,7 @@

Property Value

CommandExecuting - +

@@ -278,7 +278,7 @@

Property Value

CommandComplete - +

@@ -308,7 +308,7 @@

Property Value

CommandFailed - +

@@ -338,7 +338,7 @@

Property Value

ExtendedUserDataSetAcknowledge - +

@@ -368,7 +368,7 @@

Property Value

OverallJobPassFail - +

@@ -398,7 +398,7 @@

Property Value

TestRunReady - +

@@ -428,7 +428,7 @@

Property Value

Error - +

@@ -458,7 +458,7 @@

Property Value

ErrorCode - +

@@ -489,7 +489,7 @@

Property Value

@@ -505,7 +505,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html index fb3c13299..f19474454 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_ResultData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_ResultData - +

@@ -145,7 +145,7 @@

Properties

Data - +

@@ -176,7 +176,7 @@

Property Value

@@ -192,7 +192,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html index f0bfbd961..bf3f51720 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Results.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_Results - +

@@ -128,7 +128,7 @@

Properties

InspectionID - +

@@ -158,7 +158,7 @@

Property Value

ResultCode - +

@@ -189,7 +189,7 @@

Property Value

@@ -205,7 +205,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html index 655792459..277cf21e9 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventControl.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_SoftEventControl - +

@@ -128,7 +128,7 @@

Properties

TriggerSoftEvent - +

@@ -159,7 +159,7 @@

Property Value

@@ -175,7 +175,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html index 390affb3f..4eb1f5d0d 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_SoftEventStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Struct AxoInsight_SoftEventStatus - +

@@ -128,7 +128,7 @@

Properties

TriggerSoftEventAcknowledge - +

@@ -159,7 +159,7 @@

Property Value

@@ -175,7 +175,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html index 25dbf940a..adc4c37cd 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_Status.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_Status - +

@@ -145,7 +145,7 @@

Properties

CurrentJobName - +

@@ -175,7 +175,7 @@

Property Value

CurrentJobNumber - +

@@ -205,7 +205,7 @@

Property Value

ResultDataSize - +

@@ -235,7 +235,7 @@

Property Value

UserDataSize - +

@@ -266,7 +266,7 @@

Property Value

@@ -282,7 +282,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html index 574b8e708..d2eeea482 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.AxoInsight_UserData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInsight_UserData - +

@@ -145,7 +145,7 @@

Properties

Data - +

@@ -176,7 +176,7 @@

Property Value

@@ -192,7 +192,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_ResultDataSize.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_ResultDataSize.html index 7b2ecd705..9439daf8d 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_ResultDataSize.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_ResultDataSize.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eAxoDataman_ResultDataSize - +

@@ -140,7 +140,7 @@

Fields @@ -156,7 +156,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_UserDataSize.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_UserDataSize.html index 92099e42a..79ba80d5b 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_UserDataSize.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoDataman_UserDataSize.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoDataman_UserDataSize - +

@@ -140,7 +140,7 @@

Fields @@ -156,7 +156,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_ResultDataSize.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_ResultDataSize.html index 3a3359c1b..3a339b3e8 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_ResultDataSize.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_ResultDataSize.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoInsight_ResultDataSize - +

@@ -140,7 +140,7 @@

Fields @@ -156,7 +156,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_UserDataSize.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_UserDataSize.html index b19ae435c..92744593e 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_UserDataSize.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.eAxoInsight_UserDataSize.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoInsight_UserDataSize - +

@@ -140,7 +140,7 @@

Fields @@ -156,7 +156,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.html b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.html index b1f68250e..6a23a1c3c 100644 --- a/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.html +++ b/docs/apictrl/plc.AXOpen.Components.Cognex.Vision.v_6_0_0_0.html @@ -17,7 +17,7 @@ - + @@ -247,7 +247,7 @@

@@ -263,7 +263,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Pneumatics.AxoCylinder.html b/docs/apictrl/plc.AXOpen.Components.Pneumatics.AxoCylinder.html index ecd7aa07a..3cc9a6d83 100644 --- a/docs/apictrl/plc.AXOpen.Components.Pneumatics.AxoCylinder.html +++ b/docs/apictrl/plc.AXOpen.Components.Pneumatics.AxoCylinder.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoCylinder - +

@@ -191,7 +191,7 @@

Properties

_MoveToWorkTask - +

@@ -221,7 +221,7 @@

Property Value

_MoveToHomeTask - +

@@ -251,7 +251,7 @@

Property Value

_StopTask - +

@@ -281,7 +281,7 @@

Property Value

_HomeSensor - +

@@ -311,7 +311,7 @@

Property Value

_WorkSensor - +

@@ -341,7 +341,7 @@

Property Value

_MoveHomeSignal - +

@@ -371,7 +371,7 @@

Property Value

_MoveWorkSignal - +

@@ -401,7 +401,7 @@

Property Value

_Messenger - +

@@ -431,7 +431,7 @@

Property Value

_MoveToWorkIsSuspended - +

@@ -461,7 +461,7 @@

Property Value

_MoveToHomeIsSuspended - +

@@ -495,7 +495,7 @@

Methods

Run - +

@@ -534,7 +534,7 @@

Returns

Run - +

Runs tasks and logic of this component.>[!IMPORTANT] This method or one of its overloads must be called cyclically.

@@ -574,7 +574,7 @@

Returns

ManualControl - +

@@ -604,7 +604,7 @@

Returns

Restore - +

Restores this component into intial state.

@@ -635,7 +635,7 @@

Returns

MoveToWork - +

Invokes the movement to the work position and returns the task state.

@@ -666,7 +666,7 @@

Returns

MoveToHome - +

Invokes the movement to the home position and returns the task state.

@@ -697,7 +697,7 @@

Returns

Stop - +

Stops any movement.

@@ -728,7 +728,7 @@

Returns

SuspendMoveToWorkWhile - +

Suspends the movement to the work position while the condition is 'true'. Task remains still executing.

@@ -764,7 +764,7 @@

Returns

SuspendMoveToHomeWhile - +

Suspends the movement to the home position while the condition is 'true'. Task remains still executing.

@@ -800,7 +800,7 @@

Returns

AbortMoveToWorkWhen - +

Aborts the movement to the work position when the condition is 'true' and restores the respective task.

@@ -836,7 +836,7 @@

Returns

AbortMoveToHomeWhen - +

Aborts the movement to the home position when the condition is 'true' and restores the respective task.

@@ -873,7 +873,7 @@

Returns

@@ -889,7 +889,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Components.Pneumatics.html b/docs/apictrl/plc.AXOpen.Components.Pneumatics.html index 348ea4878..28248722b 100644 --- a/docs/apictrl/plc.AXOpen.Components.Pneumatics.html +++ b/docs/apictrl/plc.AXOpen.Components.Pneumatics.html @@ -17,7 +17,7 @@ - + @@ -108,7 +108,7 @@

@@ -124,7 +124,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoAlertDialog.html b/docs/apictrl/plc.AXOpen.Core.AxoAlertDialog.html index 8d7b72734..d5a6949c7 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoAlertDialog.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoAlertDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoAlertDialog - +

@@ -320,7 +320,7 @@

Properties

_dialogType - +

@@ -350,7 +350,7 @@

Property Value

_title - +

@@ -380,7 +380,7 @@

Property Value

_message - +

@@ -410,7 +410,7 @@

Property Value

_timeToBurn - +

@@ -440,7 +440,7 @@

Property Value

_lastCall - +

@@ -474,7 +474,7 @@

Methods

Show - +

@@ -509,7 +509,7 @@

Returns

WithTitle - +

@@ -544,7 +544,7 @@

Returns

WithMessage - +

@@ -579,7 +579,7 @@

Returns

WithTimeToBurn - +

@@ -614,7 +614,7 @@

Returns

WithType - +

@@ -649,7 +649,7 @@

Returns

IsShown - +

@@ -680,7 +680,7 @@

Returns

@@ -696,7 +696,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoBoolArray.html b/docs/apictrl/plc.AXOpen.Core.AxoBoolArray.html index 40aebea28..5df179247 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoBoolArray.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoBoolArray.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoBoolArray - +

@@ -129,7 +129,7 @@

Properties

DataChanged - +

@@ -163,7 +163,7 @@

Methods

ToggleDataChangedFlag - +

@@ -194,7 +194,7 @@

Returns

@@ -210,7 +210,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoByteArray.html b/docs/apictrl/plc.AXOpen.Core.AxoByteArray.html index 40dfcdd77..c8b32c9ca 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoByteArray.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoByteArray.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoByteArray - +

@@ -129,7 +129,7 @@

Properties

DataChanged - +

@@ -163,7 +163,7 @@

Methods

ToggleDataChangedFlag - +

@@ -194,7 +194,7 @@

Returns

@@ -210,7 +210,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoComponent.html b/docs/apictrl/plc.AXOpen.Core.AxoComponent.html index ae24d6065..824e0a460 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoComponent.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoComponent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoComponent - +

@@ -163,7 +163,7 @@

Properties

_manualControlContextCycle - +

@@ -193,7 +193,7 @@

Property Value

_isManuallyControllable - +

@@ -227,7 +227,7 @@

Methods

ActivateManualControl - +

Executes the logic for manual-maintenance control.

@@ -258,7 +258,7 @@

Returns

IsManuallyControllable - +

Gets whether the AxoComponent is manually controllable.To make the AxoComponent manually controllable, it is necessary to call the ActivateManualMode() method cyclically.

@@ -289,7 +289,7 @@

Returns

CheckIfManualControlIsActivated - +

@@ -319,7 +319,7 @@

Returns

Open - +

@@ -349,7 +349,7 @@

Returns

Run - +

@@ -379,7 +379,7 @@

Returns

Close - +

@@ -409,7 +409,7 @@

Returns

Restore - +

Restores this instance. This method must be implemented in derived class.

@@ -440,7 +440,7 @@

Returns

ManualControl - +

Custom logic for manual control of the AxoComponent.This method must be implemented in derived class.

@@ -472,7 +472,7 @@

Returns

@@ -488,7 +488,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoContext.html b/docs/apictrl/plc.AXOpen.Core.AxoContext.html index bc7fbc49c..26b76d8d5 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoContext.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoContext.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoContext - +

@@ -136,7 +136,7 @@

Properties

_openCounter - +

@@ -166,7 +166,7 @@

Property Value

_closeCounter - +

@@ -196,7 +196,7 @@

Property Value

_identityCounter - +

@@ -226,7 +226,7 @@

Property Value

NULL_RTC - +

@@ -256,7 +256,7 @@

Property Value

_rtc - +

@@ -286,7 +286,7 @@

Property Value

NULL_LOGGER - +

@@ -316,7 +316,7 @@

Property Value

_contextLogger - +

@@ -350,7 +350,7 @@

Methods

Open - +

@@ -380,7 +380,7 @@

Returns

Close - +

@@ -410,7 +410,7 @@

Returns

Run - +

Runs the cycle of this context. This method must be called cyclically in a PLC task.

@@ -441,7 +441,7 @@

Returns

OpenCycleCount - +

Gets the value of current context cycle counter.

@@ -472,7 +472,7 @@

Returns

ClosedCycleCount - +

@@ -502,7 +502,7 @@

Returns

CreateIdentity - +

@@ -532,7 +532,7 @@

Returns

PeekIdentity - +

@@ -562,7 +562,7 @@

Returns

GetRtc - +

@@ -592,7 +592,7 @@

Returns

InjectRtc - +

@@ -627,7 +627,7 @@

Returns

GetLogger - +

@@ -657,7 +657,7 @@

Returns

InjectLogger - +

@@ -692,7 +692,7 @@

Returns

Main - +

The entry point for the context. The call tree of the context start here and all the logic of given contextmust be placed here.This method must be overridden in derived class.

@@ -724,7 +724,7 @@

Returns

@@ -740,7 +740,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoCoordinatorStates.html b/docs/apictrl/plc.AXOpen.Core.AxoCoordinatorStates.html index 8eefbf2ec..ec9818622 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoCoordinatorStates.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoCoordinatorStates.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum AxoCoordinatorStates - +

@@ -134,7 +134,7 @@

Fields @@ -150,7 +150,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoDialog.html b/docs/apictrl/plc.AXOpen.Core.AxoDialog.html index 6518c2dc6..9eaa6ff4c 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoDialog.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDialog - +

@@ -322,7 +322,7 @@

Properties

_text - +

@@ -352,7 +352,7 @@

Property Value

_caption - +

@@ -382,7 +382,7 @@

Property Value

_hasOK - +

@@ -412,7 +412,7 @@

Property Value

_hasYes - +

@@ -442,7 +442,7 @@

Property Value

_hasNo - +

@@ -472,7 +472,7 @@

Property Value

_hasCancel - +

@@ -502,7 +502,7 @@

Property Value

_answer - +

@@ -532,7 +532,7 @@

Property Value

_dialogType - +

@@ -562,7 +562,7 @@

Property Value

_externalCloseReq - +

@@ -592,7 +592,7 @@

Property Value

_closeSignal - +

@@ -622,7 +622,7 @@

Property Value

_risingEdge - +

@@ -652,7 +652,7 @@

Property Value

_lastCall - +

@@ -686,7 +686,7 @@

Methods

Show - +

Show method, which serves for initializing remote task and invoking dialog from PLC.

@@ -722,7 +722,7 @@

Returns

ShowWithExternalClose - +

Show method with a possibility to close dialog externally by setting a signal.WARNING: This is experimental implementation of possibility to close dialogs externally. More testing need to be done.

@@ -766,7 +766,7 @@

Returns

WithCaption - +

@@ -801,7 +801,7 @@

Returns

WithOk - +

@@ -831,7 +831,7 @@

Returns

WithText - +

@@ -866,7 +866,7 @@

Returns

WithType - +

@@ -901,7 +901,7 @@

Returns

WithYesNo - +

@@ -931,7 +931,7 @@

Returns

WithYesNoCancel - +

@@ -961,7 +961,7 @@

Returns

Answer - +

@@ -992,7 +992,7 @@

Returns

@@ -1008,7 +1008,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoDialogBase.html b/docs/apictrl/plc.AXOpen.Core.AxoDialogBase.html index 65d601f9d..55f4c82bd 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoDialogBase.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoDialogBase.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDialogBase - +

@@ -316,7 +316,7 @@

@@ -332,7 +332,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoMomentaryTask.html b/docs/apictrl/plc.AXOpen.Core.AxoMomentaryTask.html index b7b7dad0b..3fc9d1b8a 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoMomentaryTask.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoMomentaryTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMomentaryTask - +

@@ -164,7 +164,7 @@

Properties

State - +

@@ -194,7 +194,7 @@

Property Value

RemoteSwitchOn - +

Remote request to set the state of this task to '''TRUE'''.

@@ -225,7 +225,7 @@

Property Value

IsDisabled - +

Gets or sets whether this task is disabled for any manipulations.

@@ -256,7 +256,7 @@

Property Value

_openCycleCount - +

@@ -290,7 +290,7 @@

Methods

GetState - +

Gets the actual state of this task.

@@ -321,7 +321,7 @@

Returns

IsRunCalledInThisPlcCycle - +

@@ -351,7 +351,7 @@

Returns

WasRunCalledInPreviousPlcCycle - +

@@ -381,7 +381,7 @@

Returns

Run - +

This method needs to be called cyclically.

@@ -412,7 +412,7 @@

Returns

SetIsDisabled - +

Sets the value of the IsDisabled variable

@@ -448,7 +448,7 @@

Returns

GetIsDisabled - +

Returns the value of the IsDisabled variable

@@ -479,7 +479,7 @@

Returns

IsSwitchedOn - +

Returns TRUE if task is switched on

@@ -510,7 +510,7 @@

Returns

IsSwitchedOff - +

Returns TRUE if task is switched off

@@ -541,7 +541,7 @@

Returns

SwitchOff - +

@@ -571,7 +571,7 @@

Returns

SwitchOn - +

@@ -601,7 +601,7 @@

Returns

OnSwitchedOn - +

Executes ones when momentary task changes its state from '''FALSE''' to '''TRUE'''.

@@ -632,7 +632,7 @@

Returns

OnSwitchedOff - +

Executes ones when momentary task changes its state from '''TRUE''' to '''FALSE'''.

@@ -663,7 +663,7 @@

Returns

OnStateChanged - +

Executes ones when momentary task changes its state.

@@ -694,7 +694,7 @@

Returns

SwitchedOn - +

Executes while the task is in On state.

@@ -725,7 +725,7 @@

Returns

SwitchedOff - +

Executes while the task is in Off state.

@@ -757,7 +757,7 @@

Returns

@@ -773,7 +773,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoObject.html b/docs/apictrl/plc.AXOpen.Core.AxoObject.html index dbe6fcad5..3f57cbd28 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoObject.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoObject.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoObject - +

@@ -136,7 +136,7 @@

Properties

Identity - +

@@ -166,7 +166,7 @@

Property Value

_parent - +

@@ -196,7 +196,7 @@

Property Value

_context - +

@@ -226,7 +226,7 @@

Property Value

NULL_CONTEXT - +

@@ -256,7 +256,7 @@

Property Value

NULL_OBJECT - +

@@ -290,7 +290,7 @@

Methods

GetIdentity - +

Gets unique identity of this object in given context.

@@ -321,7 +321,7 @@

Returns

GetContext - +

Gets context in which this object was initialized.

@@ -352,7 +352,7 @@

Returns

GetParent - +

Gets parent in which this object was initialized.

@@ -383,7 +383,7 @@

Returns

Initialize - +

Initializes this object associating it given parent.This method should be called only once upon the program start.Any subsequent call are ignored.

@@ -419,7 +419,7 @@

Returns

Initialize - +

Initializes this object associating it given context.This method should be called only once upon the program start.Any subsequent call are ignored.

@@ -456,7 +456,7 @@

Returns

@@ -472,7 +472,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoRemoteTask.html b/docs/apictrl/plc.AXOpen.Core.AxoRemoteTask.html index 20ce8e5a5..ad1543f10 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoRemoteTask.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoRemoteTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoRemoteTask - +

@@ -292,7 +292,7 @@

Properties

DoneSignature - +

Remote system's done signature.When StartSignature and DoneSignature equal the task is considered executed on the remote system.

@@ -323,7 +323,7 @@

Property Value

IsInitialized - +

Indicates whether this instance's remote procedure is initialized.

@@ -357,7 +357,7 @@

Rem

HasRemoteException - +

@@ -387,7 +387,7 @@

Property Value

IsBeingCalledCounter - +

@@ -417,7 +417,7 @@

Property Value

TaskNotInitialized - +

@@ -447,7 +447,7 @@

Property Value

TaskHasRemoteException - +

@@ -481,7 +481,7 @@

Methods

Execute - +

@@ -511,7 +511,7 @@

Returns

GetStartSignature - +

@@ -541,7 +541,7 @@

Returns

SetDoneSignature - +

@@ -572,7 +572,7 @@

Returns

@@ -588,7 +588,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoSequencer.html b/docs/apictrl/plc.AXOpen.Core.AxoSequencer.html index 306103a14..c1bc9dab4 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoSequencer.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoSequencer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoSequencer - +

@@ -292,7 +292,7 @@

Properties

SteppingMode - +

@@ -322,7 +322,7 @@

Property Value

SequenceMode - +

@@ -352,7 +352,7 @@

Property Value

CurrentOrder - +

@@ -382,7 +382,7 @@

Property Value

StepForwardCommand - +

@@ -412,7 +412,7 @@

Property Value

StepIn - +

@@ -442,7 +442,7 @@

Property Value

StepBackwardCommand - +

@@ -472,7 +472,7 @@

Property Value

BeforeStep - +

@@ -502,7 +502,7 @@

Property Value

CurrentStep - +

@@ -532,7 +532,7 @@

Property Value

AfterStep - +

@@ -562,7 +562,7 @@

Property Value

_configurationFlowOrder - +

@@ -592,7 +592,7 @@

Property Value

_numberOfConfiguredSteps - +

@@ -622,7 +622,7 @@

Property Value

_coordinatorState - +

@@ -652,7 +652,7 @@

Property Value

_step - +

@@ -682,7 +682,7 @@

Property Value

_openCycleCounter - +

@@ -712,7 +712,7 @@

Property Value

_closeCycleCounter - +

@@ -742,7 +742,7 @@

Property Value

_refBeforeStep - +

@@ -772,7 +772,7 @@

Property Value

_refCurrentStep - +

@@ -802,7 +802,7 @@

Property Value

_refAfterStep - +

@@ -836,7 +836,7 @@

Methods

Open - +

Opens sequencers operations.This method must be called prior to any other calls of this instance ofsequencer.

@@ -867,7 +867,7 @@

Returns

Execute - +

@@ -904,7 +904,7 @@

Returns

MoveNext - +

Moves the execution to the next step.

@@ -935,7 +935,7 @@

Returns

RequestStep - +

Terminates the currently executed step and initiates the RequestedStep to be executed

@@ -971,7 +971,7 @@

Returns

CompleteSequence - +

Completes (finishes) the execution of this sequencer and set the coordination state to Idle.If the SequenceMode of the sequencer is set to RunOnce, terminates also execution of the sequencer itself.

@@ -1002,7 +1002,7 @@

Returns

OnBeforeSequenceStart - +

Executes once when the sequence starts.

@@ -1033,7 +1033,7 @@

Returns

OnCompleteSequence - +

Executes once when the sequence is completed.

@@ -1064,7 +1064,7 @@

Returns

GetCoordinatorState - +

Gets the state of the coordinator

@@ -1095,7 +1095,7 @@

Returns

DetermineOrder - +

@@ -1130,7 +1130,7 @@

Returns

GetNumberOfConfiguredSteps - +

Gets the number of the configured steps in the sequence.

@@ -1161,7 +1161,7 @@

Returns

InvalidContext - +

@@ -1191,7 +1191,7 @@

Returns

InvalidContext - +

@@ -1226,7 +1226,7 @@

Returns

DisableAllSteppingComands - +

@@ -1256,7 +1256,7 @@

Returns

AbortCurrentStep - +

@@ -1286,7 +1286,7 @@

Returns

OnRestore - +

@@ -1316,7 +1316,7 @@

Returns

AndThen - +

@@ -1351,7 +1351,7 @@

Returns

Close - +

@@ -1382,7 +1382,7 @@

Returns

@@ -1398,7 +1398,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoSequencerContainer.html b/docs/apictrl/plc.AXOpen.Core.AxoSequencerContainer.html index 365ceb720..409a96286 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoSequencerContainer.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoSequencerContainer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoSequencerContainer - +

@@ -371,7 +371,7 @@

Methods

Run - +

@@ -406,7 +406,7 @@

Returns

Run - +

@@ -441,7 +441,7 @@

Returns

Main - +

@@ -472,7 +472,7 @@

Returns

@@ -488,7 +488,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoStep.html b/docs/apictrl/plc.AXOpen.Core.AxoStep.html index 7862deab0..f9938e840 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoStep.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoStep.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoStep - +

@@ -291,7 +291,7 @@

Properties

Order - +

@@ -321,7 +321,7 @@

Property Value

StepDescription - +

@@ -351,7 +351,7 @@

Property Value

IsActive - +

@@ -381,7 +381,7 @@

Property Value

IsEnabled - +

@@ -411,7 +411,7 @@

Property Value

_openCycleCount - +

@@ -441,7 +441,7 @@

Property Value

_isCalledJustOnceInThisPlcCycle - +

@@ -471,7 +471,7 @@

Property Value

_multipleStepCallInThisPlcCycle - +

@@ -501,7 +501,7 @@

Property Value

_noStepCallInPreviousPlcCycle - +

@@ -535,7 +535,7 @@

Methods

GetStepOrder - +

Returns the order of the execution.

@@ -566,7 +566,7 @@

Returns

SetStepOrder - +

Sets the order of the execution, if conditions are met.

@@ -604,7 +604,7 @@

Returns

IsCalledJustOnceInThisPlcCycle - +

Returns TRUE if the execution of the step is called only once in this PLC cycle.

@@ -635,7 +635,7 @@

Returns

Execute - +

Returns TRUE if instance of THIS step is curently executing

@@ -671,7 +671,7 @@

Returns

Execute - +

Returns TRUE if instance of THIS step is curently executing and the step is enabled

@@ -709,7 +709,7 @@

Returns

Execute - +

Returns TRUE if instance of THIS step is curently executing and the step is enabledand sets the description of the step

@@ -749,7 +749,7 @@

Returns

Execute - +

Returns TRUE if instance of THIS step is curently executingand sets the description of the step

@@ -787,7 +787,7 @@

Returns

CountCallsOfTheExecuteMethod - +

@@ -817,7 +817,7 @@

Returns

ExecuteInternal - +

@@ -854,7 +854,7 @@

Returns

SetIsActive - +

Sets the value of the IsActive variable

@@ -890,7 +890,7 @@

Returns

GetIsActive - +

Returns the value of the IsActive variable

@@ -921,7 +921,7 @@

Returns

SetIsEnabled - +

Sets the value of the IsEnabled variable

@@ -957,7 +957,7 @@

Returns

GetIsEnabled - +

Returns the value of the IsEnabled variable

@@ -989,7 +989,7 @@

Returns

@@ -1005,7 +1005,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoTask.html b/docs/apictrl/plc.AXOpen.Core.AxoTask.html index 1180cf5ac..4e907b17e 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoTask.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoTask - +

@@ -164,7 +164,7 @@

Properties

Status - +

Gets the state of this task.

@@ -195,7 +195,7 @@

Property Value

IsDisabled - +

Gets or sets whether this task is disabled for execution.

@@ -226,7 +226,7 @@

Property Value

RemoteInvoke - +

Remote requests for invoke of this task.When 'TRUE' this task will be invoked.

@@ -257,7 +257,7 @@

Property Value

RemoteRestore - +

Remote requests for restore of this task.When 'TRUE' this task will be restored.

@@ -288,7 +288,7 @@

Property Value

RemoteAbort - +

Remote requests for abort of this task.When 'TRUE' this task will be aborted.

@@ -319,7 +319,7 @@

Property Value

RemoteResume - +

Remote requests for resume of this task.When 'TRUE' this task will be resumed.

@@ -350,7 +350,7 @@

Property Value

StartSignature - +

Contains contex cycle number when this task started.

@@ -381,7 +381,7 @@

Property Value

Duration - +

Gets elapsed time of last task execution.

@@ -412,7 +412,7 @@

Property Value

StartTimeStamp - +

Gets date and time when the task started.

@@ -443,7 +443,7 @@

Property Value

ErrorDetails - +

Contains details about the error.

@@ -474,7 +474,7 @@

Property Value

_openCycleCountInvoke - +

@@ -504,7 +504,7 @@

Property Value

_openCycleCountExecute - +

@@ -534,7 +534,7 @@

Property Value

_taskTimer - +

@@ -564,7 +564,7 @@

Property Value

_CyclicExecuteIsNotCalled - +

Enable error message when task is not calling cyclically .

@@ -599,7 +599,7 @@

Methods

GetState - +

Gets the actual state of this task.

@@ -630,7 +630,7 @@

Returns

GetErrorDetails - +

@@ -660,7 +660,7 @@

Returns

IsReady - +

Gets true when the task is ready.

@@ -691,7 +691,7 @@

Returns

IsDone - +

Gets true when the task is done.

@@ -722,7 +722,7 @@

Returns

IsBusy - +

Gets true when the task is busy/executing.

@@ -753,7 +753,7 @@

Returns

IsAborted - +

Gets true when the task is aborted.

@@ -784,7 +784,7 @@

Returns

HasError - +

Gets true when the task has error.

@@ -815,7 +815,7 @@

Returns

IsNewInvokeCall - +

@@ -845,7 +845,7 @@

Returns

IsInvokeCalledInThisPlcCycle - +

@@ -875,7 +875,7 @@

Returns

WasInvokeCalledInPreviousPlcCycle - +

@@ -905,7 +905,7 @@

Returns

IsNewExecuteCall - +

@@ -935,7 +935,7 @@

Returns

IsExecuteCalledInThisPlcCycle - +

@@ -965,7 +965,7 @@

Returns

WasExecuteCalledInPreviousPlcCycle - +

@@ -995,7 +995,7 @@

Returns

UpdateState - +

@@ -1025,7 +1025,7 @@

Returns

Invoke - +

Invokes this task.

@@ -1056,7 +1056,7 @@

Returns

Restore - +

Restores this task.

@@ -1087,7 +1087,7 @@

Returns

DoneWhen - +

Makes this task to transition in Done statewhen Condition argument is TRUE.

@@ -1123,7 +1123,7 @@

Returns

Execute - +

Returns TRUE if the task is Busy, otherwise false.This method needs to be called cyclically.

@@ -1154,7 +1154,7 @@

Returns

LogTask - +

@@ -1193,7 +1193,7 @@

Returns

ThrowWhen - +

Makes this task enter into Error state, when HasErrorState argument is TRUEtask in error state stops its execution.

@@ -1229,7 +1229,7 @@

Returns

ThrowWhen - +

Makes this task enter into Error state, when HasErrorState argument is TRUEtask in error state stops its execution.

@@ -1267,7 +1267,7 @@

Returns

SetIsDisabled - +

Sets the value of the IsDisabled variable

@@ -1303,7 +1303,7 @@

Returns

GetIsDisabled - +

Returns the value of the IsDisabled variable

@@ -1334,7 +1334,7 @@

Returns

Abort - +

Aborts the execution of the task if running and sets its state to aborted.

@@ -1365,7 +1365,7 @@

Returns

Resume - +

Resume the execution of the task if aborted and sets its state to busy.

@@ -1396,7 +1396,7 @@

Returns

OnAbort - +

Executes once when the task is aborted.

@@ -1427,7 +1427,7 @@

Returns

OnResume - +

Executes once when the task is resumed.

@@ -1458,7 +1458,7 @@

Returns

OnDone - +

Executes once when the task reaches the Done state.

@@ -1489,7 +1489,7 @@

Returns

OnError - +

Executes once when the task reaches the Error state.

@@ -1520,7 +1520,7 @@

Returns

OnRestore - +

Executes once when the task is restored.

@@ -1551,7 +1551,7 @@

Returns

OnStart - +

Executes once when the task starts (at the moment of transition from the Kicking state into the Busy state).

@@ -1582,7 +1582,7 @@

Returns

WhileError - +

Executes repeatedly while the task is in Error state (and Execute() method is called).

@@ -1614,7 +1614,7 @@

Returns

@@ -1630,7 +1630,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoTextList.html b/docs/apictrl/plc.AXOpen.Core.AxoTextList.html index f81a134d8..269168737 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoTextList.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoTextList.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoTextList - +

@@ -129,7 +129,7 @@

Properties

Id - +

@@ -160,7 +160,7 @@

Property Value

@@ -176,7 +176,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.AxoToggleTask.html b/docs/apictrl/plc.AXOpen.Core.AxoToggleTask.html index 4917531f2..2b9b1c685 100644 --- a/docs/apictrl/plc.AXOpen.Core.AxoToggleTask.html +++ b/docs/apictrl/plc.AXOpen.Core.AxoToggleTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoToggleTask - +

@@ -164,7 +164,7 @@

Properties

State - +

@@ -194,7 +194,7 @@

Property Value

RemoteToggle - +

Remote request to toggle the state of this task.

@@ -225,7 +225,7 @@

Property Value

IsDisabled - +

Gets or sets whether this task is disabled for any manipulations.

@@ -256,7 +256,7 @@

Property Value

_openCycleCount - +

@@ -290,7 +290,7 @@

Methods

GetState - +

Gets the actual state of this task.

@@ -321,7 +321,7 @@

Returns

IsRunCalledInThisPlcCycle - +

@@ -351,7 +351,7 @@

Returns

WasRunCalledInPreviousPlcCycle - +

@@ -381,7 +381,7 @@

Returns

Run - +

This method needs to be called cyclically.

@@ -412,7 +412,7 @@

Returns

SetIsDisabled - +

Sets the value of the IsDisabled variable

@@ -448,7 +448,7 @@

Returns

GetIsDisabled - +

Returns the value of the IsDisabled variable

@@ -479,7 +479,7 @@

Returns

IsSwitchedOn - +

Returns TRUE if task is switched on

@@ -510,7 +510,7 @@

Returns

IsSwitchedOff - +

Returns TRUE if task is switched off

@@ -541,7 +541,7 @@

Returns

Toggle - +

Use to toggle the state of the '''AxoToggleTask'''.

@@ -572,7 +572,7 @@

Returns

SwitchOff - +

Use to set the state of the '''AxoToggleTask''' to the value '''FALSE'''.

@@ -603,7 +603,7 @@

Returns

SwitchOn - +

@@ -633,7 +633,7 @@

Returns

OnSwitchedOn - +

Executes ones when toggle task changes its state from '''FALSE''' to '''TRUE'''.

@@ -664,7 +664,7 @@

Returns

OnSwitchedOff - +

Executes ones when toggle task changes its state from '''TRUE''' to '''FALSE'''.

@@ -695,7 +695,7 @@

Returns

OnStateChanged - +

Executes ones when toggle task changes its state.

@@ -726,7 +726,7 @@

Returns

SwitchedOn - +

Executes while the task is in On state.

@@ -757,7 +757,7 @@

Returns

SwitchedOff - +

Executes while the task is in Off state.

@@ -789,7 +789,7 @@

Returns

@@ -805,7 +805,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoAlertDialogFormat.html b/docs/apictrl/plc.AXOpen.Core.IAxoAlertDialogFormat.html index 129f6717f..e6b5b5d4c 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoAlertDialogFormat.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoAlertDialogFormat.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoAlertDialogFormat - +

@@ -128,7 +128,7 @@

Methods

WithTitle - +

@@ -163,7 +163,7 @@

Returns

WithMessage - +

@@ -198,7 +198,7 @@

Returns

WithTimeToBurn - +

@@ -233,7 +233,7 @@

Returns

WithType - +

@@ -268,7 +268,7 @@

Returns

IsShown - +

@@ -299,7 +299,7 @@

Returns

@@ -315,7 +315,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoComponent.html b/docs/apictrl/plc.AXOpen.Core.IAxoComponent.html index ccb437d37..ee9076f4a 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoComponent.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoComponent.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoComponent - +

@@ -125,7 +125,7 @@

@@ -141,7 +141,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoContext.html b/docs/apictrl/plc.AXOpen.Core.IAxoContext.html index 2a636a4b9..7d8edbd19 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoContext.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoContext.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoContext - +

@@ -128,7 +128,7 @@

Methods

CreateIdentity - +

@@ -158,7 +158,7 @@

Returns

OpenCycleCount - +

@@ -188,7 +188,7 @@

Returns

GetRtc - +

@@ -218,7 +218,7 @@

Returns

InjectRtc - +

@@ -253,7 +253,7 @@

Returns

GetLogger - +

@@ -283,7 +283,7 @@

Returns

InjectLogger - +

@@ -319,7 +319,7 @@

Returns

@@ -335,7 +335,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoCoordinator.html b/docs/apictrl/plc.AXOpen.Core.IAxoCoordinator.html index 103683a80..97ad83673 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoCoordinator.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoCoordinator.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoCoordinator - +

@@ -128,7 +128,7 @@

Methods

GetCoordinatorState - +

@@ -158,7 +158,7 @@

Returns

MoveNext - +

@@ -188,7 +188,7 @@

Returns

RequestStep - +

@@ -224,7 +224,7 @@

Returns

@@ -240,7 +240,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoDialogAnswer.html b/docs/apictrl/plc.AXOpen.Core.IAxoDialogAnswer.html index 00807f02c..7faa2a62d 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoDialogAnswer.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoDialogAnswer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDialogAnswer - +

@@ -128,7 +128,7 @@

Methods

Answer - +

@@ -159,7 +159,7 @@

Returns

@@ -175,7 +175,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoDialogFormat.html b/docs/apictrl/plc.AXOpen.Core.IAxoDialogFormat.html index 25200c6f6..ee46b6a9d 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoDialogFormat.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoDialogFormat.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDialogFormat - +

@@ -128,7 +128,7 @@

Methods

WithCaption - +

@@ -163,7 +163,7 @@

Returns

WithOk - +

@@ -193,7 +193,7 @@

Returns

WithText - +

@@ -228,7 +228,7 @@

Returns

WithType - +

@@ -263,7 +263,7 @@

Returns

WithYesNo - +

@@ -293,7 +293,7 @@

Returns

WithYesNoCancel - +

@@ -324,7 +324,7 @@

Returns

@@ -340,7 +340,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoManuallyControllable.html b/docs/apictrl/plc.AXOpen.Core.IAxoManuallyControllable.html index 822002c73..a52baae8b 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoManuallyControllable.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoManuallyControllable.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoManuallyControllable - +

@@ -128,7 +128,7 @@

Methods

ActivateManualControl - +

@@ -158,7 +158,7 @@

Returns

IsManuallyControllable - +

@@ -189,7 +189,7 @@

Returns

@@ -205,7 +205,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoMomentaryTask.html b/docs/apictrl/plc.AXOpen.Core.IAxoMomentaryTask.html index afcd31665..43276efd0 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoMomentaryTask.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoMomentaryTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoMomentaryTask - +

@@ -128,7 +128,7 @@

Methods

IsSwitchedOn - +

Returns TRUE if task is switched on

@@ -159,7 +159,7 @@

Returns

IsSwitchedOff - +

Returns TRUE if task is switched off

@@ -191,7 +191,7 @@

Returns

@@ -207,7 +207,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoObject.html b/docs/apictrl/plc.AXOpen.Core.IAxoObject.html index 3bbbadb83..02c496061 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoObject.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoObject.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoObject - +

@@ -128,7 +128,7 @@

Methods

GetIdentity - +

@@ -158,7 +158,7 @@

Returns

GetContext - +

@@ -189,7 +189,7 @@

Returns

@@ -205,7 +205,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoSequencer.html b/docs/apictrl/plc.AXOpen.Core.IAxoSequencer.html index 95ba6778b..b113246ed 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoSequencer.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoSequencer.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoSequencer - +

@@ -125,7 +125,7 @@

@@ -141,7 +141,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoStep.html b/docs/apictrl/plc.AXOpen.Core.IAxoStep.html index 654bf1138..3dcf54285 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoStep.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoStep.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoStep - +

@@ -128,7 +128,7 @@

Methods

GetStepOrder - +

@@ -158,7 +158,7 @@

Returns

SetStepOrder - +

@@ -195,7 +195,7 @@

Returns

IsCalledJustOnceInThisPlcCycle - +

@@ -225,7 +225,7 @@

Returns

SetIsActive - +

@@ -260,7 +260,7 @@

Returns

GetIsActive - +

@@ -290,7 +290,7 @@

Returns

SetIsEnabled - +

@@ -325,7 +325,7 @@

Returns

GetIsEnabled - +

@@ -356,7 +356,7 @@

Returns

@@ -372,7 +372,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoTask.html b/docs/apictrl/plc.AXOpen.Core.IAxoTask.html index 51738cc9c..49b297f02 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoTask.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoTask - +

@@ -128,7 +128,7 @@

Methods

Execute - +

@@ -158,7 +158,7 @@

Returns

Invoke - +

@@ -188,7 +188,7 @@

Returns

Restore - +

@@ -218,7 +218,7 @@

Returns

Abort - +

@@ -248,7 +248,7 @@

Returns

Resume - +

@@ -278,7 +278,7 @@

Returns

DoneWhen - +

@@ -313,7 +313,7 @@

Returns

ThrowWhen - +

@@ -348,7 +348,7 @@

Returns

IsReady - +

@@ -378,7 +378,7 @@

Returns

IsDone - +

@@ -408,7 +408,7 @@

Returns

IsBusy - +

@@ -438,7 +438,7 @@

Returns

HasError - +

@@ -469,7 +469,7 @@

Returns

@@ -485,7 +485,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoTaskInt.html b/docs/apictrl/plc.AXOpen.Core.IAxoTaskInt.html index 712d59faa..b7bee2753 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoTaskInt.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoTaskInt.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoTaskInt - +

@@ -128,7 +128,7 @@

Methods

SetIsDisabled - +

@@ -163,7 +163,7 @@

Returns

GetIsDisabled - +

@@ -194,7 +194,7 @@

Returns

@@ -210,7 +210,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoTaskState.html b/docs/apictrl/plc.AXOpen.Core.IAxoTaskState.html index 67db8e183..a8bb03cf3 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoTaskState.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoTaskState.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoTaskState - +

@@ -128,7 +128,7 @@

Methods

IsDone - +

@@ -158,7 +158,7 @@

Returns

IsBusy - +

@@ -188,7 +188,7 @@

Returns

IsAborted - +

@@ -218,7 +218,7 @@

Returns

HasError - +

@@ -248,7 +248,7 @@

Returns

GetErrorDetails - +

@@ -279,7 +279,7 @@

Returns

@@ -295,7 +295,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IAxoToggleTask.html b/docs/apictrl/plc.AXOpen.Core.IAxoToggleTask.html index d89813834..4980f4a2b 100644 --- a/docs/apictrl/plc.AXOpen.Core.IAxoToggleTask.html +++ b/docs/apictrl/plc.AXOpen.Core.IAxoToggleTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoToggleTask - +

@@ -128,7 +128,7 @@

Methods

Toggle - +

Use to toggle the state of the '''AxoToggleTask'''.

@@ -159,7 +159,7 @@

Returns

SwitchOff - +

Use to set the state of the '''AxoToggleTask''' to the value '''FALSE'''.

@@ -190,7 +190,7 @@

Returns

SwitchOn - +

Use to set the state of the '''AxoToggleTask''' to the value '''TRUE'''.

@@ -221,7 +221,7 @@

Returns

IsSwitchedOn - +

Returns TRUE if task is switched on

@@ -252,7 +252,7 @@

Returns

IsSwitchedOff - +

Returns TRUE if task is switched off

@@ -284,7 +284,7 @@

Returns

@@ -300,7 +300,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.IsNullContext(IAxoContext).html b/docs/apictrl/plc.AXOpen.Core.IsNullContext(IAxoContext).html index c46a18597..4a07bfee7 100644 --- a/docs/apictrl/plc.AXOpen.Core.IsNullContext(IAxoContext).html +++ b/docs/apictrl/plc.AXOpen.Core.IsNullContext(IAxoContext).html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Delegate IsNullContext - +

@@ -135,7 +135,7 @@

Returns

@@ -151,7 +151,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core._NULL_CONTEXT.html b/docs/apictrl/plc.AXOpen.Core._NULL_CONTEXT.html index 00222725f..3bd31038b 100644 --- a/docs/apictrl/plc.AXOpen.Core._NULL_CONTEXT.html +++ b/docs/apictrl/plc.AXOpen.Core._NULL_CONTEXT.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _NULL_CONTEXT - +

@@ -136,7 +136,7 @@

Properties

NULL_RTC - +

@@ -166,7 +166,7 @@

Property Value

NULL_LOGGER - +

@@ -200,7 +200,7 @@

Methods

CreateIdentity - +

@@ -230,7 +230,7 @@

Returns

OpenCycleCount - +

@@ -260,7 +260,7 @@

Returns

GetRtc - +

@@ -290,7 +290,7 @@

Returns

InjectRtc - +

@@ -325,7 +325,7 @@

Returns

GetLogger - +

@@ -355,7 +355,7 @@

Returns

InjectLogger - +

@@ -391,7 +391,7 @@

Returns

@@ -407,7 +407,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core._NULL_LOGGER.html b/docs/apictrl/plc.AXOpen.Core._NULL_LOGGER.html index 7c69f66b3..0dc50b496 100644 --- a/docs/apictrl/plc.AXOpen.Core._NULL_LOGGER.html +++ b/docs/apictrl/plc.AXOpen.Core._NULL_LOGGER.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _NULL_LOGGER - +

@@ -136,7 +136,7 @@

Methods

Log - +

@@ -175,7 +175,7 @@

Returns

Log - +

@@ -212,7 +212,7 @@

Returns

SetMinimumLevel - +

@@ -248,7 +248,7 @@

Returns

@@ -264,7 +264,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core._NULL_OBJECT.html b/docs/apictrl/plc.AXOpen.Core._NULL_OBJECT.html index 7f3a59e07..53de2cbc3 100644 --- a/docs/apictrl/plc.AXOpen.Core._NULL_OBJECT.html +++ b/docs/apictrl/plc.AXOpen.Core._NULL_OBJECT.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _NULL_OBJECT - +

@@ -136,7 +136,7 @@

Properties

NULL_CONTEXT - +

@@ -170,7 +170,7 @@

Methods

GetIdentity - +

@@ -200,7 +200,7 @@

Returns

GetContext - +

@@ -231,7 +231,7 @@

Returns

@@ -247,7 +247,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core._NULL_RTC.html b/docs/apictrl/plc.AXOpen.Core._NULL_RTC.html index 9f3e0732c..acb72854b 100644 --- a/docs/apictrl/plc.AXOpen.Core._NULL_RTC.html +++ b/docs/apictrl/plc.AXOpen.Core._NULL_RTC.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class _NULL_RTC - +

@@ -136,7 +136,7 @@

Properties

_null_time - +

@@ -170,7 +170,7 @@

Methods

NowUTC - +

@@ -201,7 +201,7 @@

Returns

@@ -217,7 +217,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.eAxoSequenceMode.html b/docs/apictrl/plc.AXOpen.Core.eAxoSequenceMode.html index 189b92cc6..b02a644d2 100644 --- a/docs/apictrl/plc.AXOpen.Core.eAxoSequenceMode.html +++ b/docs/apictrl/plc.AXOpen.Core.eAxoSequenceMode.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eAxoSequenceMode - +

@@ -134,7 +134,7 @@

Fields @@ -150,7 +150,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.eAxoSteppingMode.html b/docs/apictrl/plc.AXOpen.Core.eAxoSteppingMode.html index 6d700cad4..63e14929b 100644 --- a/docs/apictrl/plc.AXOpen.Core.eAxoSteppingMode.html +++ b/docs/apictrl/plc.AXOpen.Core.eAxoSteppingMode.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoSteppingMode - +

@@ -134,7 +134,7 @@

Fields @@ -150,7 +150,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.eAxoTaskState.html b/docs/apictrl/plc.AXOpen.Core.eAxoTaskState.html index 0826ec235..457aac7de 100644 --- a/docs/apictrl/plc.AXOpen.Core.eAxoTaskState.html +++ b/docs/apictrl/plc.AXOpen.Core.eAxoTaskState.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoTaskState - +

@@ -142,7 +142,7 @@

Fields @@ -158,7 +158,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.eDialogAnswer.html b/docs/apictrl/plc.AXOpen.Core.eDialogAnswer.html index 93943ab99..58de58631 100644 --- a/docs/apictrl/plc.AXOpen.Core.eDialogAnswer.html +++ b/docs/apictrl/plc.AXOpen.Core.eDialogAnswer.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eDialogAnswer - +

@@ -138,7 +138,7 @@

Fields @@ -154,7 +154,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.eDialogType.html b/docs/apictrl/plc.AXOpen.Core.eDialogType.html index 2b2fdceb3..84389ffd9 100644 --- a/docs/apictrl/plc.AXOpen.Core.eDialogType.html +++ b/docs/apictrl/plc.AXOpen.Core.eDialogType.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eDialogType - +

@@ -138,7 +138,7 @@

Fields @@ -154,7 +154,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Core.html b/docs/apictrl/plc.AXOpen.Core.html index f687da073..989e6e0aa 100644 --- a/docs/apictrl/plc.AXOpen.Core.html +++ b/docs/apictrl/plc.AXOpen.Core.html @@ -17,7 +17,7 @@ - + @@ -257,7 +257,7 @@

@@ -273,7 +273,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.AxoDataCrudTask.html b/docs/apictrl/plc.AXOpen.Data.AxoDataCrudTask.html index c23564a74..6053b0755 100644 --- a/docs/apictrl/plc.AXOpen.Data.AxoDataCrudTask.html +++ b/docs/apictrl/plc.AXOpen.Data.AxoDataCrudTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDataCrudTask - +

@@ -333,7 +333,7 @@

Properties

CrudOperation - +

Gets or sets the type of CRUD operation to be perfomed.

@@ -368,7 +368,7 @@

Methods

Invoke - +

Invokes this task.

@@ -409,7 +409,7 @@

Returns

@@ -425,7 +425,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.AxoDataEntity.html b/docs/apictrl/plc.AXOpen.Data.AxoDataEntity.html index 48dd2e9d3..7c534561e 100644 --- a/docs/apictrl/plc.AXOpen.Data.AxoDataEntity.html +++ b/docs/apictrl/plc.AXOpen.Data.AxoDataEntity.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataEntity - +

@@ -136,7 +136,7 @@

Properties

DataEntityId - +

Gets or sets data entity identifier.

@@ -168,7 +168,7 @@

Property Value

@@ -184,7 +184,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.AxoDataExchange.html b/docs/apictrl/plc.AXOpen.Data.AxoDataExchange.html index 9a61bb816..be5522dd0 100644 --- a/docs/apictrl/plc.AXOpen.Data.AxoDataExchange.html +++ b/docs/apictrl/plc.AXOpen.Data.AxoDataExchange.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchange - +

@@ -166,7 +166,7 @@

Properties

Operation - +

@@ -200,7 +200,7 @@

Methods

Run - +

Runs intialization and cyclical handling of this AxoDataExchange.

@@ -237,7 +237,7 @@

Returns

Run - +

Runs intialization and cyclical handling of this AxoDataExchange.

@@ -274,7 +274,7 @@

Returns

Create - +

Creates new entry into the remote repository from data entity of this AxoDataExchange.

@@ -311,7 +311,7 @@

Returns

Read - +

Reads data from remote repository and copies them into data entity of this AxoDataExchange.

@@ -348,7 +348,7 @@

Returns

Update - +

Updates data in remote repository from data entiry of this AxoDataExchange.

@@ -385,7 +385,7 @@

Returns

Delete - +

Deletes data entry with given ID from remote repository.

@@ -422,7 +422,7 @@

Returns

EntityExist - +

Check if data entry exists with given ID in remote repository.

@@ -459,7 +459,7 @@

Returns

CreateOrUpdate - +

Creates or Updates data in remote repository from data entiry of this AxoDataExchange.

@@ -496,7 +496,7 @@

Returns

Restore - +

Restores all tasks associated with this object.

@@ -528,7 +528,7 @@

Returns

@@ -544,7 +544,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.AxoDataExchangeBase.html b/docs/apictrl/plc.AXOpen.Data.AxoDataExchangeBase.html index 8521f40da..d954e3ea0 100644 --- a/docs/apictrl/plc.AXOpen.Data.AxoDataExchangeBase.html +++ b/docs/apictrl/plc.AXOpen.Data.AxoDataExchangeBase.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataExchangeBase - +

@@ -161,7 +161,7 @@

- Edit this page + Edit this page

@@ -177,7 +177,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.AxoDataExchangeTask.html b/docs/apictrl/plc.AXOpen.Data.AxoDataExchangeTask.html index 766f31788..004daec16 100644 --- a/docs/apictrl/plc.AXOpen.Data.AxoDataExchangeTask.html +++ b/docs/apictrl/plc.AXOpen.Data.AxoDataExchangeTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoDataExchangeTask - +

@@ -320,7 +320,7 @@

Properties

DataEntityIdentifier - +

@@ -350,7 +350,7 @@

Property Value

_exist - +

@@ -384,7 +384,7 @@

Methods

Invoke - +

@@ -419,7 +419,7 @@

Returns

Exist - +

@@ -450,7 +450,7 @@

Returns

@@ -466,7 +466,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.AxoDataFragmentExchange.html b/docs/apictrl/plc.AXOpen.Data.AxoDataFragmentExchange.html index cc45bc6cc..8cdb682d9 100644 --- a/docs/apictrl/plc.AXOpen.Data.AxoDataFragmentExchange.html +++ b/docs/apictrl/plc.AXOpen.Data.AxoDataFragmentExchange.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataFragmentExchange - +

@@ -166,7 +166,7 @@

Properties

Operation - +

@@ -200,7 +200,7 @@

Methods

Create - +

Creates new entry into each associated remote repository from respective data entity.

@@ -236,7 +236,7 @@

Returns

Read - +

Reads data from each associated remote repository and copies it into respective data entities.

@@ -272,7 +272,7 @@

Returns

Update - +

Updates data in each associated remote repository from respective data entities.

@@ -308,7 +308,7 @@

Returns

Delete - +

Deletes data entry from each associated remote repository with given ID.

@@ -344,7 +344,7 @@

Returns

EntityExist - +

Check if data entry exists in each associated remote repository with given ID.

@@ -380,7 +380,7 @@

Returns

CreateOrUpdate - +

Creates or Updates data entry from each associated remote repository with given ID.

@@ -416,7 +416,7 @@

Returns

Restore - +

@@ -446,7 +446,7 @@

Returns

Run - +

Runs intialization and cyclical handling of this AxoDataExchange.

@@ -483,7 +483,7 @@

Returns

Run - +

Runs intialization and cyclical handling of this AxoDataExchange.

@@ -521,7 +521,7 @@

Returns

@@ -537,7 +537,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.IAxoDataEntity.html b/docs/apictrl/plc.AXOpen.Data.IAxoDataEntity.html index 9842c7424..1062815fc 100644 --- a/docs/apictrl/plc.AXOpen.Data.IAxoDataEntity.html +++ b/docs/apictrl/plc.AXOpen.Data.IAxoDataEntity.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDataEntity - +

@@ -125,7 +125,7 @@

- Edit this page + Edit this page

@@ -141,7 +141,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.IAxoDataExchange.html b/docs/apictrl/plc.AXOpen.Data.IAxoDataExchange.html index e7b2a04fd..5ffeb8d92 100644 --- a/docs/apictrl/plc.AXOpen.Data.IAxoDataExchange.html +++ b/docs/apictrl/plc.AXOpen.Data.IAxoDataExchange.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoDataExchange - +

@@ -129,7 +129,7 @@

Methods

Create - +

@@ -164,7 +164,7 @@

Returns

Read - +

@@ -199,7 +199,7 @@

Returns

Update - +

@@ -234,7 +234,7 @@

Returns

Delete - +

@@ -269,7 +269,7 @@

Returns

EntityExist - +

@@ -304,7 +304,7 @@

Returns

CreateOrUpdate - +

@@ -339,7 +339,7 @@

Returns

Restore - +

@@ -369,7 +369,7 @@

Returns

Run - +

@@ -404,7 +404,7 @@

Returns

Run - +

@@ -440,7 +440,7 @@

Returns

@@ -456,7 +456,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.IAxoEntityExistTaskState.html b/docs/apictrl/plc.AXOpen.Data.IAxoEntityExistTaskState.html index 6eed6d30f..61314aeca 100644 --- a/docs/apictrl/plc.AXOpen.Data.IAxoEntityExistTaskState.html +++ b/docs/apictrl/plc.AXOpen.Data.IAxoEntityExistTaskState.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoEntityExistTaskState - +

@@ -128,7 +128,7 @@

Methods

Exist - +

@@ -159,7 +159,7 @@

Returns

@@ -175,7 +175,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.eCrudOperation.html b/docs/apictrl/plc.AXOpen.Data.eCrudOperation.html index 80e17d752..0022ac674 100644 --- a/docs/apictrl/plc.AXOpen.Data.eCrudOperation.html +++ b/docs/apictrl/plc.AXOpen.Data.eCrudOperation.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eCrudOperation - +

@@ -140,7 +140,7 @@

Fields @@ -156,7 +156,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Data.html b/docs/apictrl/plc.AXOpen.Data.html index 50f9077ca..ba00df6e6 100644 --- a/docs/apictrl/plc.AXOpen.Data.html +++ b/docs/apictrl/plc.AXOpen.Data.html @@ -17,7 +17,7 @@ - + @@ -157,7 +157,7 @@

@@ -173,7 +173,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.AxoAi.html b/docs/apictrl/plc.AXOpen.Elements.AxoAi.html index a12858779..bc2260688 100644 --- a/docs/apictrl/plc.AXOpen.Elements.AxoAi.html +++ b/docs/apictrl/plc.AXOpen.Elements.AxoAi.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoAi - +

@@ -192,7 +192,7 @@

Properties

_config - +

@@ -222,7 +222,7 @@

Property Value

_status - +

@@ -252,7 +252,7 @@

Property Value

_rawRange - +

@@ -282,7 +282,7 @@

Property Value

_realRange - +

@@ -312,7 +312,7 @@

Property Value

_scaled - +

@@ -342,7 +342,7 @@

Property Value

_messengerDivisionByZero - +

@@ -372,7 +372,7 @@

Property Value

_messengerGainNotDefined - +

@@ -402,7 +402,7 @@

Property Value

_messengerOutOfBoundaries - +

@@ -432,7 +432,7 @@

Property Value

_signal - +

@@ -466,7 +466,7 @@

Methods

Run - +

Method, which scales input signal based on configuration

@@ -504,7 +504,7 @@

Returns

Restore - +

@@ -534,7 +534,7 @@

Returns

ManualControl - +

@@ -565,7 +565,7 @@

Returns

@@ -581,7 +581,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.AxoAiConfig.html b/docs/apictrl/plc.AXOpen.Elements.AxoAiConfig.html index 459c62bd9..db1b2f640 100644 --- a/docs/apictrl/plc.AXOpen.Elements.AxoAiConfig.html +++ b/docs/apictrl/plc.AXOpen.Elements.AxoAiConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAiConfig - +

@@ -129,7 +129,7 @@

Properties

RawLow - +

@@ -159,7 +159,7 @@

Property Value

RawHigh - +

@@ -189,7 +189,7 @@

Property Value

RealLow - +

@@ -219,7 +219,7 @@

Property Value

RealHigh - +

@@ -249,7 +249,7 @@

Property Value

Gain - +

@@ -279,7 +279,7 @@

Property Value

Offset - +

@@ -310,7 +310,7 @@

Property Value

@@ -326,7 +326,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.AxoAiStatus.html b/docs/apictrl/plc.AXOpen.Elements.AxoAiStatus.html index 9a4f60b02..ff000f0a3 100644 --- a/docs/apictrl/plc.AXOpen.Elements.AxoAiStatus.html +++ b/docs/apictrl/plc.AXOpen.Elements.AxoAiStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAiStatus - +

@@ -130,7 +130,7 @@

Properties

RawRange - +

@@ -160,7 +160,7 @@

Property Value

RealRange - +

@@ -190,7 +190,7 @@

Property Value

Scaled - +

@@ -221,7 +221,7 @@

Property Value

@@ -237,7 +237,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.AxoAo.html b/docs/apictrl/plc.AXOpen.Elements.AxoAo.html index 31ed46eb8..b6e8f218b 100644 --- a/docs/apictrl/plc.AXOpen.Elements.AxoAo.html +++ b/docs/apictrl/plc.AXOpen.Elements.AxoAo.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAo - +

@@ -192,7 +192,7 @@

Properties

_requiredValue - +

@@ -222,7 +222,7 @@

Property Value

_config - +

@@ -252,7 +252,7 @@

Property Value

_status - +

@@ -282,7 +282,7 @@

Property Value

_rawRange - +

@@ -312,7 +312,7 @@

Property Value

_realRange - +

@@ -342,7 +342,7 @@

Property Value

_unscaled - +

@@ -372,7 +372,7 @@

Property Value

_messengerDivisionByZero - +

@@ -402,7 +402,7 @@

Property Value

_messengerGainNotDefined - +

@@ -432,7 +432,7 @@

Property Value

_messengerOutOfBoundaries - +

@@ -462,7 +462,7 @@

Property Value

_signal - +

@@ -496,7 +496,7 @@

Methods

Run - +

Method, which unscales input signal based on configuration and writes it to output

@@ -532,7 +532,7 @@

Returns

Restore - +

@@ -562,7 +562,7 @@

Returns

ManualControl - +

@@ -593,7 +593,7 @@

Returns

@@ -609,7 +609,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.AxoAoConfig.html b/docs/apictrl/plc.AXOpen.Elements.AxoAoConfig.html index 8250d7115..6534d6878 100644 --- a/docs/apictrl/plc.AXOpen.Elements.AxoAoConfig.html +++ b/docs/apictrl/plc.AXOpen.Elements.AxoAoConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAoConfig - +

@@ -130,7 +130,7 @@

Properties

RawLow - +

@@ -160,7 +160,7 @@

Property Value

RawHigh - +

@@ -190,7 +190,7 @@

Property Value

RealLow - +

@@ -220,7 +220,7 @@

Property Value

RealHigh - +

@@ -250,7 +250,7 @@

Property Value

Gain - +

@@ -280,7 +280,7 @@

Property Value

Offset - +

@@ -311,7 +311,7 @@

Property Value

@@ -327,7 +327,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.AxoAoStatus.html b/docs/apictrl/plc.AXOpen.Elements.AxoAoStatus.html index be1d1ee1b..a32fe1aaf 100644 --- a/docs/apictrl/plc.AXOpen.Elements.AxoAoStatus.html +++ b/docs/apictrl/plc.AXOpen.Elements.AxoAoStatus.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAoStatus - +

@@ -130,7 +130,7 @@

Properties

RawRange - +

@@ -160,7 +160,7 @@

Property Value

RealRange - +

@@ -190,7 +190,7 @@

Property Value

Unscaled - +

@@ -221,7 +221,7 @@

Property Value

@@ -237,7 +237,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.AxoDi.html b/docs/apictrl/plc.AXOpen.Elements.AxoDi.html index 29dc8b386..f57340564 100644 --- a/docs/apictrl/plc.AXOpen.Elements.AxoDi.html +++ b/docs/apictrl/plc.AXOpen.Elements.AxoDi.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDi - +

@@ -192,7 +192,7 @@

Properties

_inSignal - +

@@ -222,7 +222,7 @@

Property Value

_isTrueTask - +

@@ -252,7 +252,7 @@

Property Value

_isFalseTask - +

@@ -282,7 +282,7 @@

Property Value

_messengerInfoPositive - +

@@ -312,7 +312,7 @@

Property Value

_messengerInfoNegative - +

@@ -346,7 +346,7 @@

Methods

Restore - +

@@ -376,7 +376,7 @@

Returns

ManualControl - +

@@ -406,7 +406,7 @@

Returns

Run - +

Method, which implement logic for checking of digital input

@@ -444,7 +444,7 @@

Returns

IsTrue - +

Returns TRUE if signal is on. It creates alarm otherwise.

@@ -475,7 +475,7 @@

Returns

IsFalse - +

Returns TRUE if signal is off. It creates alarm otherwise.

@@ -507,7 +507,7 @@

Returns

@@ -523,7 +523,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.AxoDo.html b/docs/apictrl/plc.AXOpen.Elements.AxoDo.html index 816a6b7dd..4447472ad 100644 --- a/docs/apictrl/plc.AXOpen.Elements.AxoDo.html +++ b/docs/apictrl/plc.AXOpen.Elements.AxoDo.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDo - +

@@ -192,7 +192,7 @@

Properties

_signal - +

@@ -222,7 +222,7 @@

Property Value

_setTask - +

@@ -252,7 +252,7 @@

Property Value

_resetTask - +

@@ -282,7 +282,7 @@

Property Value

_messengerInfoPositive - +

@@ -312,7 +312,7 @@

Property Value

_messengerInfoNegative - +

@@ -346,7 +346,7 @@

Methods

Restore - +

@@ -376,7 +376,7 @@

Returns

ManualControl - +

@@ -406,7 +406,7 @@

Returns

Run - +

Method, which sets or reset input/output value

@@ -442,7 +442,7 @@

Returns

Set - +

@@ -472,7 +472,7 @@

Returns

Reset - +

@@ -502,7 +502,7 @@

Returns

IsTrue - +

@@ -532,7 +532,7 @@

Returns

IsFalse - +

@@ -563,7 +563,7 @@

Returns

@@ -579,7 +579,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Elements.html b/docs/apictrl/plc.AXOpen.Elements.html index 5e552668e..9fba6c700 100644 --- a/docs/apictrl/plc.AXOpen.Elements.html +++ b/docs/apictrl/plc.AXOpen.Elements.html @@ -17,7 +17,7 @@ - + @@ -143,7 +143,7 @@

@@ -159,7 +159,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoAnalogueInspector.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoAnalogueInspector.html index ce0378b76..9929dedaf 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoAnalogueInspector.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoAnalogueInspector.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoAnalogueInspector - +

@@ -213,7 +213,7 @@

Properties

_data - +

@@ -243,7 +243,7 @@

Property Value

_lastOutValue - +

@@ -277,7 +277,7 @@

Methods

Inspect - +

Inspection method, which contains main logic of inspection.

@@ -315,7 +315,7 @@

Returns

WithCoordinator - +

Set coordinator to this instance

@@ -351,7 +351,7 @@

Returns

OnDone - +

If inspection fails, set result to data

@@ -382,7 +382,7 @@

Returns

Data - +

Set coordinator to this instance

@@ -414,7 +414,7 @@

Returns

@@ -430,7 +430,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoAnalogueInspectorData.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoAnalogueInspectorData.html index 6fd60f89e..73976450f 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoAnalogueInspectorData.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoAnalogueInspectorData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoAnalogueInspectorData - +

@@ -164,7 +164,7 @@

Properties

RequiredMin - +

@@ -194,7 +194,7 @@

Property Value

DetectedStatus - +

@@ -224,7 +224,7 @@

Property Value

RequiredMax - +

@@ -255,7 +255,7 @@

Property Value

@@ -271,7 +271,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoComprehensiveResult.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoComprehensiveResult.html index d4a6e3879..00cd61931 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoComprehensiveResult.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoComprehensiveResult.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoComprehensiveResult - +

@@ -136,7 +136,7 @@

Properties

Result - +

@@ -166,7 +166,7 @@

Property Value

Failures - +

@@ -196,7 +196,7 @@

Property Value

ErrorCodes - +

@@ -230,7 +230,7 @@

Methods

GetResult - +

Get the overall result

@@ -261,7 +261,7 @@

Returns

GetFailures - +

Get FailuresTODO: not implemented yet

@@ -292,7 +292,7 @@

Returns

GetErrorCodes - +

Get error codesTODO: not implemented yet

@@ -323,7 +323,7 @@

Returns

SetResult - +

Set overall result

@@ -359,7 +359,7 @@

Returns

SetFailures - +

Set failures

@@ -395,7 +395,7 @@

Returns

SetErrorCodes - +

Set error codes

@@ -432,7 +432,7 @@

Returns

@@ -448,7 +448,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoDataInspector.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoDataInspector.html index 49c1c38a3..73db295cd 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoDataInspector.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoDataInspector.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataInspector - +

@@ -213,7 +213,7 @@

Properties

_data - +

@@ -243,7 +243,7 @@

Property Value

_lastOutValue - +

@@ -277,7 +277,7 @@

Methods

Inspect - +

Inspection method, which contains main logic of inspection.

@@ -315,7 +315,7 @@

Returns

WithCoordinator - +

Set coordinator to this instance

@@ -351,7 +351,7 @@

Returns

OnDone - +

If inspection fails, set result to data

@@ -382,7 +382,7 @@

Returns

IsCharNumber - +

Check, if character is a number

@@ -418,7 +418,7 @@

Returns

Data - +

Set coordinator to this instance

@@ -450,7 +450,7 @@

Returns

@@ -466,7 +466,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoDataInspectorData.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoDataInspectorData.html index d4dd61f75..e8d0fa226 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoDataInspectorData.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoDataInspectorData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDataInspectorData - +

@@ -164,7 +164,7 @@

Properties

RequiredStatus - +

@@ -194,7 +194,7 @@

Property Value

DetectedStatus - +

@@ -224,7 +224,7 @@

Property Value

StarNotationEnabled - +

@@ -255,7 +255,7 @@

Property Value

@@ -271,7 +271,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoDigitalInspector.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoDigitalInspector.html index cb74b9d8a..6591e65f9 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoDigitalInspector.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoDigitalInspector.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDigitalInspector - +

@@ -213,7 +213,7 @@

Properties

_data - +

@@ -247,7 +247,7 @@

Methods

Inspect - +

Inspection method, which contains main logic of inspection.

@@ -285,7 +285,7 @@

Returns

OnDone - +

If inspection fails, set result to data

@@ -316,7 +316,7 @@

Returns

WithCoordinator - +

Set coordinator to this instance

@@ -352,7 +352,7 @@

Returns

Data - +

Set coordinator to this instance

@@ -384,7 +384,7 @@

Returns

@@ -400,7 +400,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoDigitalInspectorData.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoDigitalInspectorData.html index 5e6dfcd75..e226545c7 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoDigitalInspectorData.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoDigitalInspectorData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoDigitalInspectorData - +

@@ -164,7 +164,7 @@

Properties

RequiredStatus - +

@@ -194,7 +194,7 @@

Property Value

DetectedStatus - +

@@ -225,7 +225,7 @@

Property Value

@@ -241,7 +241,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoInspector.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoInspector.html index 74cb3decf..665921569 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoInspector.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoInspector.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInspector - +

@@ -166,7 +166,7 @@

Properties

_inspectorTask - +

@@ -196,7 +196,7 @@

Property Value

_coordinator - +

@@ -226,7 +226,7 @@

Property Value

_isOverInspected - +

@@ -256,7 +256,7 @@

Property Value

_busy - +

@@ -286,7 +286,7 @@

Property Value

_commonData - +

@@ -316,7 +316,7 @@

Property Value

_originalOverallResult - +

@@ -350,7 +350,7 @@

Methods

CheckOverInspection - +

Check, if data are overinspected (attempts of inspections is larger than maximum number of allowed retries)

@@ -381,7 +381,7 @@

Returns

IsOverInspected - +

Gets true when this inspection overruns max number of inspections.

@@ -412,7 +412,7 @@

Returns

_WithCoordinator - +

Set passed instance of iAxoCoordinator to this inspector.This method can be called only in derived classes.

@@ -448,7 +448,7 @@

Returns

OnFail - +

Returns this object defined by IOnFail interface

@@ -479,7 +479,7 @@

Returns

Dialog - +

Calls inspector dialog with required input

@@ -517,7 +517,7 @@

Returns

RetryWithStep - +

When inspection is done, retry provided step

@@ -553,7 +553,7 @@

Returns

CarryOn - +

When inspection is done, continue to next step.

@@ -584,7 +584,7 @@

Returns

TerminateWithStep - +

When inspection is done, terminate provided step

@@ -620,7 +620,7 @@

Returns

UpdateComprehensiveResult - +

Update commmon comprehensive result, which can be used across multiple inspectorsUpdates comprehensive result. The comprehensive result is set to Failed when any inspection fails or is inconclusive.Any bypassed or excluded inspections are not taken into account.

@@ -651,7 +651,7 @@

Returns

RestoreInspectorTask - +

Restores inspector task

@@ -682,7 +682,7 @@

Returns

Busy - +

Check, if inspector task is busy

@@ -713,7 +713,7 @@

Returns

CommonData - +

Returns AxoInspectorData

@@ -744,7 +744,7 @@

Returns

Coordinator - +

Returns current coordinator

@@ -775,7 +775,7 @@

Returns

Done - +

Check, if inspection task is done

@@ -806,7 +806,7 @@

Returns

Result - +

Returns inspection result

@@ -838,7 +838,7 @@

Returns

@@ -854,7 +854,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorData.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorData.html index a2c5c3898..de8ab3219 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorData.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorData.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInspectorData - +

@@ -130,7 +130,7 @@

Properties

Timestamp - +

@@ -160,7 +160,7 @@

Property Value

PassTime - +

@@ -190,7 +190,7 @@

Property Value

FailTime - +

@@ -220,7 +220,7 @@

Property Value

Result - +

@@ -250,7 +250,7 @@

Property Value

IsExcluded - +

@@ -280,7 +280,7 @@

Property Value

IsByPassed - +

@@ -310,7 +310,7 @@

Property Value

NumberOfAllowedRetries - +

@@ -340,7 +340,7 @@

Property Value

RetryAttemptsCount - +

@@ -371,7 +371,7 @@

Property Value

@@ -387,7 +387,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorDialog.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorDialog.html index 849eac150..0c5adce3c 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorDialog.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorDialog.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInspectorDialog - +

@@ -321,7 +321,7 @@

Properties

_isOverInspected - +

@@ -351,7 +351,7 @@

Property Value

_dialogueRetry - +

@@ -381,7 +381,7 @@

Property Value

_dialogueTerminate - +

@@ -411,7 +411,7 @@

Property Value

_dialogueOverride - +

@@ -441,7 +441,7 @@

Property Value

_lastCall - +

@@ -471,7 +471,7 @@

Property Value

_isActive - +

@@ -501,7 +501,7 @@

Property Value

_dialogIsClosed - +

@@ -531,7 +531,7 @@

Property Value

_isAnswerProvided - +

@@ -565,7 +565,7 @@

Methods

Show - +

Method for showing inspector dialog and handling interaction

@@ -605,7 +605,7 @@

Returns

Restore - +

Restores dialogue

@@ -637,7 +637,7 @@

Returns

@@ -653,7 +653,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorTask.html b/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorTask.html index f605aa009..dbabef7c9 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorTask.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.AxoInspectorTask.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoInspectorTask - +

@@ -291,7 +291,7 @@

Properties

_onDoneFlag - +

@@ -321,7 +321,7 @@

Property Value

_inspectionData - +

@@ -351,7 +351,7 @@

Property Value

_passTimer - +

@@ -381,7 +381,7 @@

Property Value

_failTimer - +

@@ -415,7 +415,7 @@

Methods

InspectionData - +

@@ -445,7 +445,7 @@

Returns

SetInspectionData - +

@@ -480,7 +480,7 @@

Returns

OnDoneFlag - +

@@ -510,7 +510,7 @@

Returns

Execute - +

Execute inspection task.

@@ -541,7 +541,7 @@

Returns

OnStart - +

Executes once when inspection starts.

@@ -572,7 +572,7 @@

Returns

Restore - +

@@ -602,7 +602,7 @@

Returns

OnDone - +

When inspection Task is done, evaluate inspection result and write to inspection data.

@@ -634,7 +634,7 @@

Returns

@@ -650,7 +650,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.IAxoAnalogueInspector.html b/docs/apictrl/plc.AXOpen.Inspectors.IAxoAnalogueInspector.html index 572c57fcf..91064d5ac 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.IAxoAnalogueInspector.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.IAxoAnalogueInspector.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoAnalogueInspector - +

@@ -128,7 +128,7 @@

Methods

Inspect - +

@@ -166,7 +166,7 @@

Returns

@@ -182,7 +182,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.IAxoComprehensiveResult.html b/docs/apictrl/plc.AXOpen.Inspectors.IAxoComprehensiveResult.html index b82319017..b0bd12b85 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.IAxoComprehensiveResult.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.IAxoComprehensiveResult.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoComprehensiveResult - +

@@ -128,7 +128,7 @@

Methods

GetResult - +

@@ -158,7 +158,7 @@

Returns

GetFailures - +

@@ -188,7 +188,7 @@

Returns

GetErrorCodes - +

@@ -218,7 +218,7 @@

Returns

SetResult - +

@@ -253,7 +253,7 @@

Returns

SetFailures - +

@@ -288,7 +288,7 @@

Returns

SetErrorCodes - +

@@ -324,7 +324,7 @@

Returns

@@ -340,7 +340,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.IAxoDataInspector.html b/docs/apictrl/plc.AXOpen.Inspectors.IAxoDataInspector.html index 226030ce9..40fc8e2bb 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.IAxoDataInspector.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.IAxoDataInspector.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDataInspector - +

@@ -128,7 +128,7 @@

Methods

Inspect - +

@@ -166,7 +166,7 @@

Returns

@@ -182,7 +182,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.IAxoDigitalInspector.html b/docs/apictrl/plc.AXOpen.Inspectors.IAxoDigitalInspector.html index 5b9840e0d..4fcaca33d 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.IAxoDigitalInspector.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.IAxoDigitalInspector.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoDigitalInspector - +

@@ -128,7 +128,7 @@

Methods

Inspect - +

@@ -166,7 +166,7 @@

Returns

@@ -182,7 +182,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.IInspector.html b/docs/apictrl/plc.AXOpen.Inspectors.IInspector.html index a73560825..0da84f323 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.IInspector.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.IInspector.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IInspector - +

@@ -128,7 +128,7 @@

Methods

Busy - +

@@ -158,7 +158,7 @@

Returns

CommonData - +

@@ -188,7 +188,7 @@

Returns

Coordinator - +

@@ -218,7 +218,7 @@

Returns

Done - +

@@ -248,7 +248,7 @@

Returns

CheckOverInspection - +

@@ -278,7 +278,7 @@

Returns

Result - +

@@ -308,7 +308,7 @@

Returns

Dialog - +

@@ -345,7 +345,7 @@

Returns

RestoreInspectorTask - +

@@ -375,7 +375,7 @@

Returns

OnFail - +

@@ -405,7 +405,7 @@

Returns

UpdateComprehensiveResult - +

@@ -436,7 +436,7 @@

Returns

@@ -452,7 +452,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.IOnFail.html b/docs/apictrl/plc.AXOpen.Inspectors.IOnFail.html index 74eab8250..59162bccb 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.IOnFail.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.IOnFail.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IOnFail - +

@@ -128,7 +128,7 @@

Methods

CarryOn - +

@@ -158,7 +158,7 @@

Returns

RetryWithStep - +

@@ -193,7 +193,7 @@

Returns

Dialog - +

@@ -230,7 +230,7 @@

Returns

TerminateWithStep - +

@@ -266,7 +266,7 @@

Returns

@@ -282,7 +282,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.eInspectorResult.html b/docs/apictrl/plc.AXOpen.Inspectors.eInspectorResult.html index 2d28ed879..c3e1b9bb8 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.eInspectorResult.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.eInspectorResult.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eInspectorResult - +

@@ -142,7 +142,7 @@

Fields @@ -158,7 +158,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.eOverallResult.html b/docs/apictrl/plc.AXOpen.Inspectors.eOverallResult.html index 882d0ce34..f9c726672 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.eOverallResult.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.eOverallResult.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eOverallResult - +

@@ -136,7 +136,7 @@

Fields @@ -152,7 +152,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Inspectors.html b/docs/apictrl/plc.AXOpen.Inspectors.html index 8ece1b416..9dc92df1a 100644 --- a/docs/apictrl/plc.AXOpen.Inspectors.html +++ b/docs/apictrl/plc.AXOpen.Inspectors.html @@ -17,7 +17,7 @@ - + @@ -185,7 +185,7 @@

@@ -201,7 +201,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Logging.AxoLogEntry.html b/docs/apictrl/plc.AXOpen.Logging.AxoLogEntry.html index bd3890ca5..f91da4480 100644 --- a/docs/apictrl/plc.AXOpen.Logging.AxoLogEntry.html +++ b/docs/apictrl/plc.AXOpen.Logging.AxoLogEntry.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoLogEntry - +

@@ -130,7 +130,7 @@

Properties

Message - +

The message of the log entry. The maximum length of the message is 80 characters.

@@ -161,7 +161,7 @@

Property Value

Level - +

The severity level of the log entry.

@@ -192,7 +192,7 @@

Property Value

Sender - +

The identifier of the sender of the log entry.

@@ -223,7 +223,7 @@

Property Value

ToDequeue - +

Indicates whether the log entry is ready to be dequeued.

@@ -255,7 +255,7 @@

Property Value

@@ -271,7 +271,7 @@

Property Value

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Logging.AxoLogger.html b/docs/apictrl/plc.AXOpen.Logging.AxoLogger.html index 646d8313b..0dbe48eeb 100644 --- a/docs/apictrl/plc.AXOpen.Logging.AxoLogger.html +++ b/docs/apictrl/plc.AXOpen.Logging.AxoLogger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Class AxoLogger - +

@@ -136,7 +136,7 @@

Properties

Carret - +

The current position in the log entries array.

@@ -167,7 +167,7 @@

Property Value

MinimumLevel - +

The minimum logging level to be captured by this logger.

@@ -198,7 +198,7 @@

Property Value

LogEntries - +

The array containing log entries.

@@ -233,7 +233,7 @@

Methods

Log - +

Log method that captures a message, logging level, and the sender of the log.

@@ -276,7 +276,7 @@

Returns

Log - +

Log method that captures a message and logging level.

@@ -316,7 +316,7 @@

Returns

SetMinimumLevel - +

Sets the minimum logging level to be captured by this logger.

@@ -355,7 +355,7 @@

Returns

@@ -371,7 +371,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Logging.IAxoLogger.html b/docs/apictrl/plc.AXOpen.Logging.IAxoLogger.html index ce5ae6c80..0e76943e2 100644 --- a/docs/apictrl/plc.AXOpen.Logging.IAxoLogger.html +++ b/docs/apictrl/plc.AXOpen.Logging.IAxoLogger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoLogger - +

@@ -129,7 +129,7 @@

Methods

Log - +

Defines the Log methodThis method takes a message, a log level, and a sender as input

@@ -169,7 +169,7 @@

Returns

Log - +

Defines another Log methodThis method takes a message and a log level as input

@@ -208,7 +208,7 @@

Returns

@@ -224,7 +224,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Logging.IAxoLoggerConfig.html b/docs/apictrl/plc.AXOpen.Logging.IAxoLoggerConfig.html index e850a49b5..996397b74 100644 --- a/docs/apictrl/plc.AXOpen.Logging.IAxoLoggerConfig.html +++ b/docs/apictrl/plc.AXOpen.Logging.IAxoLoggerConfig.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoLoggerConfig - +

@@ -129,7 +129,7 @@

Methods

SetMinimumLevel - +

Defines the SetMinimumLevel methodThis method takes a log level as input and returns an instance of IAxoLoggerConfig

@@ -166,7 +166,7 @@

Returns

@@ -182,7 +182,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Logging.eLogLevel.html b/docs/apictrl/plc.AXOpen.Logging.eLogLevel.html index d5dd799b6..cffab9c6a 100644 --- a/docs/apictrl/plc.AXOpen.Logging.eLogLevel.html +++ b/docs/apictrl/plc.AXOpen.Logging.eLogLevel.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@
Table of Contents

Enum eLogLevel - +

@@ -149,7 +149,7 @@

Fields @@ -165,7 +165,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Logging.html b/docs/apictrl/plc.AXOpen.Logging.html index 1d741d2cd..303444859 100644 --- a/docs/apictrl/plc.AXOpen.Logging.html +++ b/docs/apictrl/plc.AXOpen.Logging.html @@ -17,7 +17,7 @@ - + @@ -128,7 +128,7 @@

@@ -144,7 +144,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Messaging.Static.AxoMessenger.html b/docs/apictrl/plc.AXOpen.Messaging.Static.AxoMessenger.html index 6649353d0..6de625a04 100644 --- a/docs/apictrl/plc.AXOpen.Messaging.Static.AxoMessenger.html +++ b/docs/apictrl/plc.AXOpen.Messaging.Static.AxoMessenger.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Class AxoMessenger - +

@@ -164,7 +164,7 @@

Properties

IsActive - +

@@ -194,7 +194,7 @@

Property Value

Category - +

@@ -224,7 +224,7 @@

Property Value

MessageCode - +

@@ -254,7 +254,7 @@

Property Value

Risen - +

@@ -284,7 +284,7 @@

Property Value

Fallen - +

@@ -314,7 +314,7 @@

Property Value

WaitingForAcknowledge - +

@@ -344,7 +344,7 @@

Property Value

AcknowledgementRequired - +

@@ -374,7 +374,7 @@

Property Value

AcknowledgeRequest - +

@@ -404,7 +404,7 @@

Property Value

AcknowledgedBeforeFallen - +

@@ -434,7 +434,7 @@

Property Value

Acknowledged - +

@@ -464,7 +464,7 @@

Property Value

ActiveContextCount - +

@@ -494,7 +494,7 @@

Property Value

Context - +

@@ -528,7 +528,7 @@

Methods

Serve - +

Ensures the inicialization of the instance, so as the deactivation of the message. Must be called cyclically.

@@ -564,7 +564,7 @@

Returns

Serve - +

Ensures the inicialization of the instance, so as the deactivation of the message. Must be called cyclically.

@@ -600,7 +600,7 @@

Returns

Activate - +

Activates the message of the entered category immediatelly.

@@ -636,7 +636,7 @@

Returns

Activate - +

@@ -673,7 +673,7 @@

Returns

ActivateOnCondition - +

Activates the message of the entered category on the rising edge of the condition.

@@ -711,7 +711,7 @@

Returns

ActivateOnCondition - +

Activates the message of the entered category by using the text list on the rising edge of the condition.

@@ -751,7 +751,7 @@

Returns

Deactivate - +

@@ -786,7 +786,7 @@

Returns

Deactivate - +

@@ -816,7 +816,7 @@

Returns

Acknowledge - +

@@ -851,7 +851,7 @@

Returns

Acknowledge - +

@@ -881,7 +881,7 @@

Returns

Restore - +

Restores all members of this instance to their initial states.

@@ -912,7 +912,7 @@

Returns

ToLogLevel - +

@@ -947,7 +947,7 @@

Returns

RequireAcknowledgement - +

Forces to require the message acknowledgement, even if the message category does not require it by default.

@@ -978,7 +978,7 @@

Returns

DoNotRequireAcknowledgement - +

Forces to not require the message acknowledgement, even if the message category requires it by default.

@@ -1009,7 +1009,7 @@

Returns

IsAcknowledgementRequired - +

Returns TRUE if requires the message acknowledgement.

@@ -1041,7 +1041,7 @@

Returns

@@ -1057,7 +1057,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Messaging.Static.IAxoMessageProperties.html b/docs/apictrl/plc.AXOpen.Messaging.Static.IAxoMessageProperties.html index a33a01b6a..b0fcca9a0 100644 --- a/docs/apictrl/plc.AXOpen.Messaging.Static.IAxoMessageProperties.html +++ b/docs/apictrl/plc.AXOpen.Messaging.Static.IAxoMessageProperties.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@
Table of Contents

Interface IAxoMessageProperties - +

@@ -128,7 +128,7 @@

Methods

RequireAcknowledgement - +

@@ -158,7 +158,7 @@

Returns

DoNotRequireAcknowledgement - +

@@ -188,7 +188,7 @@

Returns

IsAcknowledgementRequired - +

@@ -219,7 +219,7 @@

Returns

@@ -235,7 +235,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Messaging.Static.html b/docs/apictrl/plc.AXOpen.Messaging.Static.html index 29d9b8492..c74710d79 100644 --- a/docs/apictrl/plc.AXOpen.Messaging.Static.html +++ b/docs/apictrl/plc.AXOpen.Messaging.Static.html @@ -17,7 +17,7 @@ - + @@ -115,7 +115,7 @@

@@ -131,7 +131,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Messaging.eAxoMessageCategory.html b/docs/apictrl/plc.AXOpen.Messaging.eAxoMessageCategory.html index 689bd3f85..7f5f7ce62 100644 --- a/docs/apictrl/plc.AXOpen.Messaging.eAxoMessageCategory.html +++ b/docs/apictrl/plc.AXOpen.Messaging.eAxoMessageCategory.html @@ -17,7 +17,7 @@ - + @@ -95,7 +95,7 @@

Table of Contents

Enum eAxoMessageCategory - +

@@ -166,7 +166,7 @@

Fields @@ -182,7 +182,7 @@

Fields
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Rtc.IAxoRtc.html b/docs/apictrl/plc.AXOpen.Rtc.IAxoRtc.html index 7d2be94b1..8e99de199 100644 --- a/docs/apictrl/plc.AXOpen.Rtc.IAxoRtc.html +++ b/docs/apictrl/plc.AXOpen.Rtc.IAxoRtc.html @@ -17,7 +17,7 @@ - + @@ -94,7 +94,7 @@

Table of Contents

Interface IAxoRtc - +

@@ -128,7 +128,7 @@

Methods

NowUTC - +

@@ -159,7 +159,7 @@

Returns

@@ -175,7 +175,7 @@

Returns

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apictrl/plc.AXOpen.Rtc.html b/docs/apictrl/plc.AXOpen.Rtc.html index a171baafb..35066db74 100644 --- a/docs/apictrl/plc.AXOpen.Rtc.html +++ b/docs/apictrl/plc.AXOpen.Rtc.html @@ -17,7 +17,7 @@ - + @@ -108,7 +108,7 @@

@@ -124,7 +124,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/apidoc/index.html b/docs/apidoc/index.html index a28b2bfca..d131fb705 100644 --- a/docs/apidoc/index.html +++ b/docs/apidoc/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@

Table of Contents
@@ -108,7 +108,7 @@
Table of Contents
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/configuration/README.html b/docs/articles/configuration/README.html index 5e647cbeb..7f02a0e75 100644 --- a/docs/articles/configuration/README.html +++ b/docs/articles/configuration/README.html @@ -15,7 +15,7 @@ - + @@ -131,7 +131,7 @@

Warning

@@ -148,7 +148,7 @@

Warning

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/guidelines/Conventions.html b/docs/articles/guidelines/Conventions.html index 9236bcef5..e151ee462 100644 --- a/docs/articles/guidelines/Conventions.html +++ b/docs/articles/guidelines/Conventions.html @@ -15,7 +15,7 @@ - + @@ -386,7 +386,7 @@

Components

@@ -403,7 +403,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/guidelines/PERFORMANCE.html b/docs/articles/guidelines/PERFORMANCE.html index 16245c90c..d4d996fa4 100644 --- a/docs/articles/guidelines/PERFORMANCE.html +++ b/docs/articles/guidelines/PERFORMANCE.html @@ -15,7 +15,7 @@ - + @@ -169,7 +169,7 @@

Software Controllers

@@ -186,7 +186,7 @@

Software Controllers

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/guidelines/README.html b/docs/articles/guidelines/README.html index 92cffccd9..825dbc946 100644 --- a/docs/articles/guidelines/README.html +++ b/docs/articles/guidelines/README.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents
@@ -108,7 +108,7 @@
Table of Contents
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/guidelines/components.html b/docs/articles/guidelines/components.html index 5978579c4..04e00ebfe 100644 --- a/docs/articles/guidelines/components.html +++ b/docs/articles/guidelines/components.html @@ -15,7 +15,7 @@ - + @@ -236,7 +236,7 @@

Public classes

@@ -253,7 +253,7 @@

Public classes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/index.html b/docs/articles/index.html index bfcf91bb8..126462e8a 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -15,7 +15,7 @@ - + @@ -93,8 +93,8 @@
Table of Contents

AXOpen is an open-source application framework project developed by a group of automation engineers. It is based on SIMATIC AX platfrom and AX# technology

Source repositories

    -
  • Underlying technology of AXOpen AX#
  • -
  • Sources of AXOpen framework AXOpen
  • +
  • Underlying technology of AXOpen AX#
  • +
  • Sources of AXOpen framework AXOpen
Note
@@ -110,7 +110,7 @@

- Edit this page + Edit this page

@@ -127,7 +127,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/localization/README.html b/docs/articles/localization/README.html index 9b2a80234..0bdf77c29 100644 --- a/docs/articles/localization/README.html +++ b/docs/articles/localization/README.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Using localized strings

@@ -168,7 +168,7 @@

Using localized strings

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/APAX_PACAKGE_GENERAL.html b/docs/articles/notes/APAX_PACAKGE_GENERAL.html index 51f9c4b65..ada02155b 100644 --- a/docs/articles/notes/APAX_PACAKGE_GENERAL.html +++ b/docs/articles/notes/APAX_PACAKGE_GENERAL.html @@ -15,7 +15,7 @@ - + @@ -98,7 +98,7 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note
@@ -107,7 +107,7 @@
Note
@@ -124,7 +124,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/Assets_in_nuget_package.html b/docs/articles/notes/Assets_in_nuget_package.html index 396fb1ae8..c7faa43fc 100644 --- a/docs/articles/notes/Assets_in_nuget_package.html +++ b/docs/articles/notes/Assets_in_nuget_package.html @@ -15,7 +15,7 @@ - + @@ -101,7 +101,7 @@

Using Assets in nuget package

@@ -118,7 +118,7 @@

Using Assets in nuget package

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/CYCLIC_UPDATE_NOTICE.html b/docs/articles/notes/CYCLIC_UPDATE_NOTICE.html index c3a24d3db..b9aef6416 100644 --- a/docs/articles/notes/CYCLIC_UPDATE_NOTICE.html +++ b/docs/articles/notes/CYCLIC_UPDATE_NOTICE.html @@ -15,7 +15,7 @@ - + @@ -95,7 +95,7 @@
Important
@@ -112,7 +112,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/Configuration.html b/docs/articles/notes/Configuration.html index 4ed204933..0408de382 100644 --- a/docs/articles/notes/Configuration.html +++ b/docs/articles/notes/Configuration.html @@ -15,7 +15,7 @@ - + @@ -131,7 +131,7 @@

Warning

@@ -148,7 +148,7 @@

Warning

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/LIBRARYHEADER.html b/docs/articles/notes/LIBRARYHEADER.html index 097f85577..dca52136e 100644 --- a/docs/articles/notes/LIBRARYHEADER.html +++ b/docs/articles/notes/LIBRARYHEADER.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/Localization.html b/docs/articles/notes/Localization.html index a9c57cf51..897ec8ac7 100644 --- a/docs/articles/notes/Localization.html +++ b/docs/articles/notes/Localization.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Using localized strings

@@ -168,7 +168,7 @@

Using localized strings

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.html b/docs/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.html index 6d929f538..d7baf7d84 100644 --- a/docs/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.html +++ b/docs/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.html @@ -15,7 +15,7 @@ - + @@ -94,7 +94,7 @@
Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -105,7 +105,7 @@
Note
@@ -122,7 +122,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/NUGET_PACAKGE_GENERAL.html b/docs/articles/notes/NUGET_PACAKGE_GENERAL.html index 1652d6d1c..960d87a9a 100644 --- a/docs/articles/notes/NUGET_PACAKGE_GENERAL.html +++ b/docs/articles/notes/NUGET_PACAKGE_GENERAL.html @@ -15,7 +15,7 @@ - + @@ -94,7 +94,7 @@
Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -105,7 +105,7 @@
Note
@@ -122,7 +122,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/README.html b/docs/articles/notes/README.html index 6440f2bbd..6e2a7a39e 100644 --- a/docs/articles/notes/README.html +++ b/docs/articles/notes/README.html @@ -15,7 +15,7 @@ - + @@ -102,7 +102,7 @@

3. ToolTips and Popovers

@@ -119,7 +119,7 @@

3. ToolTips and Popovers

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/Themes.html b/docs/articles/notes/Themes.html index c21c85ef7..5c7c8577e 100644 --- a/docs/articles/notes/Themes.html +++ b/docs/articles/notes/Themes.html @@ -15,7 +15,7 @@ - + @@ -166,7 +166,7 @@

Change dark/light theme

@@ -183,7 +183,7 @@

Change dark/light theme

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/notes/ToolTipsAndPopOvers.html b/docs/articles/notes/ToolTipsAndPopOvers.html index 95b22b523..9b90e1f09 100644 --- a/docs/articles/notes/ToolTipsAndPopOvers.html +++ b/docs/articles/notes/ToolTipsAndPopOvers.html @@ -15,7 +15,7 @@ - + @@ -119,7 +119,7 @@

Adding the OnAf @@ -136,7 +136,7 @@

Adding the OnAf
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/rendering/intro.html b/docs/articles/rendering/intro.html index f9e913faf..29c52b45b 100644 --- a/docs/articles/rendering/intro.html +++ b/docs/articles/rendering/intro.html @@ -15,7 +15,7 @@ - + @@ -89,10 +89,10 @@

Table of Contents

Automatic Rendering with AXOpen

-

AXOpen leverages AX# rendering to enable a variety of advanced features.

+

AXOpen leverages AX# rendering to enable a variety of advanced features.

This document provides foundational information regarding the presentation methods used within AXOpen.

Renderable Content Control

-

While presentation modes in AX# offer several options, AXOpen introduces additional presentation types:

+

While presentation modes in AX# offer several options, AXOpen introduces additional presentation types:

@@ -128,7 +128,7 @@

Examples:

@@ -145,7 +145,7 @@

Examples:

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/security/INSTALLATION.html b/docs/articles/security/INSTALLATION.html index 2b4dc2781..abfd2ca88 100644 --- a/docs/articles/security/INSTALLATION.html +++ b/docs/articles/security/INSTALLATION.html @@ -15,7 +15,7 @@ - + @@ -202,7 +202,7 @@

Default login

@@ -219,7 +219,7 @@

Default login

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/security/README.html b/docs/articles/security/README.html index 1e25ee018..bba5f2002 100644 --- a/docs/articles/security/README.html +++ b/docs/articles/security/README.html @@ -15,7 +15,7 @@ - + @@ -158,7 +158,7 @@

Use of AuthenticationStateProvider @@ -175,7 +175,7 @@

Use of AuthenticationStateProvider
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/themes/README.html b/docs/articles/themes/README.html index ab5e9ebc2..1c05cfcb6 100644 --- a/docs/articles/themes/README.html +++ b/docs/articles/themes/README.html @@ -15,7 +15,7 @@ - + @@ -239,7 +239,7 @@

3. Using a theme

@@ -256,7 +256,7 @@

3. Using a theme

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/articles/toolTipsAndPopOvers/README.html b/docs/articles/toolTipsAndPopOvers/README.html index 488665768..6cbfd7d0b 100644 --- a/docs/articles/toolTipsAndPopOvers/README.html +++ b/docs/articles/toolTipsAndPopOvers/README.html @@ -15,7 +15,7 @@ - + @@ -119,7 +119,7 @@

Adding the OnAf @@ -136,7 +136,7 @@

Adding the OnAf
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/base/src/AXOpen.VisualComposer/README.html b/docs/base/src/AXOpen.VisualComposer/README.html index bd95bd3fa..de735391b 100644 --- a/docs/base/src/AXOpen.VisualComposer/README.html +++ b/docs/base/src/AXOpen.VisualComposer/README.html @@ -15,7 +15,7 @@ - + @@ -153,7 +153,7 @@

SVG editor

@@ -170,7 +170,7 @@

SVG editor

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/clientchat/src/README.html b/docs/clientchat/src/README.html index b172389cf..64bd2dde6 100644 --- a/docs/clientchat/src/README.html +++ b/docs/clientchat/src/README.html @@ -15,7 +15,7 @@ - + @@ -512,7 +512,7 @@

Sending messages to specific clien @@ -529,7 +529,7 @@

Sending messages to specific clien
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/clientchat/src/index.html b/docs/clientchat/src/index.html index f42a9e03d..3ea311865 100644 --- a/docs/clientchat/src/index.html +++ b/docs/clientchat/src/index.html @@ -15,7 +15,7 @@ - + @@ -512,7 +512,7 @@

Sending messages to specific clien @@ -529,7 +529,7 @@

Sending messages to specific clien
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/clientchat/src/wwwroot/css/open-iconic/README.html b/docs/clientchat/src/wwwroot/css/open-iconic/README.html index abd428c13..5a09d2515 100644 --- a/docs/clientchat/src/wwwroot/css/open-iconic/README.html +++ b/docs/clientchat/src/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/CHANGES_CHECKLIST.html b/docs/components.abb.robotics/CHANGES_CHECKLIST.html index bc93eb8f9..d4741bad4 100644 --- a/docs/components.abb.robotics/CHANGES_CHECKLIST.html +++ b/docs/components.abb.robotics/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/CREATION_CHECKLIST.html b/docs/components.abb.robotics/CREATION_CHECKLIST.html index c2d1c9e44..1ca232eea 100644 --- a/docs/components.abb.robotics/CREATION_CHECKLIST.html +++ b/docs/components.abb.robotics/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.abb.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html index 6a67b2d09..265cf07b3 100644 --- a/docs/components.abb.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.abb.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/ctrl/README.html b/docs/components.abb.robotics/ctrl/README.html index c7131797a..1d84b7bee 100644 --- a/docs/components.abb.robotics/ctrl/README.html +++ b/docs/components.abb.robotics/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.abb.robotics

+

@inxton/axopen.components.abb.robotics

Description

-

The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework.

+

The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.abb.robotics"
+
apax add "@inxton/axopen.components.abb.robotics"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.abb.robotics": '{axopen-version}'  
+  "@inxton/axopen.components.abb.robotics": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/docs/CHANGELOG.html b/docs/components.abb.robotics/docs/CHANGELOG.html index 32a67532c..e64bc5e0e 100644 --- a/docs/components.abb.robotics/docs/CHANGELOG.html +++ b/docs/components.abb.robotics/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/docs/ComponentTemplate.html b/docs/components.abb.robotics/docs/ComponentTemplate.html index 1472a83a6..db23f6e52 100644 --- a/docs/components.abb.robotics/docs/ComponentTemplate.html +++ b/docs/components.abb.robotics/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -171,7 +171,7 @@

Generic Read-Only view

@@ -188,7 +188,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/docs/Component_1.html b/docs/components.abb.robotics/docs/Component_1.html index 25dd8ffbb..57198c5af 100644 --- a/docs/components.abb.robotics/docs/Component_1.html +++ b/docs/components.abb.robotics/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -170,7 +170,7 @@

Generic Read-Only view

@@ -187,7 +187,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/docs/Component_2.html b/docs/components.abb.robotics/docs/Component_2.html index e2313e6af..41d4a6ab9 100644 --- a/docs/components.abb.robotics/docs/Component_2.html +++ b/docs/components.abb.robotics/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -170,7 +170,7 @@

Generic Read-Only view

@@ -187,7 +187,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/docs/README.html b/docs/components.abb.robotics/docs/README.html index 47a6323c0..31e64db60 100644 --- a/docs/components.abb.robotics/docs/README.html +++ b/docs/components.abb.robotics/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework.

+

The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/docs/TROUBLES.html b/docs/components.abb.robotics/docs/TROUBLES.html index db4b6c19a..bae727db9 100644 --- a/docs/components.abb.robotics/docs/TROUBLES.html +++ b/docs/components.abb.robotics/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/docs/index.html b/docs/components.abb.robotics/docs/index.html index 507e306de..11037d331 100644 --- a/docs/components.abb.robotics/docs/index.html +++ b/docs/components.abb.robotics/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/README.html b/docs/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/README.html index 44bcb0d1a..e56eb5d4b 100644 --- a/docs/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/README.html +++ b/docs/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Abb.Robotics.Blazor

Description

-

The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework.

+

The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/README.html b/docs/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/README.html index 3b02a91d3..bd523146c 100644 --- a/docs/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/README.html +++ b/docs/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Abb.Robotics

Description

-

The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework.

+

The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html b/docs/components.abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html index bcd2ae4c1..b7e17a06c 100644 --- a/docs/components.abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abstractions/docs/README.html b/docs/components.abstractions/docs/README.html index 4ca8f51a6..642f5bd65 100644 --- a/docs/components.abstractions/docs/README.html +++ b/docs/components.abstractions/docs/README.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

Abstractions

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -102,7 +102,7 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


Description

@@ -110,7 +110,7 @@

Description

@@ -127,7 +127,7 @@

Description

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abstractions/docs/TROUBLES.html b/docs/components.abstractions/docs/TROUBLES.html index 8e59fdde9..ba3296c15 100644 --- a/docs/components.abstractions/docs/TROUBLES.html +++ b/docs/components.abstractions/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.abstractions/docs/index.html b/docs/components.abstractions/docs/index.html index 4f2d5b816..3468999e8 100644 --- a/docs/components.abstractions/docs/index.html +++ b/docs/components.abstractions/docs/index.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

Abstractions

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -102,7 +102,7 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


Description

@@ -110,7 +110,7 @@

Description

@@ -127,7 +127,7 @@

Description

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/CHANGES_CHECKLIST.html b/docs/components.balluff.identification/CHANGES_CHECKLIST.html index f9f4f2d26..b3ac4a912 100644 --- a/docs/components.balluff.identification/CHANGES_CHECKLIST.html +++ b/docs/components.balluff.identification/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/CREATION_CHECKLIST.html b/docs/components.balluff.identification/CREATION_CHECKLIST.html index ba0663b0a..bf007da5f 100644 --- a/docs/components.balluff.identification/CREATION_CHECKLIST.html +++ b/docs/components.balluff.identification/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.balluff.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html index 5947581b1..a2385eeef 100644 --- a/docs/components.balluff.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.balluff.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/ctrl/README.html b/docs/components.balluff.identification/ctrl/README.html index 87fad30b3..89b25fab0 100644 --- a/docs/components.balluff.identification/ctrl/README.html +++ b/docs/components.balluff.identification/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.balluff.identification

+

@inxton/axopen.components.balluff.identification

Description

-

The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework.

+

The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.balluff.identification"
+
apax add "@inxton/axopen.components.balluff.identification"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.balluff.identification": '{axopen-version}'  
+  "@inxton/axopen.components.balluff.identification": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/docs/CHANGELOG.html b/docs/components.balluff.identification/docs/CHANGELOG.html index 1367f8428..d418c9f35 100644 --- a/docs/components.balluff.identification/docs/CHANGELOG.html +++ b/docs/components.balluff.identification/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/docs/ComponentTemplate.html b/docs/components.balluff.identification/docs/ComponentTemplate.html index 5be6026e4..d2f8a63fd 100644 --- a/docs/components.balluff.identification/docs/ComponentTemplate.html +++ b/docs/components.balluff.identification/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -164,7 +164,7 @@

Generic Read-Only view

@@ -181,7 +181,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/docs/Component_1.html b/docs/components.balluff.identification/docs/Component_1.html index 3c05a890c..e134ca04f 100644 --- a/docs/components.balluff.identification/docs/Component_1.html +++ b/docs/components.balluff.identification/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -163,7 +163,7 @@

Generic Read-Only view

@@ -180,7 +180,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/docs/Component_2.html b/docs/components.balluff.identification/docs/Component_2.html index 9bb43a039..67f03b093 100644 --- a/docs/components.balluff.identification/docs/Component_2.html +++ b/docs/components.balluff.identification/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -163,7 +163,7 @@

Generic Read-Only view

@@ -180,7 +180,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/docs/README.html b/docs/components.balluff.identification/docs/README.html index 1f7c4f558..cfa8ecc9b 100644 --- a/docs/components.balluff.identification/docs/README.html +++ b/docs/components.balluff.identification/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework.

+

The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/docs/TROUBLES.html b/docs/components.balluff.identification/docs/TROUBLES.html index 8e4e8a15d..7694c2bf8 100644 --- a/docs/components.balluff.identification/docs/TROUBLES.html +++ b/docs/components.balluff.identification/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/docs/index.html b/docs/components.balluff.identification/docs/index.html index 3adad5959..2e00c2475 100644 --- a/docs/components.balluff.identification/docs/index.html +++ b/docs/components.balluff.identification/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/README.html b/docs/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/README.html index 4a0cf8374..082e67483 100644 --- a/docs/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/README.html +++ b/docs/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Balluff.Identification.Blazor

Description

-

The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework.

+

The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/README.html b/docs/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/README.html index 398b6bbb9..75ed27690 100644 --- a/docs/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/README.html +++ b/docs/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Balluff.Identification

Description

-

The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework.

+

The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/CHANGES_CHECKLIST.html b/docs/components.cognex.vision/CHANGES_CHECKLIST.html index 9003615d7..49f584fc4 100644 --- a/docs/components.cognex.vision/CHANGES_CHECKLIST.html +++ b/docs/components.cognex.vision/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/CREATION_CHECKLIST.html b/docs/components.cognex.vision/CREATION_CHECKLIST.html index 87b287672..ce010eb12 100644 --- a/docs/components.cognex.vision/CREATION_CHECKLIST.html +++ b/docs/components.cognex.vision/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/README.html b/docs/components.cognex.vision/README.html index 5662c0b52..4c1cf840c 100644 --- a/docs/components.cognex.vision/README.html +++ b/docs/components.cognex.vision/README.html @@ -15,7 +15,7 @@ - + @@ -105,7 +105,7 @@
Table of Contents
@@ -122,7 +122,7 @@
Table of Contents
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.cognex.vision/app/ix-blazor/wwwroot/css/open-iconic/README.html index e91622372..b33ef8605 100644 --- a/docs/components.cognex.vision/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.cognex.vision/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/ctrl/README.html b/docs/components.cognex.vision/ctrl/README.html index 6c01b01f2..adf557f99 100644 --- a/docs/components.cognex.vision/ctrl/README.html +++ b/docs/components.cognex.vision/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.cognex.vision

+

@inxton/axopen.components.cognex.vision

Description

-

The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework.

+

The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.cognex.vision"
+
apax add "@inxton/axopen.components.cognex.vision"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.cognex.vision": '{axopen-version}'  
+  "@inxton/axopen.components.cognex.vision": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/AXODATAMAN.html b/docs/components.cognex.vision/docs/AXODATAMAN.html index 8e69d8941..e0d42cd4b 100644 --- a/docs/components.cognex.vision/docs/AXODATAMAN.html +++ b/docs/components.cognex.vision/docs/AXODATAMAN.html @@ -15,7 +15,7 @@ - + @@ -159,7 +159,7 @@
Important
@@ -176,7 +176,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/AXOINSIGHT.html b/docs/components.cognex.vision/docs/AXOINSIGHT.html index f85c10bc7..a0e79aead 100644 --- a/docs/components.cognex.vision/docs/AXOINSIGHT.html +++ b/docs/components.cognex.vision/docs/AXOINSIGHT.html @@ -15,7 +15,7 @@ - + @@ -178,7 +178,7 @@
Important
@@ -195,7 +195,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/CHANGELOG.html b/docs/components.cognex.vision/docs/CHANGELOG.html index 1547369a9..40d43e47b 100644 --- a/docs/components.cognex.vision/docs/CHANGELOG.html +++ b/docs/components.cognex.vision/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/ComponentTemplate.html b/docs/components.cognex.vision/docs/ComponentTemplate.html index 7ae157f2b..afe4ffcbd 100644 --- a/docs/components.cognex.vision/docs/ComponentTemplate.html +++ b/docs/components.cognex.vision/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -195,7 +195,7 @@

Generic Read-Only view

@@ -212,7 +212,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/Component_1.html b/docs/components.cognex.vision/docs/Component_1.html index 812b81f6b..c220da361 100644 --- a/docs/components.cognex.vision/docs/Component_1.html +++ b/docs/components.cognex.vision/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -194,7 +194,7 @@

Generic Read-Only view

@@ -211,7 +211,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/Component_2.html b/docs/components.cognex.vision/docs/Component_2.html index 77fa9d356..c18996cc8 100644 --- a/docs/components.cognex.vision/docs/Component_2.html +++ b/docs/components.cognex.vision/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -183,7 +183,7 @@

Generic Read-Only view

@@ -200,7 +200,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/Component_3.html b/docs/components.cognex.vision/docs/Component_3.html index c0e62d592..d12068768 100644 --- a/docs/components.cognex.vision/docs/Component_3.html +++ b/docs/components.cognex.vision/docs/Component_3.html @@ -15,7 +15,7 @@ - + @@ -183,7 +183,7 @@

Generic Read-Only view

@@ -200,7 +200,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/HOWTO.html b/docs/components.cognex.vision/docs/HOWTO.html index 07fcea384..cc63b98ee 100644 --- a/docs/components.cognex.vision/docs/HOWTO.html +++ b/docs/components.cognex.vision/docs/HOWTO.html @@ -15,7 +15,7 @@ - + @@ -248,7 +248,7 @@
Important
@@ -265,7 +265,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/README.html b/docs/components.cognex.vision/docs/README.html index f64dc5f2d..7304f9188 100644 --- a/docs/components.cognex.vision/docs/README.html +++ b/docs/components.cognex.vision/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework.

+

The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/TROUBLES.html b/docs/components.cognex.vision/docs/TROUBLES.html index 3b4aca291..677412914 100644 --- a/docs/components.cognex.vision/docs/TROUBLES.html +++ b/docs/components.cognex.vision/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/docs/index.html b/docs/components.cognex.vision/docs/index.html index e7db2dbcc..5b6405bbb 100644 --- a/docs/components.cognex.vision/docs/index.html +++ b/docs/components.cognex.vision/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/README.html b/docs/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/README.html index d5a705ebc..d90aab6e0 100644 --- a/docs/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/README.html +++ b/docs/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Cognex.Vision.Blazor

Description

-

The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework.

+

The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/README.html b/docs/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/README.html index 4515b93ec..f560939f2 100644 --- a/docs/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/README.html +++ b/docs/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Cognex.Vision

Description

-

The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework.

+

The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/CHANGES_CHECKLIST.html b/docs/components.desoutter.tightening/CHANGES_CHECKLIST.html index 6cfbd68e2..fcc3f9500 100644 --- a/docs/components.desoutter.tightening/CHANGES_CHECKLIST.html +++ b/docs/components.desoutter.tightening/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/CREATION_CHECKLIST.html b/docs/components.desoutter.tightening/CREATION_CHECKLIST.html index 3e3cfeb26..975c3b7b6 100644 --- a/docs/components.desoutter.tightening/CREATION_CHECKLIST.html +++ b/docs/components.desoutter.tightening/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.desoutter.tightening/app/ix-blazor/wwwroot/css/open-iconic/README.html index 60429afef..ace427e8c 100644 --- a/docs/components.desoutter.tightening/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.desoutter.tightening/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/ctrl/README.html b/docs/components.desoutter.tightening/ctrl/README.html index 1ca457e10..c56f1182c 100644 --- a/docs/components.desoutter.tightening/ctrl/README.html +++ b/docs/components.desoutter.tightening/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.desoutter.tightening

+

@inxton/axopen.components.desoutter.tightening

Description

-

The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework.

+

The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.desoutter.tightening"
+
apax add "@inxton/axopen.components.desoutter.tightening"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.desoutter.tightening": '{axopen-version}'  
+  "@inxton/axopen.components.desoutter.tightening": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/docs/CHANGELOG.html b/docs/components.desoutter.tightening/docs/CHANGELOG.html index 0ceec6797..4cd6625c4 100644 --- a/docs/components.desoutter.tightening/docs/CHANGELOG.html +++ b/docs/components.desoutter.tightening/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/docs/ComponentTemplate.html b/docs/components.desoutter.tightening/docs/ComponentTemplate.html index 3b17b09b4..a5b70a550 100644 --- a/docs/components.desoutter.tightening/docs/ComponentTemplate.html +++ b/docs/components.desoutter.tightening/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -187,7 +187,7 @@

Generic Read-Only view

@@ -204,7 +204,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/docs/Component_1.html b/docs/components.desoutter.tightening/docs/Component_1.html index 3fb4bac27..451f3faaa 100644 --- a/docs/components.desoutter.tightening/docs/Component_1.html +++ b/docs/components.desoutter.tightening/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -186,7 +186,7 @@

Generic Read-Only view

@@ -203,7 +203,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/docs/Component_2.html b/docs/components.desoutter.tightening/docs/Component_2.html index bdc6d2967..f6dd56538 100644 --- a/docs/components.desoutter.tightening/docs/Component_2.html +++ b/docs/components.desoutter.tightening/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Generic Read-Only view

@@ -168,7 +168,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/docs/README.html b/docs/components.desoutter.tightening/docs/README.html index 5e8829119..c44755008 100644 --- a/docs/components.desoutter.tightening/docs/README.html +++ b/docs/components.desoutter.tightening/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework.

+

The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/docs/TROUBLES.html b/docs/components.desoutter.tightening/docs/TROUBLES.html index 9ea58bee3..6f4015d49 100644 --- a/docs/components.desoutter.tightening/docs/TROUBLES.html +++ b/docs/components.desoutter.tightening/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/docs/index.html b/docs/components.desoutter.tightening/docs/index.html index 27150b61f..56f3fe758 100644 --- a/docs/components.desoutter.tightening/docs/index.html +++ b/docs/components.desoutter.tightening/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/README.html b/docs/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/README.html index ef4afff26..d6027700d 100644 --- a/docs/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/README.html +++ b/docs/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Desoutter.Tightening.Blazor

Description

-

The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework.

+

The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/README.html b/docs/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/README.html index dc858161a..e1f6de805 100644 --- a/docs/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/README.html +++ b/docs/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Desoutter.Tightening

Description

-

The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework.

+

The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/CHANGES_CHECKLIST.html b/docs/components.drives/CHANGES_CHECKLIST.html index 8bb592903..807880c8b 100644 --- a/docs/components.drives/CHANGES_CHECKLIST.html +++ b/docs/components.drives/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -123,7 +123,7 @@

Changelog file updates

@@ -140,7 +140,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/CREATION_CHECKLIST.html b/docs/components.drives/CREATION_CHECKLIST.html index f919f5bf8..f3d2ed360 100644 --- a/docs/components.drives/CREATION_CHECKLIST.html +++ b/docs/components.drives/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html index faed3946d..015ebdbc6 100644 --- a/docs/components.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/ctrl/README.html b/docs/components.drives/ctrl/README.html index 06e803f0c..0cb3693dc 100644 --- a/docs/components.drives/ctrl/README.html +++ b/docs/components.drives/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axlibname

+

@inxton/axlibname

Description

-

The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework.

+

The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding package to your project

-
apax add "@ix-ax/axlibname"
+
apax add "@inxton/axlibname"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axlibname": '{axopen-version}'  
+  "@inxton/axlibname": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/docs/CHANGELOG.html b/docs/components.drives/docs/CHANGELOG.html index 29bdfbf21..cb1b2f234 100644 --- a/docs/components.drives/docs/CHANGELOG.html +++ b/docs/components.drives/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/docs/ComponentTemplate.html b/docs/components.drives/docs/ComponentTemplate.html index 1a80bf643..a70bed823 100644 --- a/docs/components.drives/docs/ComponentTemplate.html +++ b/docs/components.drives/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -170,7 +170,7 @@

Generic Read-Only view

@@ -187,7 +187,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/docs/Component_1.html b/docs/components.drives/docs/Component_1.html index 7c91f48f7..173a3a9f0 100644 --- a/docs/components.drives/docs/Component_1.html +++ b/docs/components.drives/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -169,7 +169,7 @@

Generic Read-Only view

@@ -186,7 +186,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/docs/Component_2.html b/docs/components.drives/docs/Component_2.html index 78648bf3a..2e718db27 100644 --- a/docs/components.drives/docs/Component_2.html +++ b/docs/components.drives/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Generic Read-Only view

@@ -168,7 +168,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/docs/README.html b/docs/components.drives/docs/README.html index ff077e3e3..1b656d13b 100644 --- a/docs/components.drives/docs/README.html +++ b/docs/components.drives/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework.

+

The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/docs/TROUBLES.html b/docs/components.drives/docs/TROUBLES.html index abd029841..2e9568868 100644 --- a/docs/components.drives/docs/TROUBLES.html +++ b/docs/components.drives/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/docs/index.html b/docs/components.drives/docs/index.html index 7cadfa676..bc4aaddc0 100644 --- a/docs/components.drives/docs/index.html +++ b/docs/components.drives/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/src/AXOpen.Components.Drives.blazor/README.html b/docs/components.drives/src/AXOpen.Components.Drives.blazor/README.html index 5eb2a2757..9b2595802 100644 --- a/docs/components.drives/src/AXOpen.Components.Drives.blazor/README.html +++ b/docs/components.drives/src/AXOpen.Components.Drives.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Drives.Blazor

Description

-

The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework.

+

The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.drives/src/AXOpen.Components.Drives/README.html b/docs/components.drives/src/AXOpen.Components.Drives/README.html index ee27cb652..2a206c071 100644 --- a/docs/components.drives/src/AXOpen.Components.Drives/README.html +++ b/docs/components.drives/src/AXOpen.Components.Drives/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Drives

Description

-

The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework.

+

The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/app/ix-blazor/ElementsComponents.blazor/wwwroot/css/open-iconic/README.html b/docs/components.elements/app/ix-blazor/ElementsComponents.blazor/wwwroot/css/open-iconic/README.html index 3207261a6..e28672dbc 100644 --- a/docs/components.elements/app/ix-blazor/ElementsComponents.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.elements/app/ix-blazor/ElementsComponents.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/docs/AXOAI.html b/docs/components.elements/docs/AXOAI.html index 6f10699ba..805b8f426 100644 --- a/docs/components.elements/docs/AXOAI.html +++ b/docs/components.elements/docs/AXOAI.html @@ -15,7 +15,7 @@ - + @@ -159,7 +159,7 @@
Important
@@ -176,7 +176,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/docs/AXOAO.html b/docs/components.elements/docs/AXOAO.html index 03a822bb5..f46412bcd 100644 --- a/docs/components.elements/docs/AXOAO.html +++ b/docs/components.elements/docs/AXOAO.html @@ -15,7 +15,7 @@ - + @@ -162,7 +162,7 @@
Important
@@ -179,7 +179,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/docs/AXODI.html b/docs/components.elements/docs/AXODI.html index aac38f43f..d81399d22 100644 --- a/docs/components.elements/docs/AXODI.html +++ b/docs/components.elements/docs/AXODI.html @@ -15,7 +15,7 @@ - + @@ -137,7 +137,7 @@

Use

@@ -154,7 +154,7 @@

Use

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/docs/AXODO.html b/docs/components.elements/docs/AXODO.html index ef9f7f2db..f032ee5f5 100644 --- a/docs/components.elements/docs/AXODO.html +++ b/docs/components.elements/docs/AXODO.html @@ -15,7 +15,7 @@ - + @@ -133,7 +133,7 @@
Important
@@ -150,7 +150,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/docs/HOWTO.html b/docs/components.elements/docs/HOWTO.html index 4c726018e..83e6f7621 100644 --- a/docs/components.elements/docs/HOWTO.html +++ b/docs/components.elements/docs/HOWTO.html @@ -15,7 +15,7 @@ - + @@ -319,7 +319,7 @@
Important
@@ -336,7 +336,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/docs/README.html b/docs/components.elements/docs/README.html index a64c22abb..03c2cfbba 100644 --- a/docs/components.elements/docs/README.html +++ b/docs/components.elements/docs/README.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

AXOpenElements

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -102,7 +102,7 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


Description

@@ -110,7 +110,7 @@

Description

@@ -127,7 +127,7 @@

Description

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/docs/TROUBLES.html b/docs/components.elements/docs/TROUBLES.html index e5c508949..eddd6bb69 100644 --- a/docs/components.elements/docs/TROUBLES.html +++ b/docs/components.elements/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.elements/docs/index.html b/docs/components.elements/docs/index.html index dc3d27d1b..89d4924ed 100644 --- a/docs/components.elements/docs/index.html +++ b/docs/components.elements/docs/index.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

AXOpenElements

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -102,7 +102,7 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


Description

@@ -110,7 +110,7 @@

Description

@@ -127,7 +127,7 @@

Description

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/CHANGES_CHECKLIST.html b/docs/components.festo.drives/CHANGES_CHECKLIST.html index 7f1a81ce4..7cc230b1c 100644 --- a/docs/components.festo.drives/CHANGES_CHECKLIST.html +++ b/docs/components.festo.drives/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/CREATION_CHECKLIST.html b/docs/components.festo.drives/CREATION_CHECKLIST.html index 28471022b..9b5daec8d 100644 --- a/docs/components.festo.drives/CREATION_CHECKLIST.html +++ b/docs/components.festo.drives/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.festo.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html index 3641f7d61..ffa9f308d 100644 --- a/docs/components.festo.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.festo.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/ctrl/README.html b/docs/components.festo.drives/ctrl/README.html index 8de38adf4..a55b5e40e 100644 --- a/docs/components.festo.drives/ctrl/README.html +++ b/docs/components.festo.drives/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.festo.drives

+

@inxton/axopen.components.festo.drives

Description

-

The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework.

+

The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding package to your project

-
apax add "@ix-ax/axopen.components.festo.drives"
+
apax add "@inxton/axopen.components.festo.drives"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axlibname": '{axopen-version}'  
+  "@inxton/axlibname": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/docs/CHANGELOG.html b/docs/components.festo.drives/docs/CHANGELOG.html index 57bb09926..28186465f 100644 --- a/docs/components.festo.drives/docs/CHANGELOG.html +++ b/docs/components.festo.drives/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/docs/ComponentTemplate.html b/docs/components.festo.drives/docs/ComponentTemplate.html index 90a3f8148..44f162d3b 100644 --- a/docs/components.festo.drives/docs/ComponentTemplate.html +++ b/docs/components.festo.drives/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -482,7 +482,7 @@

Generic Read-Only view

@@ -499,7 +499,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/docs/Component_1.html b/docs/components.festo.drives/docs/Component_1.html index 75bed547f..aedb23a5d 100644 --- a/docs/components.festo.drives/docs/Component_1.html +++ b/docs/components.festo.drives/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -478,7 +478,7 @@

Generic Read-Only view

@@ -495,7 +495,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/docs/Component_2.html b/docs/components.festo.drives/docs/Component_2.html index 0cff23335..06cdff9a6 100644 --- a/docs/components.festo.drives/docs/Component_2.html +++ b/docs/components.festo.drives/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -471,7 +471,7 @@

Generic Read-Only view

@@ -488,7 +488,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/docs/README.html b/docs/components.festo.drives/docs/README.html index 79a9368b1..a539f5a3e 100644 --- a/docs/components.festo.drives/docs/README.html +++ b/docs/components.festo.drives/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework.

+

The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/docs/TROUBLES.html b/docs/components.festo.drives/docs/TROUBLES.html index cc240d586..25fe2856b 100644 --- a/docs/components.festo.drives/docs/TROUBLES.html +++ b/docs/components.festo.drives/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/docs/index.html b/docs/components.festo.drives/docs/index.html index 22be658ea..676d7185d 100644 --- a/docs/components.festo.drives/docs/index.html +++ b/docs/components.festo.drives/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/README.html b/docs/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/README.html index e2098a109..45832be30 100644 --- a/docs/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/README.html +++ b/docs/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Festo.Drives.Blazor

Description

-

The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework.

+

The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.festo.drives/src/AXOpen.Components.Festo.Drives/README.html b/docs/components.festo.drives/src/AXOpen.Components.Festo.Drives/README.html index 71d4f638b..944fd1e40 100644 --- a/docs/components.festo.drives/src/AXOpen.Components.Festo.Drives/README.html +++ b/docs/components.festo.drives/src/AXOpen.Components.Festo.Drives/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Festo.Drives

Description

-

The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework.

+

The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/CHANGES_CHECKLIST.html b/docs/components.kuka.robotics/CHANGES_CHECKLIST.html index 97be4028f..739677288 100644 --- a/docs/components.kuka.robotics/CHANGES_CHECKLIST.html +++ b/docs/components.kuka.robotics/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/CREATION_CHECKLIST.html b/docs/components.kuka.robotics/CREATION_CHECKLIST.html index 9d0a6b59e..c48f5c803 100644 --- a/docs/components.kuka.robotics/CREATION_CHECKLIST.html +++ b/docs/components.kuka.robotics/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.kuka.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html index 22a3f5dc5..fac2b05e6 100644 --- a/docs/components.kuka.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.kuka.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/ctrl/README.html b/docs/components.kuka.robotics/ctrl/README.html index 81d32ae24..2964e73d1 100644 --- a/docs/components.kuka.robotics/ctrl/README.html +++ b/docs/components.kuka.robotics/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.kuka.robotics

+

@inxton/axopen.components.kuka.robotics

Description

-

The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework.

+

The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.kuka.robotics"
+
apax add "@inxton/axopen.components.kuka.robotics"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.kuka.robotics": '{axopen-version}'  
+  "@inxton/axopen.components.kuka.robotics": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/docs/CHANGELOG.html b/docs/components.kuka.robotics/docs/CHANGELOG.html index 3ce166c03..2a6a6ab40 100644 --- a/docs/components.kuka.robotics/docs/CHANGELOG.html +++ b/docs/components.kuka.robotics/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/docs/ComponentTemplate.html b/docs/components.kuka.robotics/docs/ComponentTemplate.html index 1be810eba..5a206572b 100644 --- a/docs/components.kuka.robotics/docs/ComponentTemplate.html +++ b/docs/components.kuka.robotics/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -171,7 +171,7 @@

Generic Read-Only view

@@ -188,7 +188,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/docs/Component_1.html b/docs/components.kuka.robotics/docs/Component_1.html index b2262d9ad..a63c70e70 100644 --- a/docs/components.kuka.robotics/docs/Component_1.html +++ b/docs/components.kuka.robotics/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -170,7 +170,7 @@

Generic Read-Only view

@@ -187,7 +187,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/docs/Component_2.html b/docs/components.kuka.robotics/docs/Component_2.html index 6788d3d60..1db42a1d1 100644 --- a/docs/components.kuka.robotics/docs/Component_2.html +++ b/docs/components.kuka.robotics/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -170,7 +170,7 @@

Generic Read-Only view

@@ -187,7 +187,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/docs/README.html b/docs/components.kuka.robotics/docs/README.html index 35e109258..33ed4533d 100644 --- a/docs/components.kuka.robotics/docs/README.html +++ b/docs/components.kuka.robotics/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework.

+

The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/docs/TROUBLES.html b/docs/components.kuka.robotics/docs/TROUBLES.html index c791ba545..3fb73724d 100644 --- a/docs/components.kuka.robotics/docs/TROUBLES.html +++ b/docs/components.kuka.robotics/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/docs/index.html b/docs/components.kuka.robotics/docs/index.html index 321df2ca7..1305ceec8 100644 --- a/docs/components.kuka.robotics/docs/index.html +++ b/docs/components.kuka.robotics/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/README.html b/docs/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/README.html index bea13c318..c5dc8c2bb 100644 --- a/docs/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/README.html +++ b/docs/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Kuka.Robotics.Blazor

Description

-

The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework.

+

The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/README.html b/docs/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/README.html index 4b44e5dd4..6a5ac7ec7 100644 --- a/docs/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/README.html +++ b/docs/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Kuka.Robotics

Description

-

The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework.

+

The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/CHANGES_CHECKLIST.html b/docs/components.mitsubishi.robotics/CHANGES_CHECKLIST.html index 5ac8e6259..a1e7bdea6 100644 --- a/docs/components.mitsubishi.robotics/CHANGES_CHECKLIST.html +++ b/docs/components.mitsubishi.robotics/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/CREATION_CHECKLIST.html b/docs/components.mitsubishi.robotics/CREATION_CHECKLIST.html index ca7c7da55..ba659b16d 100644 --- a/docs/components.mitsubishi.robotics/CREATION_CHECKLIST.html +++ b/docs/components.mitsubishi.robotics/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.mitsubishi.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html index a03287efa..72d685abb 100644 --- a/docs/components.mitsubishi.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.mitsubishi.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/ctrl/README.html b/docs/components.mitsubishi.robotics/ctrl/README.html index 0eaa2be26..600059c23 100644 --- a/docs/components.mitsubishi.robotics/ctrl/README.html +++ b/docs/components.mitsubishi.robotics/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.mitsubishi.robotics

+

@inxton/axopen.components.mitsubishi.robotics

Description

-

The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework.

+

The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.mitsubishi.robotics"
+
apax add "@inxton/axopen.components.mitsubishi.robotics"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.mitsubishi.robotics": '{axopen-version}'  
+  "@inxton/axopen.components.mitsubishi.robotics": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/docs/CHANGELOG.html b/docs/components.mitsubishi.robotics/docs/CHANGELOG.html index 5f3beac6a..30d6f2e07 100644 --- a/docs/components.mitsubishi.robotics/docs/CHANGELOG.html +++ b/docs/components.mitsubishi.robotics/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/docs/ComponentTemplate.html b/docs/components.mitsubishi.robotics/docs/ComponentTemplate.html index aaf456aba..a2ec2b84d 100644 --- a/docs/components.mitsubishi.robotics/docs/ComponentTemplate.html +++ b/docs/components.mitsubishi.robotics/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -238,7 +238,7 @@

Generic Read-Only view

@@ -255,7 +255,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/docs/Component_1.html b/docs/components.mitsubishi.robotics/docs/Component_1.html index 6c38e5ca7..5ff03b75d 100644 --- a/docs/components.mitsubishi.robotics/docs/Component_1.html +++ b/docs/components.mitsubishi.robotics/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -237,7 +237,7 @@

Generic Read-Only view

@@ -254,7 +254,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/docs/Component_2.html b/docs/components.mitsubishi.robotics/docs/Component_2.html index e1437683b..2c9a53f1d 100644 --- a/docs/components.mitsubishi.robotics/docs/Component_2.html +++ b/docs/components.mitsubishi.robotics/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Generic Read-Only view

@@ -168,7 +168,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/docs/README.html b/docs/components.mitsubishi.robotics/docs/README.html index 406c8662c..287869516 100644 --- a/docs/components.mitsubishi.robotics/docs/README.html +++ b/docs/components.mitsubishi.robotics/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework.

+

The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/docs/TROUBLES.html b/docs/components.mitsubishi.robotics/docs/TROUBLES.html index 1e22bae85..2f4d98210 100644 --- a/docs/components.mitsubishi.robotics/docs/TROUBLES.html +++ b/docs/components.mitsubishi.robotics/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/docs/index.html b/docs/components.mitsubishi.robotics/docs/index.html index 22e94c2a3..6a2de0ef9 100644 --- a/docs/components.mitsubishi.robotics/docs/index.html +++ b/docs/components.mitsubishi.robotics/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/README.html b/docs/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/README.html index 5a77bcb3d..43951d850 100644 --- a/docs/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/README.html +++ b/docs/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Mitsubishi.Robotics.Blazor

Description

-

The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework.

+

The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/README.html b/docs/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/README.html index 935736d0b..10f2cc9ad 100644 --- a/docs/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/README.html +++ b/docs/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Mitsubishi.Robotics

Description

-

The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework.

+

The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.pneumatics/app/ix-blazor/PneumaticComponents.blazor/wwwroot/css/open-iconic/README.html b/docs/components.pneumatics/app/ix-blazor/PneumaticComponents.blazor/wwwroot/css/open-iconic/README.html index 77c3e27d3..078c1cd5b 100644 --- a/docs/components.pneumatics/app/ix-blazor/PneumaticComponents.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.pneumatics/app/ix-blazor/PneumaticComponents.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.pneumatics/ctrl/docs/AXOCYLINDER.html b/docs/components.pneumatics/ctrl/docs/AXOCYLINDER.html index f3a7632d0..15aefd0fc 100644 --- a/docs/components.pneumatics/ctrl/docs/AXOCYLINDER.html +++ b/docs/components.pneumatics/ctrl/docs/AXOCYLINDER.html @@ -15,7 +15,7 @@ - + @@ -156,7 +156,7 @@
Note
@@ -173,7 +173,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.pneumatics/docs/AXOCYLINDER.html b/docs/components.pneumatics/docs/AXOCYLINDER.html index 0cd10d805..7d801e7c5 100644 --- a/docs/components.pneumatics/docs/AXOCYLINDER.html +++ b/docs/components.pneumatics/docs/AXOCYLINDER.html @@ -15,7 +15,7 @@ - + @@ -186,7 +186,7 @@
Note
@@ -203,7 +203,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.pneumatics/docs/HOWTO.html b/docs/components.pneumatics/docs/HOWTO.html index b80057c67..f683d9965 100644 --- a/docs/components.pneumatics/docs/HOWTO.html +++ b/docs/components.pneumatics/docs/HOWTO.html @@ -15,7 +15,7 @@ - + @@ -188,7 +188,7 @@
Note
@@ -205,7 +205,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.pneumatics/docs/README.html b/docs/components.pneumatics/docs/README.html index 19d81c5ac..083319c82 100644 --- a/docs/components.pneumatics/docs/README.html +++ b/docs/components.pneumatics/docs/README.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

AXOpenComponentsPneumatics

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -102,7 +102,7 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


Description

@@ -110,7 +110,7 @@

Description

@@ -127,7 +127,7 @@

Description

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.pneumatics/docs/TROUBLES.html b/docs/components.pneumatics/docs/TROUBLES.html index 2431ac9e3..eede8af63 100644 --- a/docs/components.pneumatics/docs/TROUBLES.html +++ b/docs/components.pneumatics/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.pneumatics/docs/index.html b/docs/components.pneumatics/docs/index.html index 929f54373..c544d795c 100644 --- a/docs/components.pneumatics/docs/index.html +++ b/docs/components.pneumatics/docs/index.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

AXOpenComponentsPneumatics

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -102,7 +102,7 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


Description

@@ -110,7 +110,7 @@

Description

@@ -127,7 +127,7 @@

Description

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/CHANGES_CHECKLIST.html b/docs/components.rexroth.drives/CHANGES_CHECKLIST.html index 6671160f9..2c2d3d89f 100644 --- a/docs/components.rexroth.drives/CHANGES_CHECKLIST.html +++ b/docs/components.rexroth.drives/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -123,7 +123,7 @@

Changelog file updates

@@ -140,7 +140,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/CREATION_CHECKLIST.html b/docs/components.rexroth.drives/CREATION_CHECKLIST.html index ecf3ca93a..ffd595f62 100644 --- a/docs/components.rexroth.drives/CREATION_CHECKLIST.html +++ b/docs/components.rexroth.drives/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.rexroth.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html index 8e255a6d1..1a6d61798 100644 --- a/docs/components.rexroth.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.rexroth.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/ctrl/README.html b/docs/components.rexroth.drives/ctrl/README.html index 5b3acab0b..e9944b7b8 100644 --- a/docs/components.rexroth.drives/ctrl/README.html +++ b/docs/components.rexroth.drives/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.rexroth.drives

+

@inxton/axopen.components.rexroth.drives

Description

-

The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

+

The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding package to your project

-
apax add "@ix-ax/axopen.components.rexroth.drives"
+
apax add "@inxton/axopen.components.rexroth.drives"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.rexroth.drives": '{axopen-version}'  
+  "@inxton/axopen.components.rexroth.drives": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/docs/CHANGELOG.html b/docs/components.rexroth.drives/docs/CHANGELOG.html index 07d370444..512176108 100644 --- a/docs/components.rexroth.drives/docs/CHANGELOG.html +++ b/docs/components.rexroth.drives/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/docs/ComponentTemplate.html b/docs/components.rexroth.drives/docs/ComponentTemplate.html index 0803aad32..ebacf5483 100644 --- a/docs/components.rexroth.drives/docs/ComponentTemplate.html +++ b/docs/components.rexroth.drives/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -479,7 +479,7 @@

Generic Read-Only view

@@ -496,7 +496,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/docs/Component_1.html b/docs/components.rexroth.drives/docs/Component_1.html index f4272c18f..3417f7125 100644 --- a/docs/components.rexroth.drives/docs/Component_1.html +++ b/docs/components.rexroth.drives/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -475,7 +475,7 @@

Generic Read-Only view

@@ -492,7 +492,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/docs/Component_2.html b/docs/components.rexroth.drives/docs/Component_2.html index b56ac50a1..3cd637a0b 100644 --- a/docs/components.rexroth.drives/docs/Component_2.html +++ b/docs/components.rexroth.drives/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Generic Read-Only view

@@ -168,7 +168,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/docs/README.html b/docs/components.rexroth.drives/docs/README.html index 281ffd345..924ce23da 100644 --- a/docs/components.rexroth.drives/docs/README.html +++ b/docs/components.rexroth.drives/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

+

The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/docs/TROUBLES.html b/docs/components.rexroth.drives/docs/TROUBLES.html index 665c54680..95c91a656 100644 --- a/docs/components.rexroth.drives/docs/TROUBLES.html +++ b/docs/components.rexroth.drives/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/docs/index.html b/docs/components.rexroth.drives/docs/index.html index a8caaf346..a0c32d3bb 100644 --- a/docs/components.rexroth.drives/docs/index.html +++ b/docs/components.rexroth.drives/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/README.html b/docs/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/README.html index 3dc2bebe1..9d498c6ca 100644 --- a/docs/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/README.html +++ b/docs/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Rexroth.Drives.Blazor

Description

-

The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

+

The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/README.html b/docs/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/README.html index 0fe5d6efb..f3608e5dc 100644 --- a/docs/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/README.html +++ b/docs/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Rexroth.Drives

Description

-

The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

+

The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/CHANGES_CHECKLIST.html b/docs/components.rexroth.press/CHANGES_CHECKLIST.html index 0bc6e2d8e..343a14948 100644 --- a/docs/components.rexroth.press/CHANGES_CHECKLIST.html +++ b/docs/components.rexroth.press/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/CREATION_CHECKLIST.html b/docs/components.rexroth.press/CREATION_CHECKLIST.html index 8795b797d..40111292b 100644 --- a/docs/components.rexroth.press/CREATION_CHECKLIST.html +++ b/docs/components.rexroth.press/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.rexroth.press/app/ix-blazor/wwwroot/css/open-iconic/README.html index a29a3d7a8..97e0653b3 100644 --- a/docs/components.rexroth.press/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.rexroth.press/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/ctrl/README.html b/docs/components.rexroth.press/ctrl/README.html index 7125ded93..809728878 100644 --- a/docs/components.rexroth.press/ctrl/README.html +++ b/docs/components.rexroth.press/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.rexroth.press

+

@inxton/axopen.components.rexroth.press

Description

-

The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

+

The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.rexroth.press"
+
apax add "@inxton/axopen.components.rexroth.press"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.rexroth.press": '{axopen-version}'  
+  "@inxton/axopen.components.rexroth.press": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/docs/CHANGELOG.html b/docs/components.rexroth.press/docs/CHANGELOG.html index af8f782c6..e650aa746 100644 --- a/docs/components.rexroth.press/docs/CHANGELOG.html +++ b/docs/components.rexroth.press/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/docs/ComponentTemplate.html b/docs/components.rexroth.press/docs/ComponentTemplate.html index 90ce027b3..0ab4e78de 100644 --- a/docs/components.rexroth.press/docs/ComponentTemplate.html +++ b/docs/components.rexroth.press/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -260,7 +260,7 @@

Generic Read-Only view

@@ -277,7 +277,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/docs/Component_1.html b/docs/components.rexroth.press/docs/Component_1.html index 34eeff05c..6d9da67e6 100644 --- a/docs/components.rexroth.press/docs/Component_1.html +++ b/docs/components.rexroth.press/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -259,7 +259,7 @@

Generic Read-Only view

@@ -276,7 +276,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/docs/Component_2.html b/docs/components.rexroth.press/docs/Component_2.html index 6933c0b1d..57544201b 100644 --- a/docs/components.rexroth.press/docs/Component_2.html +++ b/docs/components.rexroth.press/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Generic Read-Only view

@@ -168,7 +168,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/docs/README.html b/docs/components.rexroth.press/docs/README.html index daec59874..c053121c3 100644 --- a/docs/components.rexroth.press/docs/README.html +++ b/docs/components.rexroth.press/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

+

The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/docs/TROUBLES.html b/docs/components.rexroth.press/docs/TROUBLES.html index c55cbcabc..84a938aa5 100644 --- a/docs/components.rexroth.press/docs/TROUBLES.html +++ b/docs/components.rexroth.press/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/docs/index.html b/docs/components.rexroth.press/docs/index.html index 05ea28ec0..b3a8f57ef 100644 --- a/docs/components.rexroth.press/docs/index.html +++ b/docs/components.rexroth.press/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/README.html b/docs/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/README.html index 59424c8ea..5c5f2f159 100644 --- a/docs/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/README.html +++ b/docs/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Rexroth.Press.Blazor

Description

-

The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

+

The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/README.html b/docs/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/README.html index 4d7508b2d..f45fae0df 100644 --- a/docs/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/README.html +++ b/docs/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Rexroth.Press

Description

-

The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

+

The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/CHANGES_CHECKLIST.html b/docs/components.robotics/CHANGES_CHECKLIST.html index 88d2c6bb9..a8b442fa5 100644 --- a/docs/components.robotics/CHANGES_CHECKLIST.html +++ b/docs/components.robotics/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/CREATION_CHECKLIST.html b/docs/components.robotics/CREATION_CHECKLIST.html index 250d4d66f..c41f2ac28 100644 --- a/docs/components.robotics/CREATION_CHECKLIST.html +++ b/docs/components.robotics/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html index 96d3c3b22..2ddf39d86 100644 --- a/docs/components.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/ctrl/README.html b/docs/components.robotics/ctrl/README.html index 1800efa4a..eb5f05264 100644 --- a/docs/components.robotics/ctrl/README.html +++ b/docs/components.robotics/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.robotics

+

@inxton/axopen.components.robotics

Description

-

The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework.

+

The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.robotics"
+
apax add "@inxton/axopen.components.robotics"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.robotics": '{axopen-version}'  
+  "@inxton/axopen.components.robotics": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/docs/CHANGELOG.html b/docs/components.robotics/docs/CHANGELOG.html index ee950964a..bd1044c7b 100644 --- a/docs/components.robotics/docs/CHANGELOG.html +++ b/docs/components.robotics/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/docs/ComponentTemplate.html b/docs/components.robotics/docs/ComponentTemplate.html index f9d05e675..5881b98f7 100644 --- a/docs/components.robotics/docs/ComponentTemplate.html +++ b/docs/components.robotics/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Generic Read-Only view

@@ -169,7 +169,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/docs/Component_1.html b/docs/components.robotics/docs/Component_1.html index 8f6d976c4..7989a3c8b 100644 --- a/docs/components.robotics/docs/Component_1.html +++ b/docs/components.robotics/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Generic Read-Only view

@@ -168,7 +168,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/docs/Component_2.html b/docs/components.robotics/docs/Component_2.html index 734db1624..1c773dae6 100644 --- a/docs/components.robotics/docs/Component_2.html +++ b/docs/components.robotics/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Generic Read-Only view

@@ -168,7 +168,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/docs/README.html b/docs/components.robotics/docs/README.html index db0558e0e..16b89cf28 100644 --- a/docs/components.robotics/docs/README.html +++ b/docs/components.robotics/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework.

+

The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/docs/TROUBLES.html b/docs/components.robotics/docs/TROUBLES.html index f0f30123e..b8d401d0b 100644 --- a/docs/components.robotics/docs/TROUBLES.html +++ b/docs/components.robotics/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/docs/index.html b/docs/components.robotics/docs/index.html index 45f4dd407..52d6a24a6 100644 --- a/docs/components.robotics/docs/index.html +++ b/docs/components.robotics/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/src/AXOpen.Components.Robotics.blazor/README.html b/docs/components.robotics/src/AXOpen.Components.Robotics.blazor/README.html index 7600ccf7e..429349054 100644 --- a/docs/components.robotics/src/AXOpen.Components.Robotics.blazor/README.html +++ b/docs/components.robotics/src/AXOpen.Components.Robotics.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Robotics.Blazor

Description

-

The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework.

+

The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.robotics/src/AXOpen.Components.Robotics/README.html b/docs/components.robotics/src/AXOpen.Components.Robotics/README.html index ecd6b3bea..f6d1737b3 100644 --- a/docs/components.robotics/src/AXOpen.Components.Robotics/README.html +++ b/docs/components.robotics/src/AXOpen.Components.Robotics/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Robotics

Description

-

The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework.

+

The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/CHANGES_CHECKLIST.html b/docs/components.siemens.identification/CHANGES_CHECKLIST.html index 3f9ce1bd7..b89d1f189 100644 --- a/docs/components.siemens.identification/CHANGES_CHECKLIST.html +++ b/docs/components.siemens.identification/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/CREATION_CHECKLIST.html b/docs/components.siemens.identification/CREATION_CHECKLIST.html index d101e4b69..9daa2c866 100644 --- a/docs/components.siemens.identification/CREATION_CHECKLIST.html +++ b/docs/components.siemens.identification/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.siemens.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html index 4c86adaee..a3e80bf04 100644 --- a/docs/components.siemens.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.siemens.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/ctrl/README.html b/docs/components.siemens.identification/ctrl/README.html index 3ebb29333..219fa4ff7 100644 --- a/docs/components.siemens.identification/ctrl/README.html +++ b/docs/components.siemens.identification/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.siemens.identification

+

@inxton/axopen.components.siemens.identification

Description

-

The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework.

+

The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.siemens.identification"
+
apax add "@inxton/axopen.components.siemens.identification"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.siemens.identification": '{axopen-version}'  
+  "@inxton/axopen.components.siemens.identification": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/docs/CHANGELOG.html b/docs/components.siemens.identification/docs/CHANGELOG.html index b33778a83..3361c6477 100644 --- a/docs/components.siemens.identification/docs/CHANGELOG.html +++ b/docs/components.siemens.identification/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/docs/ComponentTemplate.html b/docs/components.siemens.identification/docs/ComponentTemplate.html index 059e1cf5f..268a838c0 100644 --- a/docs/components.siemens.identification/docs/ComponentTemplate.html +++ b/docs/components.siemens.identification/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -230,7 +230,7 @@

Generic Read-Only view

@@ -247,7 +247,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/docs/Component_1.html b/docs/components.siemens.identification/docs/Component_1.html index 880b4bf18..66be92cb3 100644 --- a/docs/components.siemens.identification/docs/Component_1.html +++ b/docs/components.siemens.identification/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -229,7 +229,7 @@

Generic Read-Only view

@@ -246,7 +246,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/docs/Component_2.html b/docs/components.siemens.identification/docs/Component_2.html index dba046b3b..a9d1a4904 100644 --- a/docs/components.siemens.identification/docs/Component_2.html +++ b/docs/components.siemens.identification/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -192,7 +192,7 @@

Generic Read-Only view

@@ -209,7 +209,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/docs/README.html b/docs/components.siemens.identification/docs/README.html index 6de78884d..8163a3eee 100644 --- a/docs/components.siemens.identification/docs/README.html +++ b/docs/components.siemens.identification/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework.

+

The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/docs/TROUBLES.html b/docs/components.siemens.identification/docs/TROUBLES.html index 676113892..3a61392da 100644 --- a/docs/components.siemens.identification/docs/TROUBLES.html +++ b/docs/components.siemens.identification/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/docs/index.html b/docs/components.siemens.identification/docs/index.html index f54f8b4fb..b8806157c 100644 --- a/docs/components.siemens.identification/docs/index.html +++ b/docs/components.siemens.identification/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/src/AXOpen.Components.Siemens.Identification.blazor/README.html b/docs/components.siemens.identification/src/AXOpen.Components.Siemens.Identification.blazor/README.html index f3adcd849..64a9db3e9 100644 --- a/docs/components.siemens.identification/src/AXOpen.Components.Siemens.Identification.blazor/README.html +++ b/docs/components.siemens.identification/src/AXOpen.Components.Siemens.Identification.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Siemens.Identification.Blazor

Description

-

The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework.

+

The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.siemens.identification/src/AXOpen.Components.Siemens.Identification/README.html b/docs/components.siemens.identification/src/AXOpen.Components.Siemens.Identification/README.html index 283d69397..c2293babb 100644 --- a/docs/components.siemens.identification/src/AXOpen.Components.Siemens.Identification/README.html +++ b/docs/components.siemens.identification/src/AXOpen.Components.Siemens.Identification/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Siemens.Identification

Description

-

The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework.

+

The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/CHANGES_CHECKLIST.html b/docs/components.ur.robotics/CHANGES_CHECKLIST.html index bbde85b42..0f01a9c9e 100644 --- a/docs/components.ur.robotics/CHANGES_CHECKLIST.html +++ b/docs/components.ur.robotics/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/CREATION_CHECKLIST.html b/docs/components.ur.robotics/CREATION_CHECKLIST.html index de96ab326..c9973a7b9 100644 --- a/docs/components.ur.robotics/CREATION_CHECKLIST.html +++ b/docs/components.ur.robotics/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/components.ur.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html index d50400399..e7ce6ce93 100644 --- a/docs/components.ur.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/components.ur.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/ctrl/README.html b/docs/components.ur.robotics/ctrl/README.html index a67f674cf..ab2b867d1 100644 --- a/docs/components.ur.robotics/ctrl/README.html +++ b/docs/components.ur.robotics/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,14 +87,14 @@
Table of Contents
-

@ix-ax/axopen.components.ur.robotics

+

@inxton/axopen.components.ur.robotics

Description

-

The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework.

+

The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

APAX package registry

Important
@@ -105,23 +105,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.components.ur.robotics"
+
apax add "@inxton/axopen.components.ur.robotics"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.components.ur.robotics": '{axopen-version}'  
+  "@inxton/axopen.components.ur.robotics": '{axopen-version}'  
 
@@ -138,7 +138,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/docs/CHANGELOG.html b/docs/components.ur.robotics/docs/CHANGELOG.html index b669b5f2d..b81f2ddfe 100644 --- a/docs/components.ur.robotics/docs/CHANGELOG.html +++ b/docs/components.ur.robotics/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/docs/ComponentTemplate.html b/docs/components.ur.robotics/docs/ComponentTemplate.html index a5910187c..909609565 100644 --- a/docs/components.ur.robotics/docs/ComponentTemplate.html +++ b/docs/components.ur.robotics/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -253,7 +253,7 @@

Generic Read-Only view

@@ -270,7 +270,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/docs/Component_1.html b/docs/components.ur.robotics/docs/Component_1.html index f9fea6579..a7ca6016a 100644 --- a/docs/components.ur.robotics/docs/Component_1.html +++ b/docs/components.ur.robotics/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -252,7 +252,7 @@

Generic Read-Only view

@@ -269,7 +269,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/docs/Component_2.html b/docs/components.ur.robotics/docs/Component_2.html index ba5068c40..bbc0ee563 100644 --- a/docs/components.ur.robotics/docs/Component_2.html +++ b/docs/components.ur.robotics/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -151,7 +151,7 @@

Generic Read-Only view

@@ -168,7 +168,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/docs/README.html b/docs/components.ur.robotics/docs/README.html index ca4332bb4..56db7320e 100644 --- a/docs/components.ur.robotics/docs/README.html +++ b/docs/components.ur.robotics/docs/README.html @@ -15,7 +15,7 @@ - + @@ -89,15 +89,15 @@
Table of Contents

Description

-

The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework.

+

The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

@@ -114,7 +114,7 @@
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/docs/TROUBLES.html b/docs/components.ur.robotics/docs/TROUBLES.html index 35c97c4e5..8443544f7 100644 --- a/docs/components.ur.robotics/docs/TROUBLES.html +++ b/docs/components.ur.robotics/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/docs/index.html b/docs/components.ur.robotics/docs/index.html index f276e7fca..9824064a5 100644 --- a/docs/components.ur.robotics/docs/index.html +++ b/docs/components.ur.robotics/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/README.html b/docs/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/README.html index fdde41527..a6370a0fe 100644 --- a/docs/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/README.html +++ b/docs/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Ur.Robotics.Blazor

Description

-

The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework.

+

The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -118,7 +118,7 @@

Package reference

@@ -135,7 +135,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/README.html b/docs/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/README.html index cccc04f3a..47514de9c 100644 --- a/docs/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/README.html +++ b/docs/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/README.html @@ -15,7 +15,7 @@ - + @@ -90,18 +90,18 @@
Table of Contents

AXOpen.Components.Ur.Robotics

Description

-

The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework.

+

The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework.

The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family.

Siemens AX-documentation

-

AxOpen-documentation

+

AxOpen-documentation

NuGet package feed

Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -119,7 +119,7 @@

Package reference

@@ -136,7 +136,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/app/ix-blazor/axopencore.blazor/wwwroot/css/open-iconic/README.html b/docs/core/app/ix-blazor/axopencore.blazor/wwwroot/css/open-iconic/README.html index 228f6a2db..8258fbb7c 100644 --- a/docs/core/app/ix-blazor/axopencore.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/core/app/ix-blazor/axopencore.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/ctrl/README.html b/docs/core/ctrl/README.html index 46b85758d..5799b1f0b 100644 --- a/docs/core/ctrl/README.html +++ b/docs/core/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents
@@ -108,7 +108,7 @@
Table of Contents
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOALERTDIALOG.html b/docs/core/docs/AXOALERTDIALOG.html index 2d2e8d27c..263a08ef0 100644 --- a/docs/core/docs/AXOALERTDIALOG.html +++ b/docs/core/docs/AXOALERTDIALOG.html @@ -15,7 +15,7 @@ - + @@ -185,7 +185,7 @@
Note
@@ -202,7 +202,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOCOMPONENT.html b/docs/core/docs/AXOCOMPONENT.html index 794cc4b46..ea76892cf 100644 --- a/docs/core/docs/AXOCOMPONENT.html +++ b/docs/core/docs/AXOCOMPONENT.html @@ -15,7 +15,7 @@ - + @@ -455,7 +455,7 @@

5. Active Errors

@@ -472,7 +472,7 @@

5. Active Errors

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOCONTEXT.html b/docs/core/docs/AXOCONTEXT.html index ef5b468c0..9a8ae2a12 100644 --- a/docs/core/docs/AXOCONTEXT.html +++ b/docs/core/docs/AXOCONTEXT.html @@ -15,7 +15,7 @@ - + @@ -135,7 +135,7 @@

How to use AxoContext

@@ -152,7 +152,7 @@

How to use AxoContext

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXODIALOG.html b/docs/core/docs/AXODIALOG.html index efc6cf74b..d656445b5 100644 --- a/docs/core/docs/AXODIALOG.html +++ b/docs/core/docs/AXODIALOG.html @@ -15,7 +15,7 @@ - + @@ -269,7 +269,7 @@

.Net integration UML

@@ -286,7 +286,7 @@

.Net integration UML

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOLOGGER.html b/docs/core/docs/AXOLOGGER.html index 12816d225..5a40343ef 100644 --- a/docs/core/docs/AXOLOGGER.html +++ b/docs/core/docs/AXOLOGGER.html @@ -15,7 +15,7 @@ - + @@ -254,7 +254,7 @@
Important
@@ -271,7 +271,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOMESSENGER.html b/docs/core/docs/AXOMESSENGER.html index 393bc20db..a912863dc 100644 --- a/docs/core/docs/AXOMESSENGER.html +++ b/docs/core/docs/AXOMESSENGER.html @@ -15,7 +15,7 @@ - + @@ -175,7 +175,7 @@
Note
@@ -192,7 +192,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOMOMENTARYTASK.html b/docs/core/docs/AXOMOMENTARYTASK.html index c163bc765..3d4d06ee5 100644 --- a/docs/core/docs/AXOMOMENTARYTASK.html +++ b/docs/core/docs/AXOMOMENTARYTASK.html @@ -15,7 +15,7 @@ - + @@ -184,7 +184,7 @@

AxoMomentaryTask

@@ -201,7 +201,7 @@

AxoMomentaryTask

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOOBJECT.html b/docs/core/docs/AXOOBJECT.html index 3c8e77f2d..063538727 100644 --- a/docs/core/docs/AXOOBJECT.html +++ b/docs/core/docs/AXOOBJECT.html @@ -15,7 +15,7 @@ - + @@ -120,7 +120,7 @@

AxoObject

@@ -137,7 +137,7 @@

AxoObject

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOREMOTETASK.html b/docs/core/docs/AXOREMOTETASK.html index b6bb1167a..3bc9f6523 100644 --- a/docs/core/docs/AXOREMOTETASK.html +++ b/docs/core/docs/AXOREMOTETASK.html @@ -15,7 +15,7 @@ - + @@ -162,7 +162,7 @@

Executing from PLC

@@ -179,7 +179,7 @@

Executing from PLC

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOSEQUENCER.html b/docs/core/docs/AXOSEQUENCER.html index b30bb5332..efa3560c6 100644 --- a/docs/core/docs/AXOSEQUENCER.html +++ b/docs/core/docs/AXOSEQUENCER.html @@ -15,7 +15,7 @@ - + @@ -200,7 +200,7 @@

Example of t

@@ -217,7 +217,7 @@

Example of t
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOSEQUENCERCONTAINER.html b/docs/core/docs/AXOSEQUENCERCONTAINER.html index fce9ae54a..c83d7859b 100644 --- a/docs/core/docs/AXOSEQUENCERCONTAINER.html +++ b/docs/core/docs/AXOSEQUENCERCONTAINER.html @@ -15,7 +15,7 @@ - + @@ -141,7 +141,7 @@

- Edit this page + Edit this page @@ -158,7 +158,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOSTEP.html b/docs/core/docs/AXOSTEP.html index dbaf9c7d4..fbb55cbe8 100644 --- a/docs/core/docs/AXOSTEP.html +++ b/docs/core/docs/AXOSTEP.html @@ -15,7 +15,7 @@ - + @@ -106,7 +106,7 @@

AxoStep

@@ -123,7 +123,7 @@

AxoStep

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOTASK.html b/docs/core/docs/AXOTASK.html index 9b97dd4aa..2044dd399 100644 --- a/docs/core/docs/AXOTASK.html +++ b/docs/core/docs/AXOTASK.html @@ -15,7 +15,7 @@ - + @@ -321,7 +321,7 @@

AxoTask

@@ -338,7 +338,7 @@

AxoTask

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOTEXTLIST.html b/docs/core/docs/AXOTEXTLIST.html index e476846cd..90af7e1b9 100644 --- a/docs/core/docs/AXOTEXTLIST.html +++ b/docs/core/docs/AXOTEXTLIST.html @@ -15,7 +15,7 @@ - + @@ -223,7 +223,7 @@

AxoTextList

@@ -240,7 +240,7 @@

AxoTextList

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/AXOTOGGLETASK.html b/docs/core/docs/AXOTOGGLETASK.html index b8d6fcc57..249ac6bed 100644 --- a/docs/core/docs/AXOTOGGLETASK.html +++ b/docs/core/docs/AXOTOGGLETASK.html @@ -15,7 +15,7 @@ - + @@ -207,7 +207,7 @@

AxoToggleTask

@@ -224,7 +224,7 @@

AxoToggleTask

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/README.html b/docs/core/docs/README.html index a0424c59c..5d8ac9ef6 100644 --- a/docs/core/docs/README.html +++ b/docs/core/docs/README.html @@ -15,7 +15,7 @@ - + @@ -92,7 +92,7 @@

AXOpen.Core

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -101,7 +101,7 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -126,7 +126,7 @@
Note
@@ -143,7 +143,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/core/docs/index.html b/docs/core/docs/index.html index 20523ffa3..dbc650cb3 100644 --- a/docs/core/docs/index.html +++ b/docs/core/docs/index.html @@ -15,7 +15,7 @@ - + @@ -92,7 +92,7 @@

AXOpen.Core

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -101,7 +101,7 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -126,7 +126,7 @@
Note
@@ -143,7 +143,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html b/docs/data/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html index 2adff7c69..4899a4085 100644 --- a/docs/data/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/data/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/ctrl/README.html b/docs/data/ctrl/README.html index b617b2ad1..aa6852b33 100644 --- a/docs/data/ctrl/README.html +++ b/docs/data/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -548,7 +548,7 @@

AxoComponent

@@ -565,7 +565,7 @@

AxoComponent

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/AxoDataExchange.html b/docs/data/docs/AxoDataExchange.html index 69a67de35..1f0eea1ae 100644 --- a/docs/data/docs/AxoDataExchange.html +++ b/docs/data/docs/AxoDataExchange.html @@ -15,7 +15,7 @@ - + @@ -223,7 +223,7 @@
Note
@@ -240,7 +240,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/AxoDataFragmentExchange.html b/docs/data/docs/AxoDataFragmentExchange.html index 4e5f84203..647377d78 100644 --- a/docs/data/docs/AxoDataFragmentExchange.html +++ b/docs/data/docs/AxoDataFragmentExchange.html @@ -15,7 +15,7 @@ - + @@ -217,7 +217,7 @@
Note
@@ -234,7 +234,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/AxoDataPersistentExchange.html b/docs/data/docs/AxoDataPersistentExchange.html index d7f0e41dc..18ab74887 100644 --- a/docs/data/docs/AxoDataPersistentExchange.html +++ b/docs/data/docs/AxoDataPersistentExchange.html @@ -15,7 +15,7 @@ - + @@ -230,7 +230,7 @@
Warning
@@ -247,7 +247,7 @@
Warning
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/COLUMNS.html b/docs/data/docs/COLUMNS.html index 0f86f2396..d0ad19fe6 100644 --- a/docs/data/docs/COLUMNS.html +++ b/docs/data/docs/COLUMNS.html @@ -15,7 +15,7 @@ - + @@ -137,7 +137,7 @@
Note
@@ -154,7 +154,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/EXPORT.html b/docs/data/docs/EXPORT.html index c352978da..e8ebb5a8d 100644 --- a/docs/data/docs/EXPORT.html +++ b/docs/data/docs/EXPORT.html @@ -15,7 +15,7 @@ - + @@ -109,7 +109,7 @@
Important
@@ -126,7 +126,7 @@
Important
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/MODALVIEW.html b/docs/data/docs/MODALVIEW.html index df406630f..bd99760d3 100644 --- a/docs/data/docs/MODALVIEW.html +++ b/docs/data/docs/MODALVIEW.html @@ -15,7 +15,7 @@ - + @@ -96,7 +96,7 @@

Modal detail view

@@ -113,7 +113,7 @@

Modal detail view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/README.html b/docs/data/docs/README.html index 7820992ab..bd15a5aad 100644 --- a/docs/data/docs/README.html +++ b/docs/data/docs/README.html @@ -15,7 +15,7 @@ - + @@ -107,7 +107,7 @@

Implemented repositories

[!include[AxoDataExchange](docs/AxoDataExchange.md)][!include[AxoDataFragmentExchange](docs/AxoDataFragmentExchange.md)] @@ -124,7 +124,7 @@

Implemented repositories

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/SECURITY.html b/docs/data/docs/SECURITY.html index e5685f193..639d4efe3 100644 --- a/docs/data/docs/SECURITY.html +++ b/docs/data/docs/SECURITY.html @@ -15,7 +15,7 @@ - + @@ -133,7 +133,7 @@

Hashing

@@ -150,7 +150,7 @@

Hashing

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/SORT.html b/docs/data/docs/SORT.html index 32ae3586d..f2015f622 100644 --- a/docs/data/docs/SORT.html +++ b/docs/data/docs/SORT.html @@ -15,7 +15,7 @@ - + @@ -102,7 +102,7 @@

Sorting

@@ -119,7 +119,7 @@

Sorting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/USAGE.html b/docs/data/docs/USAGE.html index cc5c28b77..213285d93 100644 --- a/docs/data/docs/USAGE.html +++ b/docs/data/docs/USAGE.html @@ -15,7 +15,7 @@ - + @@ -132,7 +132,7 @@

Usage

@@ -149,7 +149,7 @@

Usage

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/VISUALIZATION.html b/docs/data/docs/VISUALIZATION.html index 685599b66..6a7f79098 100644 --- a/docs/data/docs/VISUALIZATION.html +++ b/docs/data/docs/VISUALIZATION.html @@ -15,7 +15,7 @@ - + @@ -101,7 +101,7 @@

Automated rendering @@ -118,7 +118,7 @@

Automated rendering
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/docs/index.html b/docs/data/docs/index.html index 099bf55bb..4ed7daf5e 100644 --- a/docs/data/docs/index.html +++ b/docs/data/docs/index.html @@ -15,7 +15,7 @@ - + @@ -107,7 +107,7 @@

Implemented repositories

[!include[AxoDataExchange](docs/AxoDataExchange.md)][!include[AxoDataFragmentExchange](docs/AxoDataFragmentExchange.md)] @@ -124,7 +124,7 @@

Implemented repositories

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/src/exporters/AXOpen.Data.Exporters.Excel/ExcelData.html b/docs/data/src/exporters/AXOpen.Data.Exporters.Excel/ExcelData.html index fe657b43b..421ada652 100644 --- a/docs/data/src/exporters/AXOpen.Data.Exporters.Excel/ExcelData.html +++ b/docs/data/src/exporters/AXOpen.Data.Exporters.Excel/ExcelData.html @@ -15,7 +15,7 @@ - + @@ -113,7 +113,7 @@

Limitations of .xlsx

@@ -130,7 +130,7 @@

Limitations of .xlsx

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/data/src/repositories/RavenDb/README.html b/docs/data/src/repositories/RavenDb/README.html index f18516f45..d86c3d3e5 100644 --- a/docs/data/src/repositories/RavenDb/README.html +++ b/docs/data/src/repositories/RavenDb/README.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Commercial projects

@@ -141,7 +141,7 @@

Commercial projects

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/index.html b/docs/index.html index 6cc1bed25..928a21f55 100644 --- a/docs/index.html +++ b/docs/index.html @@ -15,7 +15,7 @@ - + @@ -93,8 +93,8 @@
Table of Contents

AXOpen is an open-source application framework project developed by a group of automation engineers. It is based on SIMATIC AX platfrom and AX# technology

Source repositories

    -
  • Underlying technology of AXOpen AX#
  • -
  • Sources of AXOpen framework AXOpen
  • +
  • Underlying technology of AXOpen AX#
  • +
  • Sources of AXOpen framework AXOpen
Note
@@ -110,7 +110,7 @@

- Edit this page + Edit this page

@@ -127,7 +127,7 @@

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/index.json b/docs/index.json index 0153af0cd..63972d2f1 100644 --- a/docs/index.json +++ b/docs/index.json @@ -7,7 +7,7 @@ "README.html": { "href": "README.html", "title": "About this Repository | System.Dynamic.ExpandoObject", - "keywords": "About this Repository Pre-requisites APAX 3.1.1 AXCODE DOTNET 7.0.8.0 VSCODE or VS2022 Add package source To get access to the packages from AX# and AXOpen you will need to authenticate to a dedicated package feed hosted on GitHub. Authentication is free. If you do not have a GitHub account please consider creating one by signing up at https://github.com. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Checking pre-requisites using script To check pre-requisites in your enviroment run check_requisites.ps1 script. # cd into your `axopen` folder .\\scripts\\check_requisites.ps1 Build this repository In order to build this repostory run build.ps1 script. # cd into your `axopen` folder .\\build.ps1 Directory Structure docfx Contains documentation for this repository. docfx/ │ ├── api/ │ └── API for .NET part of the framework (autogenerated from code) │ ├── apictlr/ │ └── API for controller part of the framework (autogenerated from code) │ ├── apidoc/ │ └── Table of contents for API documentation │ ├── articles/ │ └── Various articles │ ├── components/ │ ├── Documentation for components │ └── toc.yml (new component library doc ref needs to be added here) │ ├── framework/ │ ├── Documentation for framework │ └── toc.yml (new framework library doc ref needs to be added here) │ ├── images/ │ └── Icons and images (some are used in articles) │ └── templates/ └── Documentation site templates Note When adding a new library, update components/toc.yml for components and framework/toc.yml for framework libraries manually. To test the documentation, run the following script from the repository root folder: .\\scripts\\build_test_docu.ps1 It will create docs-test folder that is git-ignored. docs The docs folder contains the documentation site. It should be generated on the appropriate branch used to publish the documentation. Important Never commit changes to the docs directory! scripts Contains various scripts. src Contains all source code related to AXOpen. Each library is placed in a separate directory which has: library/ │ ├── app/ │ └── Sandbox for testing the library, integration tests, and documentation code (linked to the library's actual documentation) │ ├── ctrl/ │ ├── src/ # Library source code │ ├── tests/ # Unit tests │ └── docs/ # (optional) Controller code documentation │ ├── src/ # .NET twin and Blazor twin │ ├── tests/ # Tests of various levels │ ├── docs/ # Library documentation │ ├── this.proj # Traversal project. Use to create a solution file for this library [see](README.md#creating-solution-file-from-traversal-project-file) │ └── slngen.ps # Generates solution file from `this.proj` APAX Package Versions Important All apax packages on the default branch (dev) have a fixed version '0.0.0-dev.0'. This version must not be changed by any commit. The version is assigned at build time in the CI/CD pipeline. Central Package Management System This project's NuGet packages versions are organized centrally. You shouldn't assign a package version in your project file. In exceptional cases, you can use a version override. Actual versions are defined in src/Directory.Packages.props. For more information on central package management, visit here. Directory-Based Build Some build aspects of all .NET projects are defined in src/Directory.Build.props. Learn more here. Creating Solution File from Traversal Project File You will find several traversal *.proj files. These are used in the CI/CD process in place of solution *.sln files. To create solution files from traversal files, use: dotnet slngen [traversal-project-name].proj -o [output-solution-file].sln --folders true --launch false Important Re-create your solution whenever the repository changes to refresh newly added, removed, or modified projects. You can then open the solution file in Visual Studio as needed." + "keywords": "About this Repository Pre-requisites APAX 3.1.1 AXCODE DOTNET 7.0.8.0 VSCODE or VS2022 Add package source To get access to the packages from AX# and AXOpen you will need to authenticate to a dedicated package feed hosted on GitHub. Authentication is free. If you do not have a GitHub account please consider creating one by signing up at https://github.com. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Checking pre-requisites using script To check pre-requisites in your enviroment run check_requisites.ps1 script. # cd into your `axopen` folder .\\scripts\\check_requisites.ps1 Build this repository In order to build this repostory run build.ps1 script. # cd into your `axopen` folder .\\build.ps1 Directory Structure docfx Contains documentation for this repository. docfx/ │ ├── api/ │ └── API for .NET part of the framework (autogenerated from code) │ ├── apictlr/ │ └── API for controller part of the framework (autogenerated from code) │ ├── apidoc/ │ └── Table of contents for API documentation │ ├── articles/ │ └── Various articles │ ├── components/ │ ├── Documentation for components │ └── toc.yml (new component library doc ref needs to be added here) │ ├── framework/ │ ├── Documentation for framework │ └── toc.yml (new framework library doc ref needs to be added here) │ ├── images/ │ └── Icons and images (some are used in articles) │ └── templates/ └── Documentation site templates Note When adding a new library, update components/toc.yml for components and framework/toc.yml for framework libraries manually. To test the documentation, run the following script from the repository root folder: .\\scripts\\build_test_docu.ps1 It will create docs-test folder that is git-ignored. docs The docs folder contains the documentation site. It should be generated on the appropriate branch used to publish the documentation. Important Never commit changes to the docs directory! scripts Contains various scripts. src Contains all source code related to AXOpen. Each library is placed in a separate directory which has: library/ │ ├── app/ │ └── Sandbox for testing the library, integration tests, and documentation code (linked to the library's actual documentation) │ ├── ctrl/ │ ├── src/ # Library source code │ ├── tests/ # Unit tests │ └── docs/ # (optional) Controller code documentation │ ├── src/ # .NET twin and Blazor twin │ ├── tests/ # Tests of various levels │ ├── docs/ # Library documentation │ ├── this.proj # Traversal project. Use to create a solution file for this library [see](README.md#creating-solution-file-from-traversal-project-file) │ └── slngen.ps # Generates solution file from `this.proj` APAX Package Versions Important All apax packages on the default branch (dev) have a fixed version '0.0.0-dev.0'. This version must not be changed by any commit. The version is assigned at build time in the CI/CD pipeline. Central Package Management System This project's NuGet packages versions are organized centrally. You shouldn't assign a package version in your project file. In exceptional cases, you can use a version override. Actual versions are defined in src/Directory.Packages.props. For more information on central package management, visit here. Directory-Based Build Some build aspects of all .NET projects are defined in src/Directory.Build.props. Learn more here. Creating Solution File from Traversal Project File You will find several traversal *.proj files. These are used in the CI/CD process in place of solution *.sln files. To create solution files from traversal files, use: dotnet slngen [traversal-project-name].proj -o [output-solution-file].sln --folders true --launch false Important Re-create your solution whenever the repository changes to refresh newly added, removed, or modified projects. You can then open the solution file in Visual Studio as needed." }, "Security/README.html": { "href": "Security/README.html", @@ -72,7 +72,7 @@ "articles/notes/APAX_PACAKGE_GENERAL.html": { "href": "articles/notes/APAX_PACAKGE_GENERAL.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience." + "keywords": "APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience." }, "articles/notes/Assets_in_nuget_package.html": { "href": "articles/notes/Assets_in_nuget_package.html", @@ -102,12 +102,12 @@ "articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.html": { "href": "articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience." + "keywords": "NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience." }, "articles/notes/NUGET_PACAKGE_GENERAL.html": { "href": "articles/notes/NUGET_PACAKGE_GENERAL.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience." + "keywords": "NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience." }, "articles/notes/README.html": { "href": "articles/notes/README.html", @@ -177,7 +177,7 @@ "components.abb.robotics/ctrl/README.html": { "href": "components.abb.robotics/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.abb.robotics Description The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.abb.robotics\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.abb.robotics\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.abb.robotics Description The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.abb.robotics\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.abb.robotics\": '{axopen-version}'" }, "components.abb.robotics/docs/CHANGELOG.html": { "href": "components.abb.robotics/docs/CHANGELOG.html", @@ -217,12 +217,12 @@ "components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/README.html": { "href": "components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/README.html", "title": "AXOpen.Components.Abb.Robotics.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Abb.Robotics.Blazor Description The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Abb.Robotics.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Abb.Robotics.Blazor Description The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Abb.Robotics.Blazor --version {axopen-version} Package reference " }, "components.abb.robotics/src/AXOpen.Components.Abb.Robotics/README.html": { "href": "components.abb.robotics/src/AXOpen.Components.Abb.Robotics/README.html", "title": "AXOpen.Components.Abb.Robotics | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Abb.Robotics Description The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Abb.Robotics --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Abb.Robotics Description The components.abb.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Abb for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Abb.Robotics --version {axopen-version} Package reference " }, "components.abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html": { "href": "components.abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html", @@ -262,7 +262,7 @@ "components.balluff.identification/ctrl/README.html": { "href": "components.balluff.identification/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.balluff.identification Description The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.balluff.identification\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.balluff.identification\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.balluff.identification Description The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.balluff.identification\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.balluff.identification\": '{axopen-version}'" }, "components.balluff.identification/docs/CHANGELOG.html": { "href": "components.balluff.identification/docs/CHANGELOG.html", @@ -302,12 +302,12 @@ "components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/README.html": { "href": "components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/README.html", "title": "AXOpen.Components.Balluff.Identification.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Balluff.Identification.Blazor Description The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Balluff.Identification.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Balluff.Identification.Blazor Description The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Balluff.Identification.Blazor --version {axopen-version} Package reference " }, "components.balluff.identification/src/AXOpen.Components.Balluff.Identification/README.html": { "href": "components.balluff.identification/src/AXOpen.Components.Balluff.Identification/README.html", "title": "AXOpen.Components.Balluff.Identification | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Balluff.Identification Description The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Balluff.Identification --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Balluff.Identification Description The components.balluff.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Balluff for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Balluff.Identification --version {axopen-version} Package reference " }, "components.cognex.vision/CHANGES_CHECKLIST.html": { "href": "components.cognex.vision/CHANGES_CHECKLIST.html", @@ -327,7 +327,7 @@ "components.cognex.vision/ctrl/README.html": { "href": "components.cognex.vision/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.cognex.vision Description The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.cognex.vision\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.cognex.vision\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.cognex.vision Description The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.cognex.vision\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.cognex.vision\": '{axopen-version}'" }, "components.cognex.vision/docs/CHANGELOG.html": { "href": "components.cognex.vision/docs/CHANGELOG.html", @@ -372,12 +372,12 @@ "components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/README.html": { "href": "components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/README.html", "title": "AXOpen.Components.Cognex.Vision.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Cognex.Vision.Blazor Description The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Cognex.Vision.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Cognex.Vision.Blazor Description The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Cognex.Vision.Blazor --version {axopen-version} Package reference " }, "components.cognex.vision/src/AXOpen.Components.Cognex.Vision/README.html": { "href": "components.cognex.vision/src/AXOpen.Components.Cognex.Vision/README.html", "title": "AXOpen.Components.Cognex.Vision | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Cognex.Vision Description The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Cognex.Vision --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Cognex.Vision Description The components.cognex.vision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Cognex.Vision --version {axopen-version} Package reference " }, "components.desoutter.tightening/CHANGES_CHECKLIST.html": { "href": "components.desoutter.tightening/CHANGES_CHECKLIST.html", @@ -397,7 +397,7 @@ "components.desoutter.tightening/ctrl/README.html": { "href": "components.desoutter.tightening/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.desoutter.tightening Description The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.desoutter.tightening\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.desoutter.tightening\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.desoutter.tightening Description The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.desoutter.tightening\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.desoutter.tightening\": '{axopen-version}'" }, "components.desoutter.tightening/docs/CHANGELOG.html": { "href": "components.desoutter.tightening/docs/CHANGELOG.html", @@ -437,12 +437,12 @@ "components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/README.html": { "href": "components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/README.html", "title": "AXOpen.Components.Desoutter.Tightening.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Desoutter.Tightening.Blazor Description The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Desoutter.Tightening.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Desoutter.Tightening.Blazor Description The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Desoutter.Tightening.Blazor --version {axopen-version} Package reference " }, "components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/README.html": { "href": "components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/README.html", "title": "AXOpen.Components.Desoutter.Tightening | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Desoutter.Tightening Description The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Desoutter.Tightening --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Desoutter.Tightening Description The components.desoutter.tightening is a set of libraries covering the product portfolio of the tightening systems from the vendor Desoutter for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Desoutter.Tightening --version {axopen-version} Package reference " }, "components.drives/CHANGES_CHECKLIST.html": { "href": "components.drives/CHANGES_CHECKLIST.html", @@ -462,7 +462,7 @@ "components.drives/ctrl/README.html": { "href": "components.drives/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axlibname Description The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding package to your project apax add \"@ix-ax/axlibname\" Modifying your apax.yml dependencies: \"@ix-ax/axlibname\": '{axopen-version}'" + "keywords": "@inxton/axlibname Description The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding package to your project apax add \"@inxton/axlibname\" Modifying your apax.yml dependencies: \"@inxton/axlibname\": '{axopen-version}'" }, "components.drives/docs/CHANGELOG.html": { "href": "components.drives/docs/CHANGELOG.html", @@ -502,12 +502,12 @@ "components.drives/src/AXOpen.Components.Drives.blazor/README.html": { "href": "components.drives/src/AXOpen.Components.Drives.blazor/README.html", "title": "AXOpen.Components.Drives.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Drives.Blazor Description The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Drives.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Drives.Blazor Description The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Drives.Blazor --version {axopen-version} Package reference " }, "components.drives/src/AXOpen.Components.Drives/README.html": { "href": "components.drives/src/AXOpen.Components.Drives/README.html", "title": "AXOpen.Components.Drives | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Drives Description The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Drives --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Drives Description The components.drives is a set of libraries covering generic drives, single axis systems for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Drives --version {axopen-version} Package reference " }, "components.elements/app/ix-blazor/ElementsComponents.blazor/wwwroot/css/open-iconic/README.html": { "href": "components.elements/app/ix-blazor/ElementsComponents.blazor/wwwroot/css/open-iconic/README.html", @@ -572,7 +572,7 @@ "components.festo.drives/ctrl/README.html": { "href": "components.festo.drives/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.festo.drives Description The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding package to your project apax add \"@ix-ax/axopen.components.festo.drives\" Modifying your apax.yml dependencies: \"@ix-ax/axlibname\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.festo.drives Description The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding package to your project apax add \"@inxton/axopen.components.festo.drives\" Modifying your apax.yml dependencies: \"@inxton/axlibname\": '{axopen-version}'" }, "components.festo.drives/docs/CHANGELOG.html": { "href": "components.festo.drives/docs/CHANGELOG.html", @@ -612,12 +612,12 @@ "components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/README.html": { "href": "components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/README.html", "title": "AXOpen.Components.Festo.Drives.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Festo.Drives.Blazor Description The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Festo.Drives.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Festo.Drives.Blazor Description The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Festo.Drives.Blazor --version {axopen-version} Package reference " }, "components.festo.drives/src/AXOpen.Components.Festo.Drives/README.html": { "href": "components.festo.drives/src/AXOpen.Components.Festo.Drives/README.html", "title": "AXOpen.Components.Festo.Drives | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Festo.Drives Description The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Festo.Drives --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Festo.Drives Description The components.festo.drives is a set of libraries covering the product portfolio of motion systems from the vendor Festo for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Festo.Drives --version {axopen-version} Package reference " }, "components.kuka.robotics/CHANGES_CHECKLIST.html": { "href": "components.kuka.robotics/CHANGES_CHECKLIST.html", @@ -637,7 +637,7 @@ "components.kuka.robotics/ctrl/README.html": { "href": "components.kuka.robotics/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.kuka.robotics Description The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.kuka.robotics\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.kuka.robotics\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.kuka.robotics Description The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.kuka.robotics\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.kuka.robotics\": '{axopen-version}'" }, "components.kuka.robotics/docs/CHANGELOG.html": { "href": "components.kuka.robotics/docs/CHANGELOG.html", @@ -677,12 +677,12 @@ "components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/README.html": { "href": "components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/README.html", "title": "AXOpen.Components.Kuka.Robotics.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Kuka.Robotics.Blazor Description The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Kuka.Robotics.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Kuka.Robotics.Blazor Description The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Kuka.Robotics.Blazor --version {axopen-version} Package reference " }, "components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/README.html": { "href": "components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/README.html", "title": "AXOpen.Components.Kuka.Robotics | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Kuka.Robotics Description The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Kuka.Robotics --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Kuka.Robotics Description The components.kuka.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Kuka for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Kuka.Robotics --version {axopen-version} Package reference " }, "components.mitsubishi.robotics/CHANGES_CHECKLIST.html": { "href": "components.mitsubishi.robotics/CHANGES_CHECKLIST.html", @@ -702,7 +702,7 @@ "components.mitsubishi.robotics/ctrl/README.html": { "href": "components.mitsubishi.robotics/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.mitsubishi.robotics Description The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.mitsubishi.robotics\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.mitsubishi.robotics\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.mitsubishi.robotics Description The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.mitsubishi.robotics\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.mitsubishi.robotics\": '{axopen-version}'" }, "components.mitsubishi.robotics/docs/CHANGELOG.html": { "href": "components.mitsubishi.robotics/docs/CHANGELOG.html", @@ -742,12 +742,12 @@ "components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/README.html": { "href": "components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/README.html", "title": "AXOpen.Components.Mitsubishi.Robotics.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Mitsubishi.Robotics.Blazor Description The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Mitsubishi.Robotics.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Mitsubishi.Robotics.Blazor Description The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Mitsubishi.Robotics.Blazor --version {axopen-version} Package reference " }, "components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/README.html": { "href": "components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/README.html", "title": "AXOpen.Components.Mitsubishi.Robotics | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Mitsubishi.Robotics Description The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Mitsubishi.Robotics --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Mitsubishi.Robotics Description The components.mitsubishi.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Mitsubishi for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Mitsubishi.Robotics --version {axopen-version} Package reference " }, "components.pneumatics/app/ix-blazor/PneumaticComponents.blazor/wwwroot/css/open-iconic/README.html": { "href": "components.pneumatics/app/ix-blazor/PneumaticComponents.blazor/wwwroot/css/open-iconic/README.html", @@ -802,7 +802,7 @@ "components.rexroth.drives/ctrl/README.html": { "href": "components.rexroth.drives/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.rexroth.drives Description The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding package to your project apax add \"@ix-ax/axopen.components.rexroth.drives\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.rexroth.drives\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.rexroth.drives Description The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding package to your project apax add \"@inxton/axopen.components.rexroth.drives\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.rexroth.drives\": '{axopen-version}'" }, "components.rexroth.drives/docs/CHANGELOG.html": { "href": "components.rexroth.drives/docs/CHANGELOG.html", @@ -842,12 +842,12 @@ "components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/README.html": { "href": "components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/README.html", "title": "AXOpen.Components.Rexroth.Drives.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Rexroth.Drives.Blazor Description The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Rexroth.Drives.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Rexroth.Drives.Blazor Description The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Rexroth.Drives.Blazor --version {axopen-version} Package reference " }, "components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/README.html": { "href": "components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/README.html", "title": "AXOpen.Components.Rexroth.Drives | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Rexroth.Drives Description The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Rexroth.Drives --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Rexroth.Drives Description The components.rexroth.drives is a set of libraries covering the product portfolio of motion systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Rexroth.Drives --version {axopen-version} Package reference " }, "components.rexroth.press/CHANGES_CHECKLIST.html": { "href": "components.rexroth.press/CHANGES_CHECKLIST.html", @@ -867,7 +867,7 @@ "components.rexroth.press/ctrl/README.html": { "href": "components.rexroth.press/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.rexroth.press Description The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.rexroth.press\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.rexroth.press\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.rexroth.press Description The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.rexroth.press\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.rexroth.press\": '{axopen-version}'" }, "components.rexroth.press/docs/CHANGELOG.html": { "href": "components.rexroth.press/docs/CHANGELOG.html", @@ -907,12 +907,12 @@ "components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/README.html": { "href": "components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/README.html", "title": "AXOpen.Components.Rexroth.Press.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Rexroth.Press.Blazor Description The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Rexroth.Press.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Rexroth.Press.Blazor Description The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Rexroth.Press.Blazor --version {axopen-version} Package reference " }, "components.rexroth.press/src/AXOpen.Components.Rexroth.Press/README.html": { "href": "components.rexroth.press/src/AXOpen.Components.Rexroth.Press/README.html", "title": "AXOpen.Components.Rexroth.Press | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Rexroth.Press Description The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Rexroth.Press --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Rexroth.Press Description The components.rexroth.press is a set of libraries covering the product portfolio of the pressing systems from the vendor Rexroth for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Rexroth.Press --version {axopen-version} Package reference " }, "components.robotics/CHANGES_CHECKLIST.html": { "href": "components.robotics/CHANGES_CHECKLIST.html", @@ -932,7 +932,7 @@ "components.robotics/ctrl/README.html": { "href": "components.robotics/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.robotics Description The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.robotics\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.robotics\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.robotics Description The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.robotics\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.robotics\": '{axopen-version}'" }, "components.robotics/docs/CHANGELOG.html": { "href": "components.robotics/docs/CHANGELOG.html", @@ -972,12 +972,12 @@ "components.robotics/src/AXOpen.Components.Robotics.blazor/README.html": { "href": "components.robotics/src/AXOpen.Components.Robotics.blazor/README.html", "title": "AXOpen.Components.Robotics.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Robotics.Blazor Description The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Robotics.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Robotics.Blazor Description The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Robotics.Blazor --version {axopen-version} Package reference " }, "components.robotics/src/AXOpen.Components.Robotics/README.html": { "href": "components.robotics/src/AXOpen.Components.Robotics/README.html", "title": "AXOpen.Components.Robotics | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Robotics Description The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Robotics --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Robotics Description The components.robotics is a set of libraries includes some common structures and methods for the robotics for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Robotics --version {axopen-version} Package reference " }, "components.siemens.identification/CHANGES_CHECKLIST.html": { "href": "components.siemens.identification/CHANGES_CHECKLIST.html", @@ -997,7 +997,7 @@ "components.siemens.identification/ctrl/README.html": { "href": "components.siemens.identification/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.siemens.identification Description The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.siemens.identification\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.siemens.identification\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.siemens.identification Description The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.siemens.identification\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.siemens.identification\": '{axopen-version}'" }, "components.siemens.identification/docs/CHANGELOG.html": { "href": "components.siemens.identification/docs/CHANGELOG.html", @@ -1037,12 +1037,12 @@ "components.siemens.identification/src/AXOpen.Components.Siemens.Identification.blazor/README.html": { "href": "components.siemens.identification/src/AXOpen.Components.Siemens.Identification.blazor/README.html", "title": "AXOpen.Components.Siemens.Identification.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Siemens.Identification.Blazor Description The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Siemens.Identification.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Siemens.Identification.Blazor Description The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Siemens.Identification.Blazor --version {axopen-version} Package reference " }, "components.siemens.identification/src/AXOpen.Components.Siemens.Identification/README.html": { "href": "components.siemens.identification/src/AXOpen.Components.Siemens.Identification/README.html", "title": "AXOpen.Components.Siemens.Identification | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Siemens.Identification Description The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Siemens.Identification --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Siemens.Identification Description The components.siemens.identification is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor Siemens for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers all the Siemens identification systems that supports Ident profile and RF200 production family connected via IOlink module. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Siemens.Identification --version {axopen-version} Package reference " }, "components.ur.robotics/CHANGES_CHECKLIST.html": { "href": "components.ur.robotics/CHANGES_CHECKLIST.html", @@ -1062,7 +1062,7 @@ "components.ur.robotics/ctrl/README.html": { "href": "components.ur.robotics/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.components.ur.robotics Description The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.components.ur.robotics\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.components.ur.robotics\": '{axopen-version}'" + "keywords": "@inxton/axopen.components.ur.robotics Description The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family. Links to documentation Siemens AX-documentation AxOpen-documentation APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.components.ur.robotics\" Modifying your apax.yml dependencies: \"@inxton/axopen.components.ur.robotics\": '{axopen-version}'" }, "components.ur.robotics/docs/CHANGELOG.html": { "href": "components.ur.robotics/docs/CHANGELOG.html", @@ -1102,12 +1102,12 @@ "components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/README.html": { "href": "components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/README.html", "title": "AXOpen.Components.Ur.Robotics.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Ur.Robotics.Blazor Description The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Ur.Robotics.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Ur.Robotics.Blazor Description The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Ur.Robotics.Blazor --version {axopen-version} Package reference " }, "components.ur.robotics/src/AXOpen.Components.Ur.Robotics/README.html": { "href": "components.ur.robotics/src/AXOpen.Components.Ur.Robotics/README.html", "title": "AXOpen.Components.Ur.Robotics | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Components.Ur.Robotics Description The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Ur.Robotics --version {axopen-version} Package reference " + "keywords": "AXOpen.Components.Ur.Robotics Description The components.ur.robotics is a set of libraries covering the product portfolio of the robotics systems from the vendor Universal Robots for the target PLC platform Siemens AX and AxOpen framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family. Links to documentation Siemens AX-documentation AxOpen-documentation NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Components.Ur.Robotics --version {axopen-version} Package reference " }, "core/app/ix-blazor/axopencore.blazor/wwwroot/css/open-iconic/README.html": { "href": "core/app/ix-blazor/axopencore.blazor/wwwroot/css/open-iconic/README.html", @@ -1342,7 +1342,7 @@ "io/ctrl/README.html": { "href": "io/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/axopen.io Description APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/axopen.io\" Modifying your apax.yml dependencies: \"@ix-ax/axopen.io\": '{axopen-version}'" + "keywords": "@inxton/axopen.io Description APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/axopen.io\" Modifying your apax.yml dependencies: \"@inxton/axopen.io\": '{axopen-version}'" }, "io/docs/CHANGELOG.html": { "href": "io/docs/CHANGELOG.html", @@ -1382,12 +1382,12 @@ "io/src/AXOpen.Io.blazor/README.html": { "href": "io/src/AXOpen.Io.blazor/README.html", "title": "AXOpen.Io.Blazor | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Io.Blazor Description NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Io.Blazor --version {axopen-version} Package reference " + "keywords": "AXOpen.Io.Blazor Description NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Io.Blazor --version {axopen-version} Package reference " }, "io/src/AXOpen.Io/README.html": { "href": "io/src/AXOpen.Io/README.html", "title": "AXOpen.Io | System.Dynamic.ExpandoObject", - "keywords": "AXOpen.Io Description NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Io --version {axopen-version} Package reference " + "keywords": "AXOpen.Io Description NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package AXOpen.Io --version {axopen-version} Package reference " }, "probers/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html": { "href": "probers/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html", @@ -1417,7 +1417,7 @@ "template.axolibrary/ctrl/README.html": { "href": "template.axolibrary/ctrl/README.html", "title": "| System.Dynamic.ExpandoObject", - "keywords": "@ix-ax/apaxlibname Description APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@ix-ax\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@ix-ax/apaxlibname\" Modifying your apax.yml dependencies: \"@ix-ax/apaxlibname\": '{axopen-version}'" + "keywords": "@inxton/apaxlibname Description APAX package registry Important APAX pacakges are now published experimentally This apax package's registry is hosted on github on how to authenticate to the registry see the documentation here and here. apax login --registry https://npm.pkg.github.com --username GH_USER_NAME --password PAT Add registry to your apax.yml file. registries: \"@inxton\": https://npm.pkg.github.com/ Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. Adding the package to your project apax add \"@inxton/apaxlibname\" Modifying your apax.yml dependencies: \"@inxton/apaxlibname\": '{axopen-version}'" }, "template.axolibrary/docs/CHANGELOG.html": { "href": "template.axolibrary/docs/CHANGELOG.html", @@ -1457,12 +1457,12 @@ "template.axolibrary/src/projname.blazor/README.html": { "href": "template.axolibrary/src/projname.blazor/README.html", "title": "projname.Blazor | System.Dynamic.ExpandoObject", - "keywords": "projname.Blazor Description NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package projname.Blazor --version {axopen-version} Package reference " + "keywords": "projname.Blazor Description NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package projname.Blazor --version {axopen-version} Package reference " }, "template.axolibrary/src/projname/README.html": { "href": "template.axolibrary/src/projname/README.html", "title": "projname | System.Dynamic.ExpandoObject", - "keywords": "projname Description NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax \"https://nuget.pkg.github.com/ix-ax/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package projname --version {axopen-version} Package reference " + "keywords": "projname Description NuGet package feed Important NuGet pacakges are now published experimentally This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here. dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton \"https://nuget.pkg.github.com/inxton/index.json\" Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT) Note Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience. .NET CLI dotnet add package projname --version {axopen-version} Package reference " }, "timers/docs/OFFDELAYTIMER.html": { "href": "timers/docs/OFFDELAYTIMER.html", diff --git a/docs/inspectors/app/ix-blazor/AXOpen.Inspectors.blazor/wwwroot/css/open-iconic/README.html b/docs/inspectors/app/ix-blazor/AXOpen.Inspectors.blazor/wwwroot/css/open-iconic/README.html index 8457920c2..5df102783 100644 --- a/docs/inspectors/app/ix-blazor/AXOpen.Inspectors.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/inspectors/app/ix-blazor/AXOpen.Inspectors.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/inspectors/docs/AXOANALOGUEINSPECTOR.html b/docs/inspectors/docs/AXOANALOGUEINSPECTOR.html index e9103e7f1..3066ac819 100644 --- a/docs/inspectors/docs/AXOANALOGUEINSPECTOR.html +++ b/docs/inspectors/docs/AXOANALOGUEINSPECTOR.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

AxoAnalogueInspector

@@ -121,7 +121,7 @@

AxoAnalogueInspector

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/inspectors/docs/AXODATAINSPECTOR.html b/docs/inspectors/docs/AXODATAINSPECTOR.html index 21f811e1f..46da61c59 100644 --- a/docs/inspectors/docs/AXODATAINSPECTOR.html +++ b/docs/inspectors/docs/AXODATAINSPECTOR.html @@ -15,7 +15,7 @@ - + @@ -105,7 +105,7 @@

AxoDataInspector

@@ -122,7 +122,7 @@

AxoDataInspector

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/inspectors/docs/AXODIGITALINSPECTOR.html b/docs/inspectors/docs/AXODIGITALINSPECTOR.html index 569f7dc1e..800fc5ca6 100644 --- a/docs/inspectors/docs/AXODIGITALINSPECTOR.html +++ b/docs/inspectors/docs/AXODIGITALINSPECTOR.html @@ -15,7 +15,7 @@ - + @@ -101,7 +101,7 @@

AxoDigitalInspector

@@ -118,7 +118,7 @@

AxoDigitalInspector

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/inspectors/docs/README.html b/docs/inspectors/docs/README.html index ce4f9770c..9f20732c4 100644 --- a/docs/inspectors/docs/README.html +++ b/docs/inspectors/docs/README.html @@ -15,7 +15,7 @@ - + @@ -272,7 +272,7 @@

Preserving overall result

@@ -289,7 +289,7 @@

Preserving overall result

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/inspectors/docs/index.html b/docs/inspectors/docs/index.html index 5b0afe746..29e0622d6 100644 --- a/docs/inspectors/docs/index.html +++ b/docs/inspectors/docs/index.html @@ -15,7 +15,7 @@ - + @@ -272,7 +272,7 @@

Preserving overall result

@@ -289,7 +289,7 @@

Preserving overall result

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/integrations/src/AXOpen.Integrations.Blazor/wwwroot/css/open-iconic/README.html b/docs/integrations/src/AXOpen.Integrations.Blazor/wwwroot/css/open-iconic/README.html index 42e519277..07061ae41 100644 --- a/docs/integrations/src/AXOpen.Integrations.Blazor/wwwroot/css/open-iconic/README.html +++ b/docs/integrations/src/AXOpen.Integrations.Blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/CHANGES_CHECKLIST.html b/docs/io/CHANGES_CHECKLIST.html index ff9fde2d4..4d564117c 100644 --- a/docs/io/CHANGES_CHECKLIST.html +++ b/docs/io/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/CREATION_CHECKLIST.html b/docs/io/CREATION_CHECKLIST.html index db1b96b21..61c603580 100644 --- a/docs/io/CREATION_CHECKLIST.html +++ b/docs/io/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/io/app/ix-blazor/wwwroot/css/open-iconic/README.html index 8ce14cfa9..75d36bad3 100644 --- a/docs/io/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/io/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/ctrl/README.html b/docs/io/ctrl/README.html index 840f83b37..d113df809 100644 --- a/docs/io/ctrl/README.html +++ b/docs/io/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,7 +87,7 @@
Table of Contents
-

@ix-ax/axopen.io

+

@inxton/axopen.io

Description

@@ -101,23 +101,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/axopen.io"
+
apax add "@inxton/axopen.io"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/axopen.io": '{axopen-version}'  
+  "@inxton/axopen.io": '{axopen-version}'  
 
@@ -134,7 +134,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/docs/CHANGELOG.html b/docs/io/docs/CHANGELOG.html index 1e45286c5..d3651322f 100644 --- a/docs/io/docs/CHANGELOG.html +++ b/docs/io/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/docs/ComponentTemplate.html b/docs/io/docs/ComponentTemplate.html index 99604f316..28e630dd8 100644 --- a/docs/io/docs/ComponentTemplate.html +++ b/docs/io/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -160,7 +160,7 @@

Generic Read-Only view

@@ -177,7 +177,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/docs/Component_1.html b/docs/io/docs/Component_1.html index c798e6aba..12c02247b 100644 --- a/docs/io/docs/Component_1.html +++ b/docs/io/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -159,7 +159,7 @@

Generic Read-Only view

@@ -176,7 +176,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/docs/Component_2.html b/docs/io/docs/Component_2.html index 6683448f3..f806bea65 100644 --- a/docs/io/docs/Component_2.html +++ b/docs/io/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -137,7 +137,7 @@

Generic Read-Only view

@@ -154,7 +154,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/docs/README.html b/docs/io/docs/README.html index 9de6518ea..c59d34d9e 100644 --- a/docs/io/docs/README.html +++ b/docs/io/docs/README.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

Description

@@ -110,7 +110,7 @@

Description

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/docs/TROUBLES.html b/docs/io/docs/TROUBLES.html index 359e5db3c..08f8d968e 100644 --- a/docs/io/docs/TROUBLES.html +++ b/docs/io/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/docs/index.html b/docs/io/docs/index.html index 6d15b9114..c7fa264a9 100644 --- a/docs/io/docs/index.html +++ b/docs/io/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/src/AXOpen.Io.blazor/README.html b/docs/io/src/AXOpen.Io.blazor/README.html index 13a3faa42..fa8e957ad 100644 --- a/docs/io/src/AXOpen.Io.blazor/README.html +++ b/docs/io/src/AXOpen.Io.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -97,7 +97,7 @@
Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -114,7 +114,7 @@

Package reference

@@ -131,7 +131,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/io/src/AXOpen.Io/README.html b/docs/io/src/AXOpen.Io/README.html index 3654ca5b9..daf16a90a 100644 --- a/docs/io/src/AXOpen.Io/README.html +++ b/docs/io/src/AXOpen.Io/README.html @@ -15,7 +15,7 @@ - + @@ -97,7 +97,7 @@
Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -115,7 +115,7 @@

Package reference

@@ -132,7 +132,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/manifest.json b/docs/manifest.json index 6bde869cd..f27aac61b 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1,11 +1,11 @@ { "sitemap": { - "baseUrl": "https://ix-ax.github.io/AXOpen/", + "baseUrl": "https://inxton.github.io/AXOpen/", "changefreq": "weekly", "priority": 0.1 }, "homepages": [], - "source_base_path": "C:/W/Develop/gh/ix-ax/_axopen/axopen/docfx", + "source_base_path": "C:/W/Develop/gh/inxton/_axopen/axopen/docfx", "xrefmap": "xrefmap.yml", "files": [ { diff --git a/docs/probers/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html b/docs/probers/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html index 7c67374f9..cdb9c9c96 100644 --- a/docs/probers/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/probers/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/simatic1500/ctrl/README.html b/docs/simatic1500/ctrl/README.html index 91300f457..9a0a417ac 100644 --- a/docs/simatic1500/ctrl/README.html +++ b/docs/simatic1500/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -548,7 +548,7 @@

IxComponent

@@ -565,7 +565,7 @@

IxComponent

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/sitemap.xml b/docs/sitemap.xml index b5418aaf3..283cbe632 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -1,1789 +1,1789 @@  - https://ix-ax.github.io/AXOpen/NUGET-README.html + https://inxton.github.io/AXOpen/NUGET-README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/README.html + https://inxton.github.io/AXOpen/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/Security/README.html + https://inxton.github.io/AXOpen/Security/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/Security/docs/INSTALLATION.html + https://inxton.github.io/AXOpen/Security/docs/INSTALLATION.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/Security/index.html + https://inxton.github.io/AXOpen/Security/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/Security/integrations/axopen_blazor_auth_app/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/Security/integrations/axopen_blazor_auth_app/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/api/index.html + https://inxton.github.io/AXOpen/api/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/apidoc/index.html + https://inxton.github.io/AXOpen/apidoc/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/guidelines/Conventions.html + https://inxton.github.io/AXOpen/articles/guidelines/Conventions.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/guidelines/PERFORMANCE.html + https://inxton.github.io/AXOpen/articles/guidelines/PERFORMANCE.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/guidelines/README.html + https://inxton.github.io/AXOpen/articles/guidelines/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/guidelines/components.html + https://inxton.github.io/AXOpen/articles/guidelines/components.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/index.html + https://inxton.github.io/AXOpen/articles/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/APAX_PACAKGE_GENERAL.html + https://inxton.github.io/AXOpen/articles/notes/APAX_PACAKGE_GENERAL.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/Assets_in_nuget_package.html + https://inxton.github.io/AXOpen/articles/notes/Assets_in_nuget_package.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/CYCLIC_UPDATE_NOTICE.html + https://inxton.github.io/AXOpen/articles/notes/CYCLIC_UPDATE_NOTICE.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/Configuration.html + https://inxton.github.io/AXOpen/articles/notes/Configuration.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/LIBRARYHEADER.html + https://inxton.github.io/AXOpen/articles/notes/LIBRARYHEADER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/Localization.html + https://inxton.github.io/AXOpen/articles/notes/Localization.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.html + https://inxton.github.io/AXOpen/articles/notes/NUGET_PACAKGE_BLAZOR_GENERAL.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/NUGET_PACAKGE_GENERAL.html + https://inxton.github.io/AXOpen/articles/notes/NUGET_PACAKGE_GENERAL.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/README.html + https://inxton.github.io/AXOpen/articles/notes/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/Themes.html + https://inxton.github.io/AXOpen/articles/notes/Themes.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/notes/ToolTipsAndPopOvers.html + https://inxton.github.io/AXOpen/articles/notes/ToolTipsAndPopOvers.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/rendering/intro.html + https://inxton.github.io/AXOpen/articles/rendering/intro.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/security/INSTALLATION.html + https://inxton.github.io/AXOpen/articles/security/INSTALLATION.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/articles/security/README.html + https://inxton.github.io/AXOpen/articles/security/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/base/src/AXOpen.VisualComposer/README.html + https://inxton.github.io/AXOpen/base/src/AXOpen.VisualComposer/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/clientchat/src/README.html + https://inxton.github.io/AXOpen/clientchat/src/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/clientchat/src/index.html + https://inxton.github.io/AXOpen/clientchat/src/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/clientchat/src/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/clientchat/src/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.abb.robotics/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.abb.robotics/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.abb.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/ctrl/README.html + https://inxton.github.io/AXOpen/components.abb.robotics/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.abb.robotics/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.abb.robotics/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/docs/Component_1.html + https://inxton.github.io/AXOpen/components.abb.robotics/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/docs/Component_2.html + https://inxton.github.io/AXOpen/components.abb.robotics/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/docs/README.html + https://inxton.github.io/AXOpen/components.abb.robotics/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.abb.robotics/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/docs/index.html + https://inxton.github.io/AXOpen/components.abb.robotics/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/README.html + https://inxton.github.io/AXOpen/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/README.html + https://inxton.github.io/AXOpen/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.abstractions/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abstractions/docs/README.html + https://inxton.github.io/AXOpen/components.abstractions/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abstractions/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.abstractions/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.abstractions/docs/index.html + https://inxton.github.io/AXOpen/components.abstractions/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.balluff.identification/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.balluff.identification/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.balluff.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/ctrl/README.html + https://inxton.github.io/AXOpen/components.balluff.identification/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.balluff.identification/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.balluff.identification/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/docs/Component_1.html + https://inxton.github.io/AXOpen/components.balluff.identification/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/docs/Component_2.html + https://inxton.github.io/AXOpen/components.balluff.identification/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/docs/README.html + https://inxton.github.io/AXOpen/components.balluff.identification/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.balluff.identification/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/docs/index.html + https://inxton.github.io/AXOpen/components.balluff.identification/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/README.html + https://inxton.github.io/AXOpen/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/README.html + https://inxton.github.io/AXOpen/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.cognex.vision/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.cognex.vision/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.cognex.vision/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/ctrl/README.html + https://inxton.github.io/AXOpen/components.cognex.vision/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.cognex.vision/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.cognex.vision/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/docs/Component_1.html + https://inxton.github.io/AXOpen/components.cognex.vision/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/docs/Component_2.html + https://inxton.github.io/AXOpen/components.cognex.vision/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/docs/Component_3.html + https://inxton.github.io/AXOpen/components.cognex.vision/docs/Component_3.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/docs/README.html + https://inxton.github.io/AXOpen/components.cognex.vision/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.cognex.vision/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/docs/index.html + https://inxton.github.io/AXOpen/components.cognex.vision/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/README.html + https://inxton.github.io/AXOpen/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/README.html + https://inxton.github.io/AXOpen/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/ctrl/README.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/docs/Component_1.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/docs/Component_2.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/docs/README.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/docs/index.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/README.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/README.html + https://inxton.github.io/AXOpen/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.drives/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.drives/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/ctrl/README.html + https://inxton.github.io/AXOpen/components.drives/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.drives/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.drives/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/docs/Component_1.html + https://inxton.github.io/AXOpen/components.drives/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/docs/Component_2.html + https://inxton.github.io/AXOpen/components.drives/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/docs/README.html + https://inxton.github.io/AXOpen/components.drives/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.drives/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/docs/index.html + https://inxton.github.io/AXOpen/components.drives/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/src/AXOpen.Components.Drives.blazor/README.html + https://inxton.github.io/AXOpen/components.drives/src/AXOpen.Components.Drives.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.drives/src/AXOpen.Components.Drives/README.html + https://inxton.github.io/AXOpen/components.drives/src/AXOpen.Components.Drives/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/app/ix-blazor/ElementsComponents.blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.elements/app/ix-blazor/ElementsComponents.blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/docs/AXOAI.html + https://inxton.github.io/AXOpen/components.elements/docs/AXOAI.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/docs/AXOAO.html + https://inxton.github.io/AXOpen/components.elements/docs/AXOAO.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/docs/AXODI.html + https://inxton.github.io/AXOpen/components.elements/docs/AXODI.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/docs/AXODO.html + https://inxton.github.io/AXOpen/components.elements/docs/AXODO.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/docs/HOWTO.html + https://inxton.github.io/AXOpen/components.elements/docs/HOWTO.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/docs/README.html + https://inxton.github.io/AXOpen/components.elements/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.elements/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.elements/docs/index.html + https://inxton.github.io/AXOpen/components.elements/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.festo.drives/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.festo.drives/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.festo.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/ctrl/README.html + https://inxton.github.io/AXOpen/components.festo.drives/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.festo.drives/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.festo.drives/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/docs/Component_1.html + https://inxton.github.io/AXOpen/components.festo.drives/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/docs/Component_2.html + https://inxton.github.io/AXOpen/components.festo.drives/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/docs/README.html + https://inxton.github.io/AXOpen/components.festo.drives/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.festo.drives/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/docs/index.html + https://inxton.github.io/AXOpen/components.festo.drives/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/README.html + https://inxton.github.io/AXOpen/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.festo.drives/src/AXOpen.Components.Festo.Drives/README.html + https://inxton.github.io/AXOpen/components.festo.drives/src/AXOpen.Components.Festo.Drives/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.kuka.robotics/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.kuka.robotics/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.kuka.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/ctrl/README.html + https://inxton.github.io/AXOpen/components.kuka.robotics/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.kuka.robotics/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.kuka.robotics/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/docs/Component_1.html + https://inxton.github.io/AXOpen/components.kuka.robotics/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/docs/Component_2.html + https://inxton.github.io/AXOpen/components.kuka.robotics/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/docs/README.html + https://inxton.github.io/AXOpen/components.kuka.robotics/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.kuka.robotics/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/docs/index.html + https://inxton.github.io/AXOpen/components.kuka.robotics/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/README.html + https://inxton.github.io/AXOpen/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/README.html + https://inxton.github.io/AXOpen/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/ctrl/README.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/docs/Component_1.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/docs/Component_2.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/docs/README.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/docs/index.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/README.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/README.html + https://inxton.github.io/AXOpen/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.pneumatics/app/ix-blazor/PneumaticComponents.blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.pneumatics/app/ix-blazor/PneumaticComponents.blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.pneumatics/ctrl/docs/AXOCYLINDER.html + https://inxton.github.io/AXOpen/components.pneumatics/ctrl/docs/AXOCYLINDER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.pneumatics/docs/AXOCYLINDER.html + https://inxton.github.io/AXOpen/components.pneumatics/docs/AXOCYLINDER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.pneumatics/docs/HOWTO.html + https://inxton.github.io/AXOpen/components.pneumatics/docs/HOWTO.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.pneumatics/docs/README.html + https://inxton.github.io/AXOpen/components.pneumatics/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.pneumatics/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.pneumatics/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.pneumatics/docs/index.html + https://inxton.github.io/AXOpen/components.pneumatics/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.rexroth.drives/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.rexroth.drives/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.rexroth.drives/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/ctrl/README.html + https://inxton.github.io/AXOpen/components.rexroth.drives/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.rexroth.drives/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.rexroth.drives/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/docs/Component_1.html + https://inxton.github.io/AXOpen/components.rexroth.drives/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/docs/Component_2.html + https://inxton.github.io/AXOpen/components.rexroth.drives/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/docs/README.html + https://inxton.github.io/AXOpen/components.rexroth.drives/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.rexroth.drives/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/docs/index.html + https://inxton.github.io/AXOpen/components.rexroth.drives/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/README.html + https://inxton.github.io/AXOpen/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/README.html + https://inxton.github.io/AXOpen/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.rexroth.press/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.rexroth.press/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.rexroth.press/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/ctrl/README.html + https://inxton.github.io/AXOpen/components.rexroth.press/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.rexroth.press/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.rexroth.press/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/docs/Component_1.html + https://inxton.github.io/AXOpen/components.rexroth.press/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/docs/Component_2.html + https://inxton.github.io/AXOpen/components.rexroth.press/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/docs/README.html + https://inxton.github.io/AXOpen/components.rexroth.press/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.rexroth.press/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/docs/index.html + https://inxton.github.io/AXOpen/components.rexroth.press/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/README.html + https://inxton.github.io/AXOpen/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/README.html + https://inxton.github.io/AXOpen/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.robotics/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.robotics/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/ctrl/README.html + https://inxton.github.io/AXOpen/components.robotics/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.robotics/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.robotics/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/docs/Component_1.html + https://inxton.github.io/AXOpen/components.robotics/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/docs/Component_2.html + https://inxton.github.io/AXOpen/components.robotics/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/docs/README.html + https://inxton.github.io/AXOpen/components.robotics/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.robotics/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/docs/index.html + https://inxton.github.io/AXOpen/components.robotics/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/src/AXOpen.Components.Robotics.blazor/README.html + https://inxton.github.io/AXOpen/components.robotics/src/AXOpen.Components.Robotics.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.robotics/src/AXOpen.Components.Robotics/README.html + https://inxton.github.io/AXOpen/components.robotics/src/AXOpen.Components.Robotics/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.siemens.identification/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.siemens.identification/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.siemens.identification/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/ctrl/README.html + https://inxton.github.io/AXOpen/components.siemens.identification/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.siemens.identification/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.siemens.identification/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/docs/Component_1.html + https://inxton.github.io/AXOpen/components.siemens.identification/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/docs/Component_2.html + https://inxton.github.io/AXOpen/components.siemens.identification/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/docs/README.html + https://inxton.github.io/AXOpen/components.siemens.identification/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.siemens.identification/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/docs/index.html + https://inxton.github.io/AXOpen/components.siemens.identification/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/src/AXOpen.Components.Siemens.Identification.blazor/README.html + https://inxton.github.io/AXOpen/components.siemens.identification/src/AXOpen.Components.Siemens.Identification.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.siemens.identification/src/AXOpen.Components.Siemens.Identification/README.html + https://inxton.github.io/AXOpen/components.siemens.identification/src/AXOpen.Components.Siemens.Identification/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/components.ur.robotics/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/components.ur.robotics/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/components.ur.robotics/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/ctrl/README.html + https://inxton.github.io/AXOpen/components.ur.robotics/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/components.ur.robotics/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/components.ur.robotics/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/docs/Component_1.html + https://inxton.github.io/AXOpen/components.ur.robotics/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/docs/Component_2.html + https://inxton.github.io/AXOpen/components.ur.robotics/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/docs/README.html + https://inxton.github.io/AXOpen/components.ur.robotics/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/docs/TROUBLES.html + https://inxton.github.io/AXOpen/components.ur.robotics/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/docs/index.html + https://inxton.github.io/AXOpen/components.ur.robotics/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/README.html + https://inxton.github.io/AXOpen/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/README.html + https://inxton.github.io/AXOpen/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/app/ix-blazor/axopencore.blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/core/app/ix-blazor/axopencore.blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/ctrl/README.html + https://inxton.github.io/AXOpen/core/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOALERTDIALOG.html + https://inxton.github.io/AXOpen/core/docs/AXOALERTDIALOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOCOMPONENT.html + https://inxton.github.io/AXOpen/core/docs/AXOCOMPONENT.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOCONTEXT.html + https://inxton.github.io/AXOpen/core/docs/AXOCONTEXT.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXODIALOG.html + https://inxton.github.io/AXOpen/core/docs/AXODIALOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOLOGGER.html + https://inxton.github.io/AXOpen/core/docs/AXOLOGGER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOMESSENGER.html + https://inxton.github.io/AXOpen/core/docs/AXOMESSENGER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOMOMENTARYTASK.html + https://inxton.github.io/AXOpen/core/docs/AXOMOMENTARYTASK.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOOBJECT.html + https://inxton.github.io/AXOpen/core/docs/AXOOBJECT.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOREMOTETASK.html + https://inxton.github.io/AXOpen/core/docs/AXOREMOTETASK.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOSEQUENCER.html + https://inxton.github.io/AXOpen/core/docs/AXOSEQUENCER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOSEQUENCERCONTAINER.html + https://inxton.github.io/AXOpen/core/docs/AXOSEQUENCERCONTAINER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOSTEP.html + https://inxton.github.io/AXOpen/core/docs/AXOSTEP.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOTASK.html + https://inxton.github.io/AXOpen/core/docs/AXOTASK.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOTEXTLIST.html + https://inxton.github.io/AXOpen/core/docs/AXOTEXTLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/AXOTOGGLETASK.html + https://inxton.github.io/AXOpen/core/docs/AXOTOGGLETASK.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/README.html + https://inxton.github.io/AXOpen/core/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/core/docs/index.html + https://inxton.github.io/AXOpen/core/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/data/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/ctrl/README.html + https://inxton.github.io/AXOpen/data/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/AxoDataExchange.html + https://inxton.github.io/AXOpen/data/docs/AxoDataExchange.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/AxoDataFragmentExchange.html + https://inxton.github.io/AXOpen/data/docs/AxoDataFragmentExchange.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/AxoDataPersistentExchange.html + https://inxton.github.io/AXOpen/data/docs/AxoDataPersistentExchange.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/COLUMNS.html + https://inxton.github.io/AXOpen/data/docs/COLUMNS.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/EXPORT.html + https://inxton.github.io/AXOpen/data/docs/EXPORT.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/MODALVIEW.html + https://inxton.github.io/AXOpen/data/docs/MODALVIEW.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/README.html + https://inxton.github.io/AXOpen/data/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/SECURITY.html + https://inxton.github.io/AXOpen/data/docs/SECURITY.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/SORT.html + https://inxton.github.io/AXOpen/data/docs/SORT.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/USAGE.html + https://inxton.github.io/AXOpen/data/docs/USAGE.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/VISUALIZATION.html + https://inxton.github.io/AXOpen/data/docs/VISUALIZATION.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/docs/index.html + https://inxton.github.io/AXOpen/data/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/src/exporters/AXOpen.Data.Exporters.Excel/ExcelData.html + https://inxton.github.io/AXOpen/data/src/exporters/AXOpen.Data.Exporters.Excel/ExcelData.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/data/src/repositories/RavenDb/README.html + https://inxton.github.io/AXOpen/data/src/repositories/RavenDb/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/index.html + https://inxton.github.io/AXOpen/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/inspectors/app/ix-blazor/AXOpen.Inspectors.blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/inspectors/app/ix-blazor/AXOpen.Inspectors.blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/inspectors/docs/AXOANALOGUEINSPECTOR.html + https://inxton.github.io/AXOpen/inspectors/docs/AXOANALOGUEINSPECTOR.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/inspectors/docs/AXODATAINSPECTOR.html + https://inxton.github.io/AXOpen/inspectors/docs/AXODATAINSPECTOR.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/inspectors/docs/AXODIGITALINSPECTOR.html + https://inxton.github.io/AXOpen/inspectors/docs/AXODIGITALINSPECTOR.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/inspectors/docs/README.html + https://inxton.github.io/AXOpen/inspectors/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/inspectors/docs/index.html + https://inxton.github.io/AXOpen/inspectors/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/integrations/src/AXOpen.Integrations.Blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/integrations/src/AXOpen.Integrations.Blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/io/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/io/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/io/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/ctrl/README.html + https://inxton.github.io/AXOpen/io/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/io/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/io/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/docs/Component_1.html + https://inxton.github.io/AXOpen/io/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/docs/Component_2.html + https://inxton.github.io/AXOpen/io/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/docs/README.html + https://inxton.github.io/AXOpen/io/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/docs/TROUBLES.html + https://inxton.github.io/AXOpen/io/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/docs/index.html + https://inxton.github.io/AXOpen/io/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/src/AXOpen.Io.blazor/README.html + https://inxton.github.io/AXOpen/io/src/AXOpen.Io.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/io/src/AXOpen.Io/README.html + https://inxton.github.io/AXOpen/io/src/AXOpen.Io/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/probers/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/probers/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/simatic1500/ctrl/README.html + https://inxton.github.io/AXOpen/simatic1500/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/CHANGES_CHECKLIST.html + https://inxton.github.io/AXOpen/template.axolibrary/CHANGES_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/CREATION_CHECKLIST.html + https://inxton.github.io/AXOpen/template.axolibrary/CREATION_CHECKLIST.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/app/ix-blazor/wwwroot/css/open-iconic/README.html + https://inxton.github.io/AXOpen/template.axolibrary/app/ix-blazor/wwwroot/css/open-iconic/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/ctrl/README.html + https://inxton.github.io/AXOpen/template.axolibrary/ctrl/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/docs/CHANGELOG.html + https://inxton.github.io/AXOpen/template.axolibrary/docs/CHANGELOG.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/docs/ComponentTemplate.html + https://inxton.github.io/AXOpen/template.axolibrary/docs/ComponentTemplate.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/docs/Component_1.html + https://inxton.github.io/AXOpen/template.axolibrary/docs/Component_1.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/docs/Component_2.html + https://inxton.github.io/AXOpen/template.axolibrary/docs/Component_2.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/docs/README.html + https://inxton.github.io/AXOpen/template.axolibrary/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/docs/TROUBLES.html + https://inxton.github.io/AXOpen/template.axolibrary/docs/TROUBLES.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/docs/index.html + https://inxton.github.io/AXOpen/template.axolibrary/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/src/projname.blazor/README.html + https://inxton.github.io/AXOpen/template.axolibrary/src/projname.blazor/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/template.axolibrary/src/projname/README.html + https://inxton.github.io/AXOpen/template.axolibrary/src/projname/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/timers/docs/OFFDELAYTIMER.html + https://inxton.github.io/AXOpen/timers/docs/OFFDELAYTIMER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/timers/docs/ONDELAYTIMER.html + https://inxton.github.io/AXOpen/timers/docs/ONDELAYTIMER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/timers/docs/PULSETIMER.html + https://inxton.github.io/AXOpen/timers/docs/PULSETIMER.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/timers/docs/README.html + https://inxton.github.io/AXOpen/timers/docs/README.html 2024-07-03T11:20:13+02:00 weekly 0.1 - https://ix-ax.github.io/AXOpen/timers/docs/index.html + https://inxton.github.io/AXOpen/timers/docs/index.html 2024-07-03T11:20:13+02:00 weekly 0.1 diff --git a/docs/template.axolibrary/CHANGES_CHECKLIST.html b/docs/template.axolibrary/CHANGES_CHECKLIST.html index e7925365c..a37966718 100644 --- a/docs/template.axolibrary/CHANGES_CHECKLIST.html +++ b/docs/template.axolibrary/CHANGES_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -124,7 +124,7 @@

Changelog file updates

@@ -141,7 +141,7 @@

Changelog file updates

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/CREATION_CHECKLIST.html b/docs/template.axolibrary/CREATION_CHECKLIST.html index d31807206..653a8621d 100644 --- a/docs/template.axolibrary/CREATION_CHECKLIST.html +++ b/docs/template.axolibrary/CREATION_CHECKLIST.html @@ -15,7 +15,7 @@ - + @@ -146,7 +146,7 @@

Components

@@ -163,7 +163,7 @@

Components

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html b/docs/template.axolibrary/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html index 1e03cbcd8..3d96d4627 100644 --- a/docs/template.axolibrary/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html +++ b/docs/template.axolibrary/app/ix-blazor/librarytemplate.blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/app/ix-blazor/wwwroot/css/open-iconic/README.html b/docs/template.axolibrary/app/ix-blazor/wwwroot/css/open-iconic/README.html index 9c62f5a73..239374de7 100644 --- a/docs/template.axolibrary/app/ix-blazor/wwwroot/css/open-iconic/README.html +++ b/docs/template.axolibrary/app/ix-blazor/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/ctrl/README.html b/docs/template.axolibrary/ctrl/README.html index 78d56eaa7..817c93b79 100644 --- a/docs/template.axolibrary/ctrl/README.html +++ b/docs/template.axolibrary/ctrl/README.html @@ -15,7 +15,7 @@ - + @@ -87,7 +87,7 @@
Table of Contents
-

@ix-ax/apaxlibname

+

@inxton/apaxlibname

Description

@@ -101,23 +101,23 @@
Important

Add registry to your apax.yml file.

registries: 
-  "@ix-ax": https://npm.pkg.github.com/
+  "@inxton": https://npm.pkg.github.com/
 
Note

Please notice that all AXOpen packages are being released from a single repository and version numbers are aligned. You can use different versions that have major version number alligned should it be necessary, however we strongly recommend to use pacakge with the same version number, such packages are being built and tested together to enshure best experience.

Adding the package to your project

-
apax add "@ix-ax/apaxlibname"
+
apax add "@inxton/apaxlibname"
 

Modifying your apax.yml

dependencies:
-  "@ix-ax/apaxlibname": '{axopen-version}'  
+  "@inxton/apaxlibname": '{axopen-version}'  
 
@@ -134,7 +134,7 @@

Modifying your apax.yml

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/docs/CHANGELOG.html b/docs/template.axolibrary/docs/CHANGELOG.html index b07de50c5..f57c3090b 100644 --- a/docs/template.axolibrary/docs/CHANGELOG.html +++ b/docs/template.axolibrary/docs/CHANGELOG.html @@ -15,7 +15,7 @@ - + @@ -104,7 +104,7 @@

Changes

@@ -121,7 +121,7 @@

Changes

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/docs/ComponentTemplate.html b/docs/template.axolibrary/docs/ComponentTemplate.html index d2e6e71da..a03c53089 100644 --- a/docs/template.axolibrary/docs/ComponentTemplate.html +++ b/docs/template.axolibrary/docs/ComponentTemplate.html @@ -15,7 +15,7 @@ - + @@ -175,7 +175,7 @@

Generic Read-Only view

@@ -192,7 +192,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/docs/Component_1.html b/docs/template.axolibrary/docs/Component_1.html index a34f05c16..4fec88de5 100644 --- a/docs/template.axolibrary/docs/Component_1.html +++ b/docs/template.axolibrary/docs/Component_1.html @@ -15,7 +15,7 @@ - + @@ -174,7 +174,7 @@

Generic Read-Only view

@@ -191,7 +191,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/docs/Component_2.html b/docs/template.axolibrary/docs/Component_2.html index 9318e1675..4d682c276 100644 --- a/docs/template.axolibrary/docs/Component_2.html +++ b/docs/template.axolibrary/docs/Component_2.html @@ -15,7 +15,7 @@ - + @@ -174,7 +174,7 @@

Generic Read-Only view

@@ -191,7 +191,7 @@

Generic Read-Only view

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/docs/HOWTO.html b/docs/template.axolibrary/docs/HOWTO.html index d9d8ab9a6..83f8014e6 100644 --- a/docs/template.axolibrary/docs/HOWTO.html +++ b/docs/template.axolibrary/docs/HOWTO.html @@ -15,7 +15,7 @@ - + @@ -161,7 +161,7 @@

Blazor

@@ -178,7 +178,7 @@

Blazor

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/docs/README.html b/docs/template.axolibrary/docs/README.html index e4258b886..80d45b89f 100644 --- a/docs/template.axolibrary/docs/README.html +++ b/docs/template.axolibrary/docs/README.html @@ -15,7 +15,7 @@ - + @@ -93,7 +93,7 @@

Description

@@ -110,7 +110,7 @@

Description

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/docs/TROUBLES.html b/docs/template.axolibrary/docs/TROUBLES.html index c5eb9b654..e556a7066 100644 --- a/docs/template.axolibrary/docs/TROUBLES.html +++ b/docs/template.axolibrary/docs/TROUBLES.html @@ -15,7 +15,7 @@ - + @@ -89,12 +89,12 @@
Table of Contents

Troubleshooting

-

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.

+

Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please file a report on our GitHub. We appreciate your feedback and patience.


@@ -111,7 +111,7 @@

Troubleshooting

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/docs/index.html b/docs/template.axolibrary/docs/index.html index 65b57227f..5bb9ba8fe 100644 --- a/docs/template.axolibrary/docs/index.html +++ b/docs/template.axolibrary/docs/index.html @@ -15,7 +15,7 @@ - + @@ -91,7 +91,7 @@
Table of Contents

This library is an integral component of AXOpen. AXOpen is an application framework built on the foundations of SIMATIC-AX and AX# technologies. Utilizing the components described in this document might necessitate a foundational understanding of the AXOpen framework's concepts and methodologies. Additionally, leveraging some advanced features could require a basic familiarity with AX# technology.

Additional Resources:

@@ -100,13 +100,13 @@
Note
Note
-

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.

+

Should you identify errors, misleading content, or gaps in this documentation, kindly report the issue here. Alternatively, you're welcome to suggest edits directly by initiating a pull request in this repository.


@@ -123,7 +123,7 @@
Note
- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/src/README.html b/docs/template.axolibrary/src/README.html index b8184c358..d4c3c511e 100644 --- a/docs/template.axolibrary/src/README.html +++ b/docs/template.axolibrary/src/README.html @@ -15,7 +15,7 @@ - + @@ -98,7 +98,7 @@

Blazor

@@ -115,7 +115,7 @@

Blazor

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/src/dotnetlibs.blazor/README.html b/docs/template.axolibrary/src/dotnetlibs.blazor/README.html index b42758638..6062a8b82 100644 --- a/docs/template.axolibrary/src/dotnetlibs.blazor/README.html +++ b/docs/template.axolibrary/src/dotnetlibs.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -94,7 +94,7 @@

Blazor

@@ -111,7 +111,7 @@

Blazor

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/src/dotnetlibs/README.html b/docs/template.axolibrary/src/dotnetlibs/README.html index b96a39c5f..70cc0cd15 100644 --- a/docs/template.axolibrary/src/dotnetlibs/README.html +++ b/docs/template.axolibrary/src/dotnetlibs/README.html @@ -15,7 +15,7 @@ - + @@ -95,7 +95,7 @@

Twin

@@ -112,7 +112,7 @@

Twin

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/src/projname.blazor/README.html b/docs/template.axolibrary/src/projname.blazor/README.html index ff87ba4cf..fdfd8d915 100644 --- a/docs/template.axolibrary/src/projname.blazor/README.html +++ b/docs/template.axolibrary/src/projname.blazor/README.html @@ -15,7 +15,7 @@ - + @@ -97,7 +97,7 @@
Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -114,7 +114,7 @@

Package reference

@@ -131,7 +131,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/template.axolibrary/src/projname/README.html b/docs/template.axolibrary/src/projname/README.html index f195eeec2..6484b7960 100644 --- a/docs/template.axolibrary/src/projname/README.html +++ b/docs/template.axolibrary/src/projname/README.html @@ -15,7 +15,7 @@ - + @@ -97,7 +97,7 @@
Important

NuGet pacakges are now published experimentally

This nuget package's feed is hosted on github on how to authenticate to the feed see the documentation here.

-
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json"
+
dotnet nuget add source --username GITHUBUSERNAME --password PAT  --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json"
 

Replace GITHUBUSERNAME with your github name Replace PAT with your Personal Access Token (how to create your PAT)

@@ -115,7 +115,7 @@

Package reference

@@ -132,7 +132,7 @@

Package reference

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/templates.simple/README.html b/docs/templates.simple/README.html index a0e6e2300..c8275eadc 100644 --- a/docs/templates.simple/README.html +++ b/docs/templates.simple/README.html @@ -15,7 +15,7 @@ - + @@ -161,13 +161,13 @@

Other usefull scripts

Resources

Documentation sources:

    -
  • [AXOpen]https://ix-ax.github.io/AXOpen/
  • -
  • [AX#]https://ix-ax.github.io/axsharp/
  • +
  • [AXOpen]https://inxton.github.io/AXOpen/
  • +
  • [AX#]https://inxton.github.io/axsharp/
@@ -184,7 +184,7 @@

Resources

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/templates.simple/axosimple.app/wwwroot/css/open-iconic/README.html b/docs/templates.simple/axosimple.app/wwwroot/css/open-iconic/README.html index 8503e607d..9d3363650 100644 --- a/docs/templates.simple/axosimple.app/wwwroot/css/open-iconic/README.html +++ b/docs/templates.simple/axosimple.app/wwwroot/css/open-iconic/README.html @@ -15,7 +15,7 @@ - + @@ -152,7 +152,7 @@

Fonts

@@ -169,7 +169,7 @@

Fonts

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/timers/docs/OFFDELAYTIMER.html b/docs/timers/docs/OFFDELAYTIMER.html index 426ed3c57..2ec544980 100644 --- a/docs/timers/docs/OFFDELAYTIMER.html +++ b/docs/timers/docs/OFFDELAYTIMER.html @@ -15,7 +15,7 @@ - + @@ -129,7 +129,7 @@

AxOpen.Timers.OffDelayTimer

@@ -146,7 +146,7 @@

AxOpen.Timers.OffDelayTimer

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/timers/docs/ONDELAYTIMER.html b/docs/timers/docs/ONDELAYTIMER.html index 5c2ce13c2..77278a2d2 100644 --- a/docs/timers/docs/ONDELAYTIMER.html +++ b/docs/timers/docs/ONDELAYTIMER.html @@ -15,7 +15,7 @@ - + @@ -129,7 +129,7 @@

AxOpen.Timers.OnDelayTimer

@@ -146,7 +146,7 @@

AxOpen.Timers.OnDelayTimer

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/timers/docs/PULSETIMER.html b/docs/timers/docs/PULSETIMER.html index 4648d9d30..c83fe0495 100644 --- a/docs/timers/docs/PULSETIMER.html +++ b/docs/timers/docs/PULSETIMER.html @@ -15,7 +15,7 @@ - + @@ -129,7 +129,7 @@

AxOpen.Timers.PulseTimer

@@ -146,7 +146,7 @@

AxOpen.Timers.PulseTimer

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/timers/docs/README.html b/docs/timers/docs/README.html index e4a09b76d..1a5efaa66 100644 --- a/docs/timers/docs/README.html +++ b/docs/timers/docs/README.html @@ -15,7 +15,7 @@ - + @@ -212,7 +212,7 @@

AxOpen.Timers.PulseTimer

@@ -229,7 +229,7 @@

AxOpen.Timers.PulseTimer

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/docs/timers/docs/index.html b/docs/timers/docs/index.html index fd2bc4b18..1a9378b40 100644 --- a/docs/timers/docs/index.html +++ b/docs/timers/docs/index.html @@ -15,7 +15,7 @@ - + @@ -212,7 +212,7 @@

AxOpen.Timers.PulseTimer

@@ -229,7 +229,7 @@

AxOpen.Timers.PulseTimer

- Generated by DocFx. © PTKu, MTS spol. s r.o., and awesome contributors + Generated by DocFx. © MTS spol. s r.oMTS spol. s r.o., and awesome contributors
diff --git a/scripts/app-test.ps1 b/scripts/app-test.ps1 index 191890e8e..707a8d802 100644 --- a/scripts/app-test.ps1 +++ b/scripts/app-test.ps1 @@ -782,7 +782,7 @@ Kill-Process -ProcessName "Siemens.Simatic.PlcSim.Advanced.UserInterface" $startDir= $PSScriptRoot # Check if axopen repository is already cloned #if (-Not (Test-Path -Path $axopenRepoDir)) { -# git clone -b dev https://github.com/ix-ax/AXOpen.git axopen +# git clone -b dev https://github.com/inxton/AXOpen.git axopen # Write-Host "AXOpen repository cloned." # # Build axopen if it was just cloned # cd $axopenRepoDir diff --git a/scripts/check_requisites.ps1 b/scripts/check_requisites.ps1 index 2a7c35b4f..a14555af3 100644 --- a/scripts/check_requisites.ps1 +++ b/scripts/check_requisites.ps1 @@ -114,7 +114,7 @@ $headers = @{ "Accept" = "application/vnd.github.package-preview+json" } -$feedUrl = "https://nuget.pkg.github.com/ix-ax/index.json" +$feedUrl = "https://nuget.pkg.github.com/inxton/index.json" # Check if the feed is added $isFeedAlreadyAdded = $false; @@ -216,7 +216,7 @@ To manually add the GitHub NuGet feed to your sources: 1. Generate a Personal Access Token on GitHub with 'read:packages', 'write:packages', and 'delete:packages' (if needed) permissions. 2. Open a command prompt or terminal. 3. Use the following command to add the feed to your NuGet sources: - dotnet nuget add source --username [YOUR_GITHUB_USERNAME] --password [YOUR_PERSONAL_ACCESS_TOKEN] --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json" + dotnet nuget add source --username [YOUR_GITHUB_USERNAME] --password [YOUR_PERSONAL_ACCESS_TOKEN] --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json" Replace [YOUR_GITHUB_USERNAME] with your actual GitHub username and [YOUR_PERSONAL_ACCESS_TOKEN] with the token you generated. diff --git a/src/NuGet.config b/src/NuGet.config index 462922ec9..f77b7a376 100644 --- a/src/NuGet.config +++ b/src/NuGet.config @@ -1,13 +1,13 @@ - + - + diff --git a/src/README.md b/src/README.md index 13974ffe6..4ae8acbee 100644 --- a/src/README.md +++ b/src/README.md @@ -12,7 +12,7 @@ To get access to the packages from `AX#` and `AXOpen` you will need to authenticate to a dedicated package feed hosted on GitHub. Authentication is free. If you do not have a GitHub account please consider creating one by signing up at https://github.com. ~~~ -dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-ix-ax "https://nuget.pkg.github.com/ix-ax/index.json" +dotnet nuget add source --username GITHUBUSERNAME --password PAT --store-password-in-clear-text --name gh-packages-inxton "https://nuget.pkg.github.com/inxton/index.json" ~~~ Replace GITHUBUSERNAME with your github name diff --git a/src/abstractions/app/apax.yml b/src/abstractions/app/apax.yml index 419c40b71..92e216ad2 100644 --- a/src/abstractions/app/apax.yml +++ b/src/abstractions/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.core": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to be able create hardware configuration using latest hwc version # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/abstractions/ctrl/apax.yml b/src/abstractions/ctrl/apax.yml index 2d6338b33..58d4f79d9 100644 --- a/src/abstractions/ctrl/apax.yml +++ b/src/abstractions/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.abstractions" +name: "@inxton/axopen.abstractions" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/ax.axopen.min": '0.0.0-dev.0' + "@inxton/ax.axopen.min": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/apax.yml b/src/apax.yml index 6a7ea96e8..450b65042 100644 --- a/src/apax.yml +++ b/src/apax.yml @@ -1,7 +1,7 @@ -name: "ix-ax" +name: "inxton" version: 0.0.0-dev.0 type: workspace devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 diff --git a/src/ax.axopen.app/ctrl/apax.yml b/src/ax.axopen.app/ctrl/apax.yml index 87d0d3977..d3274101c 100644 --- a/src/ax.axopen.app/ctrl/apax.yml +++ b/src/ax.axopen.app/ctrl/apax.yml @@ -1,10 +1,10 @@ -name: "@ix-ax/ax.axopen.app" +name: "@inxton/ax.axopen.app" version: '0.0.0-dev.0' type: generic files: - apax.yml devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' catalogs: "@ax/simatic-ax": 2405.2.0 dependencies: diff --git a/src/ax.axopen.hwlibrary/ctrl/apax.yml b/src/ax.axopen.hwlibrary/ctrl/apax.yml index 3c0063791..594bbba65 100644 --- a/src/ax.axopen.hwlibrary/ctrl/apax.yml +++ b/src/ax.axopen.hwlibrary/ctrl/apax.yml @@ -1,14 +1,14 @@ -name: "@ix-ax/ax.axopen.hwlibrary" +name: "@inxton/ax.axopen.hwlibrary" version: '0.0.0-dev.0' type: generic files: - apax.yml devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' catalogs: "@ax/simatic-ax": 2405.2.0 dependencies: - "@ix-ax/ax.axopen.min": '0.0.0-dev.0' + "@inxton/ax.axopen.min": '0.0.0-dev.0' "@ax/simatic-1500-distributedio": 7.0.1 "@ax/simatic-1500-diagnostics-hardware": 7.0.1 "@ax/simatic-1500-clocks": 7.0.4 diff --git a/src/ax.axopen.min/ctrl/apax.yml b/src/ax.axopen.min/ctrl/apax.yml index 2fe455c4a..96706a496 100644 --- a/src/ax.axopen.min/ctrl/apax.yml +++ b/src/ax.axopen.min/ctrl/apax.yml @@ -1,10 +1,10 @@ -name: "@ix-ax/ax.axopen.min" +name: "@inxton/ax.axopen.min" version: '0.0.0-dev.0' type: generic files: - apax.yml devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' catalogs: "@ax/simatic-ax": 2405.2.0 dependencies: diff --git a/src/ax.latest.packages/ctrl/apax.yml b/src/ax.latest.packages/ctrl/apax.yml index 99dbb41ef..2e7e089a9 100644 --- a/src/ax.latest.packages/ctrl/apax.yml +++ b/src/ax.latest.packages/ctrl/apax.yml @@ -1,10 +1,10 @@ -name: "@ix-ax/ax.latest.packages" +name: "@inxton/ax.latest.packages" version: '0.0.0-dev.0' type: generic files: - apax.yml devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' # catalogs: # "@ax/simatic-ax": 2405.2.0 dependencies: diff --git a/src/base/src/AXOpen.Base.Abstractions/App/IAxoApplication.cs b/src/base/src/AXOpen.Base.Abstractions/App/IAxoApplication.cs index a376d36e4..6ecdd55c2 100644 --- a/src/base/src/AXOpen.Base.Abstractions/App/IAxoApplication.cs +++ b/src/base/src/AXOpen.Base.Abstractions/App/IAxoApplication.cs @@ -1,9 +1,9 @@ // AXOpen.Base.Abstractions -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using System.Security.Principal; using AXOpen.Logging; diff --git a/src/base/src/AXOpen.Base.Abstractions/App/IAxoApplicationBuilder.cs b/src/base/src/AXOpen.Base.Abstractions/App/IAxoApplicationBuilder.cs index b7f3351c4..7fce0594d 100644 --- a/src/base/src/AXOpen.Base.Abstractions/App/IAxoApplicationBuilder.cs +++ b/src/base/src/AXOpen.Base.Abstractions/App/IAxoApplicationBuilder.cs @@ -1,9 +1,9 @@ // AXOpen.Base.Abstractions -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using AXOpen.Logging; diff --git a/src/base/src/AXOpen.Logging/SerilogLogger.cs b/src/base/src/AXOpen.Logging/SerilogLogger.cs index b8021e7d7..a4509a994 100644 --- a/src/base/src/AXOpen.Logging/SerilogLogger.cs +++ b/src/base/src/AXOpen.Logging/SerilogLogger.cs @@ -1,9 +1,9 @@ // AXOpen.Logging.Serilog -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using System.Security.Principal; using AXSharp.Connector; diff --git a/src/components.abb.robotics/app/apax.yml b/src/components.abb.robotics/app/apax.yml index e9d2f09b2..b77a25026 100644 --- a/src/components.abb.robotics/app/apax.yml +++ b/src/components.abb.robotics/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.abb.robotics": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.abb.robotics": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.abb.robotics/ctrl/.npmrc b/src/components.abb.robotics/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.abb.robotics/ctrl/.npmrc +++ b/src/components.abb.robotics/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.abb.robotics/ctrl/README.md b/src/components.abb.robotics/ctrl/README.md index 9f2d4337d..98abc74d9 100644 --- a/src/components.abb.robotics/ctrl/README.md +++ b/src/components.abb.robotics/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.abb.robotics +# @inxton/axopen.components.abb.robotics [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.abb.robotics" +apax add "@inxton/axopen.components.abb.robotics" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.abb.robotics": '{axopen-version}' + "@inxton/axopen.components.abb.robotics": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.abb.robotics/ctrl/apax.yml b/src/components.abb.robotics/ctrl/apax.yml index 9389c2dd4..50557ea41 100644 --- a/src/components.abb.robotics/ctrl/apax.yml +++ b/src/components.abb.robotics/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.abb.robotics" +name: "@inxton/axopen.components.abb.robotics" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.robotics": '0.0.0-dev.0' + "@inxton/axopen.components.robotics": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.abb.robotics/docs/README.md b/src/components.abb.robotics/docs/README.md index 266afbeaa..94f1bce48 100644 --- a/src/components.abb.robotics/docs/README.md +++ b/src/components.abb.robotics/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.abb.robotics** is a set of libraries covering the product portfolio of the robotics systems from the vendor [Abb](https://new.abb.com/products/robotics) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.abb.robotics** is a set of libraries covering the product portfolio of the robotics systems from the vendor [Abb](https://new.abb.com/products/robotics) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by IRC5 controller or Omnicore controller. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.abb.robotics/docs/TROUBLES.md b/src/components.abb.robotics/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.abb.robotics/docs/TROUBLES.md +++ b/src/components.abb.robotics/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/AXOpen.Components.Abb.Robotics.blazor.csproj b/src/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/AXOpen.Components.Abb.Robotics.blazor.csproj index e9ab493b1..182d85444 100644 --- a/src/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/AXOpen.Components.Abb.Robotics.blazor.csproj +++ b/src/components.abb.robotics/src/AXOpen.Components.Abb.Robotics.blazor/AXOpen.Components.Abb.Robotics.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Abb.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/ix_ax_axopen_components_abb_robotics.csproj b/src/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/ix_ax_axopen_components_abb_robotics.csproj index afca9d765..ad4cdc983 100644 --- a/src/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/ix_ax_axopen_components_abb_robotics.csproj +++ b/src/components.abb.robotics/src/AXOpen.Components.Abb.Robotics/ix_ax_axopen_components_abb_robotics.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Abb.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.abstractions/app/apax.yml b/src/components.abstractions/app/apax.yml index 6ef2cc3a8..315626fdc 100644 --- a/src/components.abstractions/app/apax.yml +++ b/src/components.abstractions/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.abstractions": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.abstractions": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to be able create hardware configuration using latest hwc version # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.abstractions/ctrl/apax.yml b/src/components.abstractions/ctrl/apax.yml index abd7bdf2c..91bbbb88d 100644 --- a/src/components.abstractions/ctrl/apax.yml +++ b/src/components.abstractions/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.abstractions" +name: "@inxton/axopen.components.abstractions" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.core": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.abstractions/docs/TROUBLES.md b/src/components.abstractions/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.abstractions/docs/TROUBLES.md +++ b/src/components.abstractions/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.balluff.identification/app/apax.yml b/src/components.balluff.identification/app/apax.yml index fa725eafc..3cc4d95a0 100644 --- a/src/components.balluff.identification/app/apax.yml +++ b/src/components.balluff.identification/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.balluff.identification": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.balluff.identification": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.balluff.identification/ctrl/.npmrc b/src/components.balluff.identification/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.balluff.identification/ctrl/.npmrc +++ b/src/components.balluff.identification/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.balluff.identification/ctrl/README.md b/src/components.balluff.identification/ctrl/README.md index 59bdcbd22..eccb6123a 100644 --- a/src/components.balluff.identification/ctrl/README.md +++ b/src/components.balluff.identification/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.balluff.identification +# @inxton/axopen.components.balluff.identification [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.balluff.identification" +apax add "@inxton/axopen.components.balluff.identification" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.balluff.identification": '{axopen-version}' + "@inxton/axopen.components.balluff.identification": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.balluff.identification/ctrl/apax.yml b/src/components.balluff.identification/ctrl/apax.yml index dac60c2b7..669b6b248 100644 --- a/src/components.balluff.identification/ctrl/apax.yml +++ b/src/components.balluff.identification/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.balluff.identification" +name: "@inxton/axopen.components.balluff.identification" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.balluff.identification/docs/README.md b/src/components.balluff.identification/docs/README.md index cb4cc4f02..50fa7c5bc 100644 --- a/src/components.balluff.identification/docs/README.md +++ b/src/components.balluff.identification/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.balluff.identification** is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor [Balluff](https://www.balluff.com/en-us/products/areas/A0003) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.balluff.identification** is a set of libraries covering the product portfolio of the identification (RFID) systems from the vendor [Balluff](https://www.balluff.com/en-us/products/areas/A0003) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the BIS-M-4XX-045 production family. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.balluff.identification/docs/TROUBLES.md b/src/components.balluff.identification/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.balluff.identification/docs/TROUBLES.md +++ b/src/components.balluff.identification/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/AXOpen.Components.Balluff.Identification.blazor.csproj b/src/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/AXOpen.Components.Balluff.Identification.blazor.csproj index 08f3945f5..fb1828c63 100644 --- a/src/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/AXOpen.Components.Balluff.Identification.blazor.csproj +++ b/src/components.balluff.identification/src/AXOpen.Components.Balluff.Identification.blazor/AXOpen.Components.Balluff.Identification.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Balluff.Identification - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/ix_ax_axopen_components_balluff_identification.csproj b/src/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/ix_ax_axopen_components_balluff_identification.csproj index 35736175f..77931c459 100644 --- a/src/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/ix_ax_axopen_components_balluff_identification.csproj +++ b/src/components.balluff.identification/src/AXOpen.Components.Balluff.Identification/ix_ax_axopen_components_balluff_identification.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Balluff.Identification - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.cognex.vision/app/apax.yml b/src/components.cognex.vision/app/apax.yml index 9b37ef594..2a6c56876 100644 --- a/src/components.cognex.vision/app/apax.yml +++ b/src/components.cognex.vision/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.cognex.vision": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.cognex.vision": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.cognex.vision/ctrl/.npmrc b/src/components.cognex.vision/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.cognex.vision/ctrl/.npmrc +++ b/src/components.cognex.vision/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.cognex.vision/ctrl/README.md b/src/components.cognex.vision/ctrl/README.md index 2b69301ac..9068fe126 100644 --- a/src/components.cognex.vision/ctrl/README.md +++ b/src/components.cognex.vision/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.cognex.vision +# @inxton/axopen.components.cognex.vision [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.cognex.vision" +apax add "@inxton/axopen.components.cognex.vision" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.cognex.vision": '{axopen-version}' + "@inxton/axopen.components.cognex.vision": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.cognex.vision/ctrl/apax.yml b/src/components.cognex.vision/ctrl/apax.yml index 87f03b0c0..9d64c4bb8 100644 --- a/src/components.cognex.vision/ctrl/apax.yml +++ b/src/components.cognex.vision/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.cognex.vision" +name: "@inxton/axopen.components.cognex.vision" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.cognex.vision/docs/README.md b/src/components.cognex.vision/docs/README.md index d4245d194..b9ecaa9fb 100644 --- a/src/components.cognex.vision/docs/README.md +++ b/src/components.cognex.vision/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.cognex.vision** is a set of libraries covering the product portfolio of the vision systems from the vendor [Cognex](https://www.cognex.com/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.cognex.vision** is a set of libraries covering the product portfolio of the vision systems from the vendor [Cognex](https://www.cognex.com/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the Dataman production family with the firmware 6.0.0.0 and the Insight production family with the firmware 6.0.0.0. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.cognex.vision/docs/TROUBLES.md b/src/components.cognex.vision/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.cognex.vision/docs/TROUBLES.md +++ b/src/components.cognex.vision/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/AXOpen.Components.Cognex.Vision.blazor.csproj b/src/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/AXOpen.Components.Cognex.Vision.blazor.csproj index a2411f148..f474390b8 100644 --- a/src/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/AXOpen.Components.Cognex.Vision.blazor.csproj +++ b/src/components.cognex.vision/src/AXOpen.Components.Cognex.Vision.blazor/AXOpen.Components.Cognex.Vision.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Cognex.Vision - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/ix_ax_axopen_components_cognex_vision.csproj b/src/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/ix_ax_axopen_components_cognex_vision.csproj index 9dbf04510..93dc7fd9b 100644 --- a/src/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/ix_ax_axopen_components_cognex_vision.csproj +++ b/src/components.cognex.vision/src/AXOpen.Components.Cognex.Vision/ix_ax_axopen_components_cognex_vision.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Cognex.Vision - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.desoutter.tightening/app/apax.yml b/src/components.desoutter.tightening/app/apax.yml index 8c3db95b5..3e796084b 100644 --- a/src/components.desoutter.tightening/app/apax.yml +++ b/src/components.desoutter.tightening/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.desoutter.tightening": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.desoutter.tightening": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.desoutter.tightening/ctrl/.npmrc b/src/components.desoutter.tightening/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.desoutter.tightening/ctrl/.npmrc +++ b/src/components.desoutter.tightening/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.desoutter.tightening/ctrl/README.md b/src/components.desoutter.tightening/ctrl/README.md index 4908087c2..758f83f34 100644 --- a/src/components.desoutter.tightening/ctrl/README.md +++ b/src/components.desoutter.tightening/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.desoutter.tightening +# @inxton/axopen.components.desoutter.tightening [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.desoutter.tightening" +apax add "@inxton/axopen.components.desoutter.tightening" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.desoutter.tightening": '{axopen-version}' + "@inxton/axopen.components.desoutter.tightening": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.desoutter.tightening/ctrl/apax.yml b/src/components.desoutter.tightening/ctrl/apax.yml index 16855068d..657dcddb1 100644 --- a/src/components.desoutter.tightening/ctrl/apax.yml +++ b/src/components.desoutter.tightening/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.desoutter.tightening" +name: "@inxton/axopen.components.desoutter.tightening" version: '0.0.0-dev.0' type: lib targets: @@ -7,11 +7,11 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 installStrategy: strict apaxVersion: 3.3.1 scripts: diff --git a/src/components.desoutter.tightening/docs/README.md b/src/components.desoutter.tightening/docs/README.md index 8eb3ba2d4..4bc45ebe4 100644 --- a/src/components.desoutter.tightening/docs/README.md +++ b/src/components.desoutter.tightening/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.desoutter.tightening** is a set of libraries covering the product portfolio of the tightening systems from the vendor [Desoutter](https://us.desouttertools.com/en) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.desoutter.tightening** is a set of libraries covering the product portfolio of the tightening systems from the vendor [Desoutter](https://us.desouttertools.com/en) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CVIC_II production family. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.desoutter.tightening/docs/TROUBLES.md b/src/components.desoutter.tightening/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.desoutter.tightening/docs/TROUBLES.md +++ b/src/components.desoutter.tightening/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/AXOpen.Components.Desoutter.Tightening.blazor.csproj b/src/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/AXOpen.Components.Desoutter.Tightening.blazor.csproj index 7e4523c50..35d302307 100644 --- a/src/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/AXOpen.Components.Desoutter.Tightening.blazor.csproj +++ b/src/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening.blazor/AXOpen.Components.Desoutter.Tightening.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Desoutter.Tightening - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/ix_ax_axopen_components_desoutter_tightening.csproj b/src/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/ix_ax_axopen_components_desoutter_tightening.csproj index 038c128dc..836debd45 100644 --- a/src/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/ix_ax_axopen_components_desoutter_tightening.csproj +++ b/src/components.desoutter.tightening/src/AXOpen.Components.Desoutter.Tightening/ix_ax_axopen_components_desoutter_tightening.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Desoutter.Tightening - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.drives/app/apax.yml b/src/components.drives/app/apax.yml index 29fb040f4..f13685a99 100644 --- a/src/components.drives/app/apax.yml +++ b/src/components.drives/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.drives": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.drives": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.drives/ctrl/.npmrc b/src/components.drives/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.drives/ctrl/.npmrc +++ b/src/components.drives/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.drives/ctrl/README.md b/src/components.drives/ctrl/README.md index b983e77d6..83fd93e55 100644 --- a/src/components.drives/ctrl/README.md +++ b/src/components.drives/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axlibname +# @inxton/axlibname [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding package to your project ~~~bash -apax add "@ix-ax/axlibname" +apax add "@inxton/axlibname" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axlibname": '{axopen-version}' + "@inxton/axlibname": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.drives/ctrl/apax.yml b/src/components.drives/ctrl/apax.yml index 891f8071a..821657180 100644 --- a/src/components.drives/ctrl/apax.yml +++ b/src/components.drives/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.drives" +name: "@inxton/axopen.components.drives" version: '0.0.0-dev.0' type: lib targets: @@ -7,9 +7,9 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: diff --git a/src/components.drives/docs/README.md b/src/components.drives/docs/README.md index 492ddc37f..e90d416e9 100644 --- a/src/components.drives/docs/README.md +++ b/src/components.drives/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.drives** is a set of libraries covering generic drives, single axis systems for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.drives** is a set of libraries covering generic drives, single axis systems for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific motion libraries are dependent on this library. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.drives/docs/TROUBLES.md b/src/components.drives/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.drives/docs/TROUBLES.md +++ b/src/components.drives/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.drives/src/AXOpen.Components.Drives.blazor/AXOpen.Components.Drives.blazor.csproj b/src/components.drives/src/AXOpen.Components.Drives.blazor/AXOpen.Components.Drives.blazor.csproj index c53df40a1..9966a3f71 100644 --- a/src/components.drives/src/AXOpen.Components.Drives.blazor/AXOpen.Components.Drives.blazor.csproj +++ b/src/components.drives/src/AXOpen.Components.Drives.blazor/AXOpen.Components.Drives.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Drives - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.drives/src/AXOpen.Components.Drives/ix_ax_axopen_components_drives.csproj b/src/components.drives/src/AXOpen.Components.Drives/ix_ax_axopen_components_drives.csproj index 45f83e309..40bd40e4a 100644 --- a/src/components.drives/src/AXOpen.Components.Drives/ix_ax_axopen_components_drives.csproj +++ b/src/components.drives/src/AXOpen.Components.Drives/ix_ax_axopen_components_drives.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Drives - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.elements/app/apax.yml b/src/components.elements/app/apax.yml index f439926b9..7db372123 100644 --- a/src/components.elements/app/apax.yml +++ b/src/components.elements/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.elements": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.elements": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.elements/ctrl/.npmrc b/src/components.elements/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.elements/ctrl/.npmrc +++ b/src/components.elements/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.elements/ctrl/apax.yml b/src/components.elements/ctrl/apax.yml index a6a3e6398..6bf57d47b 100644 --- a/src/components.elements/ctrl/apax.yml +++ b/src/components.elements/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.elements" +name: "@inxton/axopen.components.elements" version: '0.0.0-dev.0' type: lib targets: @@ -7,11 +7,11 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.abstractions": '0.0.0-dev.0' + "@inxton/axopen.components.abstractions": '0.0.0-dev.0' publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 installStrategy: strict apaxVersion: 3.3.1 ... diff --git a/src/components.elements/docs/TROUBLES.md b/src/components.elements/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.elements/docs/TROUBLES.md +++ b/src/components.elements/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.elements/src/AXOpen.Components.Elements.blazor/AXOpen.Components.Elements.blazor.csproj b/src/components.elements/src/AXOpen.Components.Elements.blazor/AXOpen.Components.Elements.blazor.csproj index fd6bb3bf3..a1165adb5 100644 --- a/src/components.elements/src/AXOpen.Components.Elements.blazor/AXOpen.Components.Elements.blazor.csproj +++ b/src/components.elements/src/AXOpen.Components.Elements.blazor/AXOpen.Components.Elements.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - elementscomponents - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.elements/src/AXOpen.Components.Elements/ix_ax_axopen_components_elements.csproj b/src/components.elements/src/AXOpen.Components.Elements/ix_ax_axopen_components_elements.csproj index aba581159..623d0c83b 100644 --- a/src/components.elements/src/AXOpen.Components.Elements/ix_ax_axopen_components_elements.csproj +++ b/src/components.elements/src/AXOpen.Components.Elements/ix_ax_axopen_components_elements.csproj @@ -12,11 +12,11 @@ AXOpen - elementscomponents - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.festo.drives/app/apax.yml b/src/components.festo.drives/app/apax.yml index f905b3824..181c0ae3f 100644 --- a/src/components.festo.drives/app/apax.yml +++ b/src/components.festo.drives/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.festo.drives": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.festo.drives": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.festo.drives/ctrl/.npmrc b/src/components.festo.drives/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.festo.drives/ctrl/.npmrc +++ b/src/components.festo.drives/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.festo.drives/ctrl/README.md b/src/components.festo.drives/ctrl/README.md index da12501d2..562b102ab 100644 --- a/src/components.festo.drives/ctrl/README.md +++ b/src/components.festo.drives/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.festo.drives +# @inxton/axopen.components.festo.drives [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding package to your project ~~~bash -apax add "@ix-ax/axopen.components.festo.drives" +apax add "@inxton/axopen.components.festo.drives" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axlibname": '{axopen-version}' + "@inxton/axlibname": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.festo.drives/ctrl/apax.yml b/src/components.festo.drives/ctrl/apax.yml index 8dbe1237c..59873bd47 100644 --- a/src/components.festo.drives/ctrl/apax.yml +++ b/src/components.festo.drives/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.festo.drives" +name: "@inxton/axopen.components.festo.drives" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.drives": '0.0.0-dev.0' + "@inxton/axopen.components.drives": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.festo.drives/docs/README.md b/src/components.festo.drives/docs/README.md index 09a98c638..60c6fbf1e 100644 --- a/src/components.festo.drives/docs/README.md +++ b/src/components.festo.drives/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.festo.drives** is a set of libraries covering the product portfolio of motion systems from the vendor [Festo](https://www.festo.com/de/en/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.festo.drives** is a set of libraries covering the product portfolio of motion systems from the vendor [Festo](https://www.festo.com/de/en/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the CMMT AS drives family. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.festo.drives/docs/TROUBLES.md b/src/components.festo.drives/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.festo.drives/docs/TROUBLES.md +++ b/src/components.festo.drives/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/AXOpen.Components.Festo.Drives.blazor.csproj b/src/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/AXOpen.Components.Festo.Drives.blazor.csproj index 45bffed16..567fea289 100644 --- a/src/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/AXOpen.Components.Festo.Drives.blazor.csproj +++ b/src/components.festo.drives/src/AXOpen.Components.Festo.Drives.blazor/AXOpen.Components.Festo.Drives.blazor.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Festo.Drives - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.festo.drives/src/AXOpen.Components.Festo.Drives/ix_ax_axopen_components_festo_drives.csproj b/src/components.festo.drives/src/AXOpen.Components.Festo.Drives/ix_ax_axopen_components_festo_drives.csproj index 60cb6534c..eab9668f4 100644 --- a/src/components.festo.drives/src/AXOpen.Components.Festo.Drives/ix_ax_axopen_components_festo_drives.csproj +++ b/src/components.festo.drives/src/AXOpen.Components.Festo.Drives/ix_ax_axopen_components_festo_drives.csproj @@ -11,11 +11,11 @@ AXOpen - AXOpen.Components.Festo.Drives - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -25,7 +25,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.kuka.robotics/app/apax.yml b/src/components.kuka.robotics/app/apax.yml index 9cb376f67..882e83e86 100644 --- a/src/components.kuka.robotics/app/apax.yml +++ b/src/components.kuka.robotics/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.kuka.robotics": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.kuka.robotics": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.kuka.robotics/ctrl/.npmrc b/src/components.kuka.robotics/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.kuka.robotics/ctrl/.npmrc +++ b/src/components.kuka.robotics/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.kuka.robotics/ctrl/README.md b/src/components.kuka.robotics/ctrl/README.md index b910fc3ef..157052540 100644 --- a/src/components.kuka.robotics/ctrl/README.md +++ b/src/components.kuka.robotics/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.kuka.robotics +# @inxton/axopen.components.kuka.robotics [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.kuka.robotics" +apax add "@inxton/axopen.components.kuka.robotics" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.kuka.robotics": '{axopen-version}' + "@inxton/axopen.components.kuka.robotics": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.kuka.robotics/ctrl/apax.yml b/src/components.kuka.robotics/ctrl/apax.yml index 3c53bff91..a4f003655 100644 --- a/src/components.kuka.robotics/ctrl/apax.yml +++ b/src/components.kuka.robotics/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.kuka.robotics" +name: "@inxton/axopen.components.kuka.robotics" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.robotics": '0.0.0-dev.0' + "@inxton/axopen.components.robotics": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.kuka.robotics/docs/README.md b/src/components.kuka.robotics/docs/README.md index b8aba8fd2..6ab1923b0 100644 --- a/src/components.kuka.robotics/docs/README.md +++ b/src/components.kuka.robotics/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.kuka.robotics** is a set of libraries covering the product portfolio of the robotics systems from the vendor [Kuka](https://www.kuka.com/en-gb) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.kuka.robotics** is a set of libraries covering the product portfolio of the robotics systems from the vendor [Kuka](https://www.kuka.com/en-gb) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by KRC4 controller. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.kuka.robotics/docs/TROUBLES.md b/src/components.kuka.robotics/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.kuka.robotics/docs/TROUBLES.md +++ b/src/components.kuka.robotics/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/AXOpen.Components.Kuka.Robotics.blazor.csproj b/src/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/AXOpen.Components.Kuka.Robotics.blazor.csproj index 8547e69bb..c8e74063c 100644 --- a/src/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/AXOpen.Components.Kuka.Robotics.blazor.csproj +++ b/src/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics.blazor/AXOpen.Components.Kuka.Robotics.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Kuka.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/ix_ax_axopen_components_kuka_robotics.csproj b/src/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/ix_ax_axopen_components_kuka_robotics.csproj index db266acd8..dcfda52cb 100644 --- a/src/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/ix_ax_axopen_components_kuka_robotics.csproj +++ b/src/components.kuka.robotics/src/AXOpen.Components.Kuka.Robotics/ix_ax_axopen_components_kuka_robotics.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Kuka.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.mitsubishi.robotics/app/apax.yml b/src/components.mitsubishi.robotics/app/apax.yml index 672a00490..2d58187a1 100644 --- a/src/components.mitsubishi.robotics/app/apax.yml +++ b/src/components.mitsubishi.robotics/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.mitsubishi.robotics": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.mitsubishi.robotics": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.mitsubishi.robotics/ctrl/.npmrc b/src/components.mitsubishi.robotics/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.mitsubishi.robotics/ctrl/.npmrc +++ b/src/components.mitsubishi.robotics/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.mitsubishi.robotics/ctrl/README.md b/src/components.mitsubishi.robotics/ctrl/README.md index 7fc25934c..586bc1388 100644 --- a/src/components.mitsubishi.robotics/ctrl/README.md +++ b/src/components.mitsubishi.robotics/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.mitsubishi.robotics +# @inxton/axopen.components.mitsubishi.robotics [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.mitsubishi.robotics" +apax add "@inxton/axopen.components.mitsubishi.robotics" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.mitsubishi.robotics": '{axopen-version}' + "@inxton/axopen.components.mitsubishi.robotics": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.mitsubishi.robotics/ctrl/apax.yml b/src/components.mitsubishi.robotics/ctrl/apax.yml index 23a8eb757..155417f30 100644 --- a/src/components.mitsubishi.robotics/ctrl/apax.yml +++ b/src/components.mitsubishi.robotics/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.mitsubishi.robotics" +name: "@inxton/axopen.components.mitsubishi.robotics" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.robotics": '0.0.0-dev.0' + "@inxton/axopen.components.robotics": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.mitsubishi.robotics/docs/README.md b/src/components.mitsubishi.robotics/docs/README.md index 9196d5b14..90a6a229b 100644 --- a/src/components.mitsubishi.robotics/docs/README.md +++ b/src/components.mitsubishi.robotics/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.mitsubishi.robotics** is a set of libraries covering the product portfolio of the robotics systems from the vendor [Mitsubishi](https://www.mitsubishielectric.com/fa/products/rbt/robot/index.html) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.mitsubishi.robotics** is a set of libraries covering the product portfolio of the robotics systems from the vendor [Mitsubishi](https://www.mitsubishielectric.com/fa/products/rbt/robot/index.html) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots driven by CR800 controller. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.mitsubishi.robotics/docs/TROUBLES.md b/src/components.mitsubishi.robotics/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.mitsubishi.robotics/docs/TROUBLES.md +++ b/src/components.mitsubishi.robotics/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/AXOpen.Components.Mitsubishi.Robotics.blazor.csproj b/src/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/AXOpen.Components.Mitsubishi.Robotics.blazor.csproj index 014225957..61edad9df 100644 --- a/src/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/AXOpen.Components.Mitsubishi.Robotics.blazor.csproj +++ b/src/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics.blazor/AXOpen.Components.Mitsubishi.Robotics.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Mitsubishi.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/ix_ax_axopen_components_mitsubishi_robotics.csproj b/src/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/ix_ax_axopen_components_mitsubishi_robotics.csproj index 5a7606645..a261793ed 100644 --- a/src/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/ix_ax_axopen_components_mitsubishi_robotics.csproj +++ b/src/components.mitsubishi.robotics/src/AXOpen.Components.Mitsubishi.Robotics/ix_ax_axopen_components_mitsubishi_robotics.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Mitsubishi.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.pneumatics/app/apax.yml b/src/components.pneumatics/app/apax.yml index 4876210c5..6f1cd74e9 100644 --- a/src/components.pneumatics/app/apax.yml +++ b/src/components.pneumatics/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.pneumatics": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.pneumatics": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.pneumatics/ctrl/.npmrc b/src/components.pneumatics/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.pneumatics/ctrl/.npmrc +++ b/src/components.pneumatics/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.pneumatics/ctrl/apax.yml b/src/components.pneumatics/ctrl/apax.yml index f345c45c6..9c4596512 100644 --- a/src/components.pneumatics/ctrl/apax.yml +++ b/src/components.pneumatics/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.pneumatics" +name: "@inxton/axopen.components.pneumatics" version: '0.0.0-dev.0' type: lib targets: @@ -12,9 +12,9 @@ variables: AXUNIT_TARGET_IP: "172.20.30.110" SIM_ENABLED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.abstractions": '0.0.0-dev.0' + "@inxton/axopen.components.abstractions": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: @@ -23,5 +23,5 @@ scripts: - apax sld load --accept-security-disclaimer -t $AXTARGET -i $AXTARGETPLATFORMINPUT -r - echo "Downloaded in :" $(expr $(date +%s) - $START) "s" publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.pneumatics/docs/TROUBLES.md b/src/components.pneumatics/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.pneumatics/docs/TROUBLES.md +++ b/src/components.pneumatics/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.pneumatics/src/AXOpen.Components.Pneumatics.blazor/AXOpen.Components.Pneumatics.blazor.csproj b/src/components.pneumatics/src/AXOpen.Components.Pneumatics.blazor/AXOpen.Components.Pneumatics.blazor.csproj index 908f97fc9..96057deac 100644 --- a/src/components.pneumatics/src/AXOpen.Components.Pneumatics.blazor/AXOpen.Components.Pneumatics.blazor.csproj +++ b/src/components.pneumatics/src/AXOpen.Components.Pneumatics.blazor/AXOpen.Components.Pneumatics.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - pneumaticcomponents - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.pneumatics/src/AXOpen.Components.Pneumatics/ix_ax_axopen_components_pneumatics.csproj b/src/components.pneumatics/src/AXOpen.Components.Pneumatics/ix_ax_axopen_components_pneumatics.csproj index 7e0259e58..65af3665e 100644 --- a/src/components.pneumatics/src/AXOpen.Components.Pneumatics/ix_ax_axopen_components_pneumatics.csproj +++ b/src/components.pneumatics/src/AXOpen.Components.Pneumatics/ix_ax_axopen_components_pneumatics.csproj @@ -12,11 +12,11 @@ AXOpen - pneumaticcomponents - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.rexroth.drives/app/apax.yml b/src/components.rexroth.drives/app/apax.yml index 21defeff1..4faad8820 100644 --- a/src/components.rexroth.drives/app/apax.yml +++ b/src/components.rexroth.drives/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.rexroth.drives": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.rexroth.drives": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.rexroth.drives/ctrl/.npmrc b/src/components.rexroth.drives/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.rexroth.drives/ctrl/.npmrc +++ b/src/components.rexroth.drives/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.rexroth.drives/ctrl/README.md b/src/components.rexroth.drives/ctrl/README.md index 0f64686d1..2115818db 100644 --- a/src/components.rexroth.drives/ctrl/README.md +++ b/src/components.rexroth.drives/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.rexroth.drives +# @inxton/axopen.components.rexroth.drives [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding package to your project ~~~bash -apax add "@ix-ax/axopen.components.rexroth.drives" +apax add "@inxton/axopen.components.rexroth.drives" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.rexroth.drives": '{axopen-version}' + "@inxton/axopen.components.rexroth.drives": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.rexroth.drives/ctrl/apax.yml b/src/components.rexroth.drives/ctrl/apax.yml index d922ba3c2..763b5512d 100644 --- a/src/components.rexroth.drives/ctrl/apax.yml +++ b/src/components.rexroth.drives/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.rexroth.drives" +name: "@inxton/axopen.components.rexroth.drives" version: '0.0.0-dev.0' type: lib targets: @@ -7,9 +7,9 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.drives": '0.0.0-dev.0' + "@inxton/axopen.components.drives": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 ... diff --git a/src/components.rexroth.drives/docs/README.md b/src/components.rexroth.drives/docs/README.md index 4737af713..a8c9de5fb 100644 --- a/src/components.rexroth.drives/docs/README.md +++ b/src/components.rexroth.drives/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.rexroth.drives** is a set of libraries covering the product portfolio of motion systems from the vendor [Rexroth](https://www.boschrexroth.com/en/dc/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.rexroth.drives** is a set of libraries covering the product portfolio of motion systems from the vendor [Rexroth](https://www.boschrexroth.com/en/dc/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the IndraDrive drives family. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.rexroth.drives/docs/TROUBLES.md b/src/components.rexroth.drives/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.rexroth.drives/docs/TROUBLES.md +++ b/src/components.rexroth.drives/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/AXOpen.Components.Rexroth.Drives.blazor.csproj b/src/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/AXOpen.Components.Rexroth.Drives.blazor.csproj index a13687a5d..093c81225 100644 --- a/src/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/AXOpen.Components.Rexroth.Drives.blazor.csproj +++ b/src/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives.blazor/AXOpen.Components.Rexroth.Drives.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Rexroth.Drives - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/ix_ax_axopen_components_rexroth_drives.csproj b/src/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/ix_ax_axopen_components_rexroth_drives.csproj index 980c4056e..5a9258830 100644 --- a/src/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/ix_ax_axopen_components_rexroth_drives.csproj +++ b/src/components.rexroth.drives/src/AXOpen.Components.Rexroth.Drives/ix_ax_axopen_components_rexroth_drives.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Rexroth.Drives - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.rexroth.press/app/apax.yml b/src/components.rexroth.press/app/apax.yml index 1e02d6925..316be600e 100644 --- a/src/components.rexroth.press/app/apax.yml +++ b/src/components.rexroth.press/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.rexroth.press": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.rexroth.press": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.rexroth.press/ctrl/.npmrc b/src/components.rexroth.press/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.rexroth.press/ctrl/.npmrc +++ b/src/components.rexroth.press/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.rexroth.press/ctrl/README.md b/src/components.rexroth.press/ctrl/README.md index 7e041d07e..16b8fa11f 100644 --- a/src/components.rexroth.press/ctrl/README.md +++ b/src/components.rexroth.press/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.rexroth.press +# @inxton/axopen.components.rexroth.press [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.rexroth.press" +apax add "@inxton/axopen.components.rexroth.press" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.rexroth.press": '{axopen-version}' + "@inxton/axopen.components.rexroth.press": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.rexroth.press/ctrl/apax.yml b/src/components.rexroth.press/ctrl/apax.yml index cb5fe685d..44a910708 100644 --- a/src/components.rexroth.press/ctrl/apax.yml +++ b/src/components.rexroth.press/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.rexroth.press" +name: "@inxton/axopen.components.rexroth.press" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.rexroth.press/docs/README.md b/src/components.rexroth.press/docs/README.md index 825629954..937f092f8 100644 --- a/src/components.rexroth.press/docs/README.md +++ b/src/components.rexroth.press/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.rexroth.press** is a set of libraries covering the product portfolio of the pressing systems from the vendor [Rexroth](https://www.boschrexroth.com/en/dc/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.rexroth.press** is a set of libraries covering the product portfolio of the pressing systems from the vendor [Rexroth](https://www.boschrexroth.com/en/dc/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers Smart Function Kit firmware v4.x.x. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.rexroth.press/docs/TROUBLES.md b/src/components.rexroth.press/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.rexroth.press/docs/TROUBLES.md +++ b/src/components.rexroth.press/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/AXOpen.Components.Rexroth.Press.blazor.csproj b/src/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/AXOpen.Components.Rexroth.Press.blazor.csproj index 25a6c32fa..286889f40 100644 --- a/src/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/AXOpen.Components.Rexroth.Press.blazor.csproj +++ b/src/components.rexroth.press/src/AXOpen.Components.Rexroth.Press.blazor/AXOpen.Components.Rexroth.Press.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Rexroth.Press - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/ix_ax_axopen_components_rexroth_press.csproj b/src/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/ix_ax_axopen_components_rexroth_press.csproj index 9f85a5a6f..1a0fa2d18 100644 --- a/src/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/ix_ax_axopen_components_rexroth_press.csproj +++ b/src/components.rexroth.press/src/AXOpen.Components.Rexroth.Press/ix_ax_axopen_components_rexroth_press.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Rexroth.Press - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.robotics/app/apax.yml b/src/components.robotics/app/apax.yml index f13e3c22b..be417843b 100644 --- a/src/components.robotics/app/apax.yml +++ b/src/components.robotics/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.robotics": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.robotics": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.robotics/ctrl/.npmrc b/src/components.robotics/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.robotics/ctrl/.npmrc +++ b/src/components.robotics/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.robotics/ctrl/README.md b/src/components.robotics/ctrl/README.md index 03323b533..f9b3a9ccd 100644 --- a/src/components.robotics/ctrl/README.md +++ b/src/components.robotics/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.robotics +# @inxton/axopen.components.robotics [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.robotics" +apax add "@inxton/axopen.components.robotics" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.robotics": '{axopen-version}' + "@inxton/axopen.components.robotics": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.robotics/ctrl/apax.yml b/src/components.robotics/ctrl/apax.yml index 710d676ef..7f132875b 100644 --- a/src/components.robotics/ctrl/apax.yml +++ b/src/components.robotics/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.robotics" +name: "@inxton/axopen.components.robotics" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.robotics/docs/README.md b/src/components.robotics/docs/README.md index 4ff70ce09..1f4116dd0 100644 --- a/src/components.robotics/docs/README.md +++ b/src/components.robotics/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.robotics** is a set of libraries includes some common structures and methods for the robotics for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.robotics** is a set of libraries includes some common structures and methods for the robotics for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. All other vendor-specific robotics libraries are dependent on this library. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.robotics/docs/TROUBLES.md b/src/components.robotics/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.robotics/docs/TROUBLES.md +++ b/src/components.robotics/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.robotics/src/AXOpen.Components.Robotics.blazor/AXOpen.Components.Robotics.blazor.csproj b/src/components.robotics/src/AXOpen.Components.Robotics.blazor/AXOpen.Components.Robotics.blazor.csproj index fd6f68e7c..3d8e6255b 100644 --- a/src/components.robotics/src/AXOpen.Components.Robotics.blazor/AXOpen.Components.Robotics.blazor.csproj +++ b/src/components.robotics/src/AXOpen.Components.Robotics.blazor/AXOpen.Components.Robotics.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.robotics/src/AXOpen.Components.Robotics/ix_ax_axopen_components_robotics.csproj b/src/components.robotics/src/AXOpen.Components.Robotics/ix_ax_axopen_components_robotics.csproj index d57066c15..1d856a226 100644 --- a/src/components.robotics/src/AXOpen.Components.Robotics/ix_ax_axopen_components_robotics.csproj +++ b/src/components.robotics/src/AXOpen.Components.Robotics/ix_ax_axopen_components_robotics.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.siem.identification/app/apax.yml b/src/components.siem.identification/app/apax.yml index fc0486a8d..6207dcfeb 100644 --- a/src/components.siem.identification/app/apax.yml +++ b/src/components.siem.identification/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.siem.identification": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.siem.identification": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.siem.identification/ctrl/.npmrc b/src/components.siem.identification/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.siem.identification/ctrl/.npmrc +++ b/src/components.siem.identification/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.siem.identification/ctrl/README.md b/src/components.siem.identification/ctrl/README.md index d171f7c9b..83d7c9e19 100644 --- a/src/components.siem.identification/ctrl/README.md +++ b/src/components.siem.identification/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen_components_siem_identification +# @inxton/axopen_components_siem_identification [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen_components_siem_identification" +apax add "@inxton/axopen_components_siem_identification" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen_components_siem_identification": '{axopen-version}' + "@inxton/axopen_components_siem_identification": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.siem.identification/ctrl/apax.yml b/src/components.siem.identification/ctrl/apax.yml index d689c6a09..ca87c72f3 100644 --- a/src/components.siem.identification/ctrl/apax.yml +++ b/src/components.siem.identification/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.siem.identification" +name: "@inxton/axopen.components.siem.identification" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.siem.identification/docs/TROUBLES.md b/src/components.siem.identification/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.siem.identification/docs/TROUBLES.md +++ b/src/components.siem.identification/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.siem.identification/src/AXOpen.Components.Siem.Identification.blazor/AXOpen.Components.Siem.Identification.blazor.csproj b/src/components.siem.identification/src/AXOpen.Components.Siem.Identification.blazor/AXOpen.Components.Siem.Identification.blazor.csproj index 5cfba71b8..1b4bb0dc1 100644 --- a/src/components.siem.identification/src/AXOpen.Components.Siem.Identification.blazor/AXOpen.Components.Siem.Identification.blazor.csproj +++ b/src/components.siem.identification/src/AXOpen.Components.Siem.Identification.blazor/AXOpen.Components.Siem.Identification.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Siem.Identification - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.siem.identification/src/AXOpen.Components.Siem.Identification/ix_ax_axopen_components_siem_identification.csproj b/src/components.siem.identification/src/AXOpen.Components.Siem.Identification/ix_ax_axopen_components_siem_identification.csproj index cd8c28b60..eb38e4313 100644 --- a/src/components.siem.identification/src/AXOpen.Components.Siem.Identification/ix_ax_axopen_components_siem_identification.csproj +++ b/src/components.siem.identification/src/AXOpen.Components.Siem.Identification/ix_ax_axopen_components_siem_identification.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Siem.Identification - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.ur.robotics/app/apax.yml b/src/components.ur.robotics/app/apax.yml index 8a7aaa7b4..32f28cf4a 100644 --- a/src/components.ur.robotics/app/apax.yml +++ b/src/components.ur.robotics/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.ur.robotics": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.ur.robotics": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/components.ur.robotics/ctrl/.npmrc b/src/components.ur.robotics/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/components.ur.robotics/ctrl/.npmrc +++ b/src/components.ur.robotics/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/components.ur.robotics/ctrl/README.md b/src/components.ur.robotics/ctrl/README.md index ca8e8dc9f..4dec51b03 100644 --- a/src/components.ur.robotics/ctrl/README.md +++ b/src/components.ur.robotics/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.components.ur.robotics +# @inxton/axopen.components.ur.robotics [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.components.ur.robotics" +apax add "@inxton/axopen.components.ur.robotics" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.components.ur.robotics": '{axopen-version}' + "@inxton/axopen.components.ur.robotics": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/components.ur.robotics/ctrl/apax.yml b/src/components.ur.robotics/ctrl/apax.yml index cf1e77550..aa6447a58 100644 --- a/src/components.ur.robotics/ctrl/apax.yml +++ b/src/components.ur.robotics/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.components.ur.robotics" +name: "@inxton/axopen.components.ur.robotics" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.robotics": '0.0.0-dev.0' + "@inxton/axopen.components.robotics": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/components.ur.robotics/docs/README.md b/src/components.ur.robotics/docs/README.md index edb535a28..571970469 100644 --- a/src/components.ur.robotics/docs/README.md +++ b/src/components.ur.robotics/docs/README.md @@ -1,10 +1,10 @@ ## Description -The **components.ur.robotics** is a set of libraries covering the product portfolio of the robotics systems from the vendor [Universal Robots](https://www.universal-robots.com/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/ix-ax/AXOpen?tab=readme-ov-file) framework. +The **components.ur.robotics** is a set of libraries covering the product portfolio of the robotics systems from the vendor [Universal Robots](https://www.universal-robots.com/) for the target PLC platform [Siemens AX](https://www.siemens.com/global/en/products/automation/industry-software/automation-software/simatic-ax.html) and [AxOpen](https://github.com/inxton/AXOpen?tab=readme-ov-file) framework. The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers the robots of the CB3 production family. ### Links to documentation [Siemens AX-documentation](https://developer.siemens.com/simatic-ax/developer.html) -[AxOpen-documentation](https://ix-ax.github.io/AXOpen/) +[AxOpen-documentation](https://inxton.github.io/AXOpen/) diff --git a/src/components.ur.robotics/docs/TROUBLES.md b/src/components.ur.robotics/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/components.ur.robotics/docs/TROUBLES.md +++ b/src/components.ur.robotics/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/AXOpen.Components.Ur.Robotics.blazor.csproj b/src/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/AXOpen.Components.Ur.Robotics.blazor.csproj index 2fce6d603..d7f9a992c 100644 --- a/src/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/AXOpen.Components.Ur.Robotics.blazor.csproj +++ b/src/components.ur.robotics/src/AXOpen.Components.Ur.Robotics.blazor/AXOpen.Components.Ur.Robotics.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Components.Ur.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/ix_ax_axopen_components_ur_robotics.csproj b/src/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/ix_ax_axopen_components_ur_robotics.csproj index b277a1342..78264a34d 100644 --- a/src/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/ix_ax_axopen_components_ur_robotics.csproj +++ b/src/components.ur.robotics/src/AXOpen.Components.Ur.Robotics/ix_ax_axopen_components_ur_robotics.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Components.Ur.Robotics - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/core/app/apax.yml b/src/core/app/apax.yml index a9864b2a7..4d975c681 100644 --- a/src/core/app/apax.yml +++ b/src/core/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.core": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/core/ctrl/.npmrc b/src/core/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/core/ctrl/.npmrc +++ b/src/core/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/core/ctrl/apax.yml b/src/core/ctrl/apax.yml index 24fe510f4..3bdc26407 100644 --- a/src/core/ctrl/apax.yml +++ b/src/core/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.core" +name: "@inxton/axopen.core" version: '0.0.0-dev.0' type: lib targets: @@ -9,14 +9,14 @@ files: variables: APAX_BUILD_ARGS: [ -d ] devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.timers": '0.0.0-dev.0' + "@inxton/axopen.timers": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/core/src/AXOpen.Core/AxoCoordination/AxoSequencer.cs b/src/core/src/AXOpen.Core/AxoCoordination/AxoSequencer.cs index 4c167159b..4e98229ab 100644 --- a/src/core/src/AXOpen.Core/AxoCoordination/AxoSequencer.cs +++ b/src/core/src/AXOpen.Core/AxoCoordination/AxoSequencer.cs @@ -1,9 +1,9 @@ // AXOpen.Core -// Copyright (c)2022 Peter Kurhajec and Contributors All Rights Reserved. -// Contributors: https://github.com/PTKu/ix/graphs/contributors +// Copyright (c)2022 MTS spol. s r.o. and Contributors All Rights Reserved. +// Contributors: https://github.com/inxton/axopen/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/PTKu/ix/blob/master/LICENSE -// Third party licenses: https://github.com/PTKu/ix/blob/master/notices.md +// https://github.com/inxton/axopen/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/axopen/blob/master/notices.md namespace AXOpen.Core; diff --git a/src/core/src/AXOpen.Core/AxoCoordination/AxoSequencerContainer.cs b/src/core/src/AXOpen.Core/AxoCoordination/AxoSequencerContainer.cs index e7df4ce42..aab5a9677 100644 --- a/src/core/src/AXOpen.Core/AxoCoordination/AxoSequencerContainer.cs +++ b/src/core/src/AXOpen.Core/AxoCoordination/AxoSequencerContainer.cs @@ -1,9 +1,9 @@ // AXOpen.Core -// Copyright (c)2022 Peter Kurhajec and Contributors All Rights Reserved. -// Contributors: https://github.com/PTKu/ix/graphs/contributors +// Copyright (c)2022 MTS spol. s r.o. and Contributors All Rights Reserved. +// Contributors: https://github.com/inxton/axopen/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/PTKu/ix/blob/master/LICENSE -// Third party licenses: https://github.com/PTKu/ix/blob/master/notices.md +// https://github.com/inxton/axopen/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/axopen/blob/master/notices.md namespace AXOpen.Core; diff --git a/src/core/src/AXOpen.Core/AxoMessenger/Static/AxoMessenger.cs b/src/core/src/AXOpen.Core/AxoMessenger/Static/AxoMessenger.cs index fb23e504d..bf45e6cca 100644 --- a/src/core/src/AXOpen.Core/AxoMessenger/Static/AxoMessenger.cs +++ b/src/core/src/AXOpen.Core/AxoMessenger/Static/AxoMessenger.cs @@ -1,9 +1,9 @@ // AXOpen.Core -// Copyright (c)2022 Peter Kurhajec and Contributors All Rights Reserved. -// Contributors: https://github.com/PTKu/ix/graphs/contributors +// Copyright (c)2022 MTS spol. s r.o. and Contributors All Rights Reserved. +// Contributors: https://github.com/inxton/axopen/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/PTKu/ix/blob/master/LICENSE -// Third party licenses: https://github.com/PTKu/ix/blob/master/notices.md +// https://github.com/inxton/axopen/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/axopen/blob/master/notices.md using AXOpen.Base.Data; using System; diff --git a/src/core/src/AXOpen.Core/AxoMessenger/Static/AxoMessengerTextItem.cs b/src/core/src/AXOpen.Core/AxoMessenger/Static/AxoMessengerTextItem.cs index 76faa665c..c9243e35b 100644 --- a/src/core/src/AXOpen.Core/AxoMessenger/Static/AxoMessengerTextItem.cs +++ b/src/core/src/AXOpen.Core/AxoMessenger/Static/AxoMessengerTextItem.cs @@ -1,9 +1,9 @@ // AXOpen.Core -// Copyright (c)2022 Peter Kurhajec and Contributors All Rights Reserved. -// Contributors: https://github.com/PTKu/ix/graphs/contributors +// Copyright (c)2022 MTS spol. s r.o. and Contributors All Rights Reserved. +// Contributors: https://github.com/inxton/axopen/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/PTKu/ix/blob/master/LICENSE -// Third party licenses: https://github.com/PTKu/ix/blob/master/notices.md +// https://github.com/inxton/axopen/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/axopen/blob/master/notices.md namespace AXOpen.Messaging.Static; diff --git a/src/data/app/apax.yml b/src/data/app/apax.yml index 13a5f6eae..e2afc8b15 100644 --- a/src/data/app/apax.yml +++ b/src/data/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.data": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.data": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/data/app/app.sln b/src/data/app/app.sln index 9c5201d81..e06f863dc 100644 --- a/src/data/app/app.sln +++ b/src/data/app/app.sln @@ -15,11 +15,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".apax", ".apax", "{C1519D32 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "packages", "packages", "{2959B50D-7F37-473F-A6BF-573E321C43F9}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@ix-ax", "@ix-ax", "{A817FCC7-1B30-4C66-99C0-C163C5539267}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@inxton", "@inxton", "{A817FCC7-1B30-4C66-99C0-C163C5539267}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "axopen.timers", "axopen.timers", "{7A9FB96D-C666-45EF-B154-7E0A2E32FCBC}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ix_ax_axopen_timers", ".apax\packages\@ix-ax\axopen.timers\ix\ix_ax_axopen_timers.csproj", "{7751D8D0-AABB-4BE5-AA71-7210D4245425}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ix_ax_axopen_timers", ".apax\packages\@inxton\axopen.timers\ix\ix_ax_axopen_timers.csproj", "{7751D8D0-AABB-4BE5-AA71-7210D4245425}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "axopen.core", "axopen.core", "{6F096236-1723-4969-9F18-F14DA18338DC}" EndProject @@ -27,11 +27,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".apax", ".apax", "{5CCFDB0F EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "packages", "packages", "{81810ACF-9895-4DDB-B795-7D8ED693E5F8}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@ix-ax", "@ix-ax", "{941DB3AD-637D-43A0-8B48-B7B4AD3D4C03}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@inxton", "@inxton", "{941DB3AD-637D-43A0-8B48-B7B4AD3D4C03}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "axopen.timers", "axopen.timers", "{F10B6222-3102-462A-AA1C-A64BCD7C61B7}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ix_ax_axopen_timers", ".apax\packages\@ix-ax\axopen.core\.apax\packages\@ix-ax\axopen.timers\ix\ix_ax_axopen_timers.csproj", "{DBA3A35F-9E9D-401D-9857-13A57731F8F2}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ix_ax_axopen_timers", ".apax\packages\@inxton\axopen.core\.apax\packages\@inxton\axopen.timers\ix\ix_ax_axopen_timers.csproj", "{DBA3A35F-9E9D-401D-9857-13A57731F8F2}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "axopen.data", "axopen.data", "{589284AD-F34F-4005-8989-F5FB226472FA}" EndProject @@ -39,11 +39,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".apax", ".apax", "{4A5B8BD7 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "packages", "packages", "{1C78F7B9-5174-499C-9EB3-C54F4FF92D05}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@ix-ax", "@ix-ax", "{777D86F6-ADEA-4848-81BF-BFF8ADD9E6A6}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@inxton", "@inxton", "{777D86F6-ADEA-4848-81BF-BFF8ADD9E6A6}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "axopen.timers", "axopen.timers", "{9D9AE7DB-3D9A-4A98-8693-C24A702A2CB5}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ix_ax_axopen_timers", ".apax\packages\@ix-ax\axopen.data\.apax\packages\@ix-ax\axopen.timers\ix\ix_ax_axopen_timers.csproj", "{E2601924-C115-4757-9A7B-2B13DDA6B849}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ix_ax_axopen_timers", ".apax\packages\@inxton\axopen.data\.apax\packages\@inxton\axopen.timers\ix\ix_ax_axopen_timers.csproj", "{E2601924-C115-4757-9A7B-2B13DDA6B849}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "axopen.core", "axopen.core", "{86FE9B8E-99AE-4C89-B0CA-96F82B477DA9}" EndProject @@ -51,11 +51,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".apax", ".apax", "{59035635 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "packages", "packages", "{D106F9B7-FF36-49C9-8FB2-AC887A4D42BA}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@ix-ax", "@ix-ax", "{A4E39D9A-D824-477C-A6C0-D74E669FE5FD}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@inxton", "@inxton", "{A4E39D9A-D824-477C-A6C0-D74E669FE5FD}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "axopen.timers", "axopen.timers", "{DDFE8212-C562-4256-A969-C8D70AA481E9}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ix_ax_axopen_timers", ".apax\packages\@ix-ax\axopen.data\.apax\packages\@ix-ax\axopen.core\.apax\packages\@ix-ax\axopen.timers\ix\ix_ax_axopen_timers.csproj", "{01AC4531-10AD-4FFB-A281-B1A9A5DDC7A2}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ix_ax_axopen_timers", ".apax\packages\@inxton\axopen.data\.apax\packages\@inxton\axopen.core\.apax\packages\@inxton\axopen.timers\ix\ix_ax_axopen_timers.csproj", "{01AC4531-10AD-4FFB-A281-B1A9A5DDC7A2}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/data/app/ix-blazor/librarytemplate.blazor/Pages/Documentation.razor b/src/data/app/ix-blazor/librarytemplate.blazor/Pages/Documentation.razor index 1320e1112..e366811e9 100644 --- a/src/data/app/ix-blazor/librarytemplate.blazor/Pages/Documentation.razor +++ b/src/data/app/ix-blazor/librarytemplate.blazor/Pages/Documentation.razor @@ -10,4 +10,4 @@ } - + diff --git a/src/data/ctrl/.npmrc b/src/data/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/data/ctrl/.npmrc +++ b/src/data/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/data/ctrl/apax.yml b/src/data/ctrl/apax.yml index 7a23b8b5c..ad817c988 100644 --- a/src/data/ctrl/apax.yml +++ b/src/data/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.data" +name: "@inxton/axopen.data" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.core": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/data/src/AXOpen.Data.Blazor/AxoDataExchange/DataExchangeView.razor.cs b/src/data/src/AXOpen.Data.Blazor/AxoDataExchange/DataExchangeView.razor.cs index b0b482860..2b4949b29 100644 --- a/src/data/src/AXOpen.Data.Blazor/AxoDataExchange/DataExchangeView.razor.cs +++ b/src/data/src/AXOpen.Data.Blazor/AxoDataExchange/DataExchangeView.razor.cs @@ -1,9 +1,9 @@ // axopen_data_blazor -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using AXOpen.Base.Data; using AXOpen.Data.Interfaces; diff --git a/src/data/src/AXOpen.Data.Blazor/AxoDataExchange/WrongTypeOfDataObjectException.cs b/src/data/src/AXOpen.Data.Blazor/AxoDataExchange/WrongTypeOfDataObjectException.cs index 971608b70..cbead0a2b 100644 --- a/src/data/src/AXOpen.Data.Blazor/AxoDataExchange/WrongTypeOfDataObjectException.cs +++ b/src/data/src/AXOpen.Data.Blazor/AxoDataExchange/WrongTypeOfDataObjectException.cs @@ -1,9 +1,9 @@ // AXOpen.Data.blazor -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md namespace AXOpen.Data; diff --git a/src/data/src/AXOpen.Data.Blazor/DataPersistentExchange/AxoDataPersistentExchangeView.razor.cs b/src/data/src/AXOpen.Data.Blazor/DataPersistentExchange/AxoDataPersistentExchangeView.razor.cs index e3418b699..d1cf8d470 100644 --- a/src/data/src/AXOpen.Data.Blazor/DataPersistentExchange/AxoDataPersistentExchangeView.razor.cs +++ b/src/data/src/AXOpen.Data.Blazor/DataPersistentExchange/AxoDataPersistentExchangeView.razor.cs @@ -1,9 +1,9 @@ // axopen_data_blazor -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using AXOpen.Base.Data; using AXOpen.Base.Dialogs; diff --git a/src/data/src/AXOpen.Data/DataExchange/AxoDataExchange.cs b/src/data/src/AXOpen.Data/DataExchange/AxoDataExchange.cs index 49bc25bdb..481d779d2 100644 --- a/src/data/src/AXOpen.Data/DataExchange/AxoDataExchange.cs +++ b/src/data/src/AXOpen.Data/DataExchange/AxoDataExchange.cs @@ -1,9 +1,9 @@ // ix_ax_axopen_data -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using System.Collections.Generic; using System.Diagnostics; diff --git a/src/data/src/AXOpen.Data/DataExchange/AxoDataExchangeBase.cs b/src/data/src/AXOpen.Data/DataExchange/AxoDataExchangeBase.cs index 8c1d7717a..15570e2ed 100644 --- a/src/data/src/AXOpen.Data/DataExchange/AxoDataExchangeBase.cs +++ b/src/data/src/AXOpen.Data/DataExchange/AxoDataExchangeBase.cs @@ -1,9 +1,9 @@ // ix_ax_axopen_data -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using AXSharp.Connector; diff --git a/src/data/src/AXOpen.Data/DataExchange/AxoDataVerifyHashAttribute.cs b/src/data/src/AXOpen.Data/DataExchange/AxoDataVerifyHashAttribute.cs index 3085ffb50..38f3fd667 100644 --- a/src/data/src/AXOpen.Data/DataExchange/AxoDataVerifyHashAttribute.cs +++ b/src/data/src/AXOpen.Data/DataExchange/AxoDataVerifyHashAttribute.cs @@ -1,9 +1,9 @@ // ix_ax_axopen_data -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md namespace AXOpen.Data; diff --git a/src/data/src/AXOpen.Data/DataFragmentExchange/AxoCompoundRepository.cs b/src/data/src/AXOpen.Data/DataFragmentExchange/AxoCompoundRepository.cs index db2e5f771..a3d29f043 100644 --- a/src/data/src/AXOpen.Data/DataFragmentExchange/AxoCompoundRepository.cs +++ b/src/data/src/AXOpen.Data/DataFragmentExchange/AxoCompoundRepository.cs @@ -1,9 +1,9 @@ // ix_ax_axopen_data -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using AXOpen.Base.Data; diff --git a/src/data/src/AXOpen.Data/DataFragmentExchange/AxoDataFragmentAttribute.cs b/src/data/src/AXOpen.Data/DataFragmentExchange/AxoDataFragmentAttribute.cs index 0ab55c96a..9bbe6bc8d 100644 --- a/src/data/src/AXOpen.Data/DataFragmentExchange/AxoDataFragmentAttribute.cs +++ b/src/data/src/AXOpen.Data/DataFragmentExchange/AxoDataFragmentAttribute.cs @@ -1,9 +1,9 @@ // ix_ax_axopen_data -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md namespace AXOpen.Data; diff --git a/src/data/src/AXOpen.Data/DataFragmentExchange/AxoDataFragmentExchange.cs b/src/data/src/AXOpen.Data/DataFragmentExchange/AxoDataFragmentExchange.cs index cfd3de678..b8037d8fd 100644 --- a/src/data/src/AXOpen.Data/DataFragmentExchange/AxoDataFragmentExchange.cs +++ b/src/data/src/AXOpen.Data/DataFragmentExchange/AxoDataFragmentExchange.cs @@ -1,9 +1,9 @@ // axosimple -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using System.IO.Compression; using System.Reflection; diff --git a/src/data/src/AXOpen.Data/DataFragmentExchange/AxoFragmentedDataCompound.cs b/src/data/src/AXOpen.Data/DataFragmentExchange/AxoFragmentedDataCompound.cs index e8c5e64d3..9fad233dd 100644 --- a/src/data/src/AXOpen.Data/DataFragmentExchange/AxoFragmentedDataCompound.cs +++ b/src/data/src/AXOpen.Data/DataFragmentExchange/AxoFragmentedDataCompound.cs @@ -1,9 +1,9 @@ // ix_ax_axopen_data -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/axsharp/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/axsharp/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/axsharp/blob/dev/LICENSE -// Third party licenses: https://github.com/ix-ax/axsharp/blob/dev/notices.md +// https://github.com/inxton/axsharp/blob/dev/LICENSE +// Third party licenses: https://github.com/inxton/axsharp/blob/dev/notices.md using System.Globalization; using AXSharp.Abstractions.Presentation; diff --git a/src/inspectors/app/apax.yml b/src/inspectors/app/apax.yml index 0d074614c..3056c4316 100644 --- a/src/inspectors/app/apax.yml +++ b/src/inspectors/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.inspectors": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.inspectors": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/inspectors/ctrl/.npmrc b/src/inspectors/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/inspectors/ctrl/.npmrc +++ b/src/inspectors/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/inspectors/ctrl/apax.yml b/src/inspectors/ctrl/apax.yml index faaad2537..d659168c7 100644 --- a/src/inspectors/ctrl/apax.yml +++ b/src/inspectors/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.inspectors" +name: "@inxton/axopen.inspectors" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.core": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/inspectors/src/AxOpen.Inspectors.Blazor/AxOpen.Inspectors.Blazor.csproj b/src/inspectors/src/AxOpen.Inspectors.Blazor/AxOpen.Inspectors.Blazor.csproj index 585f78cbe..2fb6dab0b 100644 --- a/src/inspectors/src/AxOpen.Inspectors.Blazor/AxOpen.Inspectors.Blazor.csproj +++ b/src/inspectors/src/AxOpen.Inspectors.Blazor/AxOpen.Inspectors.Blazor.csproj @@ -12,11 +12,11 @@ AXOpen - axopen.inspectors - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/inspectors/src/AxOpen.Inspectors/ix_ax_axopen_inspectors.csproj b/src/inspectors/src/AxOpen.Inspectors/ix_ax_axopen_inspectors.csproj index b72917a3b..fa5d7aa2a 100644 --- a/src/inspectors/src/AxOpen.Inspectors/ix_ax_axopen_inspectors.csproj +++ b/src/inspectors/src/AxOpen.Inspectors/ix_ax_axopen_inspectors.csproj @@ -11,11 +11,11 @@ AXOpen - axopen.inspectors - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -25,7 +25,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/integrations/app/apax.yml b/src/integrations/app/apax.yml index e78d806f2..4b99c6068 100644 --- a/src/integrations/app/apax.yml +++ b/src/integrations/app/apax.yml @@ -15,18 +15,18 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.abstractions": '0.0.0-dev.0' - "@ix-ax/axopen.data": '0.0.0-dev.0' - "@ix-ax/axopen.probers": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' - "@ix-ax/axopen.components.cognex.vision": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.components.abstractions": '0.0.0-dev.0' + "@inxton/axopen.data": '0.0.0-dev.0' + "@inxton/axopen.probers": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.components.cognex.vision": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/integrations/tests/AXOpen.Integration.Tests/DisplayNameOrderer.cs b/src/integrations/tests/AXOpen.Integration.Tests/DisplayNameOrderer.cs index 68db632fe..9a47bf443 100644 --- a/src/integrations/tests/AXOpen.Integration.Tests/DisplayNameOrderer.cs +++ b/src/integrations/tests/AXOpen.Integration.Tests/DisplayNameOrderer.cs @@ -1,9 +1,9 @@ // Ix.Compiler.CsTests -// Copyright (c) 2023 Peter Kurhajec (PTKu), MTS, and Contributors. All Rights Reserved. -// Contributors: https://github.com/ix-ax/ix/graphs/contributors +// Copyright (c) 2023 MTS spol. s r.o., and Contributors. All Rights Reserved. +// Contributors: https://github.com/inxton/ix/graphs/contributors // See the LICENSE file in the repository root for more information. -// https://github.com/ix-ax/ix/blob/master/LICENSE -// Third party licenses: https://github.com/ix-ax/ix/blob/master/notices.md +// https://github.com/inxton/ix/blob/master/LICENSE +// Third party licenses: https://github.com/inxton/ix/blob/master/notices.md using Xunit.Abstractions; diff --git a/src/io/app/apax.yml b/src/io/app/apax.yml index 07c173823..480c74006 100644 --- a/src/io/app/apax.yml +++ b/src/io/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/io/ctrl/.npmrc b/src/io/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/io/ctrl/.npmrc +++ b/src/io/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/io/ctrl/README.md b/src/io/ctrl/README.md index 5ffc7e5dc..4c34ba44e 100644 --- a/src/io/ctrl/README.md +++ b/src/io/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/axopen.io +# @inxton/axopen.io [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/axopen.io" +apax add "@inxton/axopen.io" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/axopen.io": '{axopen-version}' + "@inxton/axopen.io": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/io/ctrl/apax.yml b/src/io/ctrl/apax.yml index 1bb92f27b..dc27ef277 100644 --- a/src/io/ctrl/apax.yml +++ b/src/io/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.io" +name: "@inxton/axopen.io" version: '0.0.0-dev.0' type: lib targets: @@ -7,15 +7,15 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.components.abstractions": '0.0.0-dev.0' - "@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0' + "@inxton/axopen.components.abstractions": '0.0.0-dev.0' + "@inxton/ax.axopen.hwlibrary": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/io/docs/TROUBLES.md b/src/io/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/io/docs/TROUBLES.md +++ b/src/io/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/io/src/AXOpen.Io.blazor/AXOpen.Io.blazor.csproj b/src/io/src/AXOpen.Io.blazor/AXOpen.Io.blazor.csproj index ed0974a3b..eb8bc0e71 100644 --- a/src/io/src/AXOpen.Io.blazor/AXOpen.Io.blazor.csproj +++ b/src/io/src/AXOpen.Io.blazor/AXOpen.Io.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - AXOpen.Io - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/io/src/AXOpen.Io/ix_ax_axopen_io.csproj b/src/io/src/AXOpen.Io/ix_ax_axopen_io.csproj index 7c1638b60..b0062f379 100644 --- a/src/io/src/AXOpen.Io/ix_ax_axopen_io.csproj +++ b/src/io/src/AXOpen.Io/ix_ax_axopen_io.csproj @@ -12,11 +12,11 @@ AXOpen - AXOpen.Io - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/probers/app/apax.yml b/src/probers/app/apax.yml index e9af80e31..b12d6f9ca 100644 --- a/src/probers/app/apax.yml +++ b/src/probers/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.probers": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.probers": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/probers/ctrl/.npmrc b/src/probers/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/probers/ctrl/.npmrc +++ b/src/probers/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/probers/ctrl/apax.yml b/src/probers/ctrl/apax.yml index 4a043cbe8..0e1670ef7 100644 --- a/src/probers/ctrl/apax.yml +++ b/src/probers/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.probers" +name: "@inxton/axopen.probers" version: '0.0.0-dev.0' type: lib targets: @@ -9,9 +9,9 @@ files: variables: APAX_BUILD_ARGS: [ -d ] devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.core": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: @@ -42,5 +42,5 @@ scripts: postbuild: - apax ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/scripts/check_requisites_nuget.sh b/src/scripts/check_requisites_nuget.sh index 587111fae..66279c661 100644 --- a/src/scripts/check_requisites_nuget.sh +++ b/src/scripts/check_requisites_nuget.sh @@ -1,4 +1,4 @@ -feedUrl="https://nuget.pkg.github.com/ix-ax/index.json" +feedUrl="https://nuget.pkg.github.com/inxton/index.json" export GREEN='\033[0;32m' export RED='\033[0;31m' diff --git a/src/sdk-ax/ctrl/apax.yml b/src/sdk-ax/ctrl/apax.yml index 9e3e6faa8..6154f0f03 100644 --- a/src/sdk-ax/ctrl/apax.yml +++ b/src/sdk-ax/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/ax-sdk" +name: "@inxton/ax-sdk" version: '0.0.0-dev.0' type: generic files: diff --git a/src/simatic1500/app/apax.yml b/src/simatic1500/app/apax.yml index ea7ed672d..837377415 100644 --- a/src/simatic1500/app/apax.yml +++ b/src/simatic1500/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' - "@ix-ax/axopen.core": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/simatic1500/ctrl/.npmrc b/src/simatic1500/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/simatic1500/ctrl/.npmrc +++ b/src/simatic1500/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/simatic1500/ctrl/apax.yml b/src/simatic1500/ctrl/apax.yml index 00de2017d..569985001 100644 --- a/src/simatic1500/ctrl/apax.yml +++ b/src/simatic1500/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.simatic1500" +name: "@inxton/axopen.simatic1500" version: '0.0.0-dev.0' type: lib targets: @@ -7,10 +7,10 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.abstractions": '0.0.0-dev.0' - "@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0' + "@inxton/axopen.abstractions": '0.0.0-dev.0' + "@inxton/ax.axopen.hwlibrary": '0.0.0-dev.0' "@ax/system-timer": ^7.0.17 installStrategy: strict apaxVersion: 3.3.1 diff --git a/src/template.axolibrary/app/apax.yml b/src/template.axolibrary/app/apax.yml index 3343575ec..611f87cb1 100644 --- a/src/template.axolibrary/app/apax.yml +++ b/src/template.axolibrary/app/apax.yml @@ -14,15 +14,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/apaxlibname": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/apaxlibname": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/template.axolibrary/ctrl/.npmrc b/src/template.axolibrary/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/template.axolibrary/ctrl/.npmrc +++ b/src/template.axolibrary/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/template.axolibrary/ctrl/README.md b/src/template.axolibrary/ctrl/README.md index 92c041474..d2af81509 100644 --- a/src/template.axolibrary/ctrl/README.md +++ b/src/template.axolibrary/ctrl/README.md @@ -1,4 +1,4 @@ -# @ix-ax/apaxlibname +# @inxton/apaxlibname [!INCLUDE [General](../docs/README.md)] @@ -7,12 +7,12 @@ ## Adding the package to your project ~~~bash -apax add "@ix-ax/apaxlibname" +apax add "@inxton/apaxlibname" ~~~ ## Modifying your `apax.yml` ~~~yml dependencies: - "@ix-ax/apaxlibname": '{axopen-version}' + "@inxton/apaxlibname": '{axopen-version}' ~~~ \ No newline at end of file diff --git a/src/template.axolibrary/ctrl/apax.yml b/src/template.axolibrary/ctrl/apax.yml index 5fbc6f7e3..582db0363 100644 --- a/src/template.axolibrary/ctrl/apax.yml +++ b/src/template.axolibrary/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/apaxlibname" +name: "@inxton/apaxlibname" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.io": '0.0.0-dev.0' + "@inxton/axopen.io": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/template.axolibrary/docs/TROUBLES.md b/src/template.axolibrary/docs/TROUBLES.md index 700edc1b8..5cdc2ba7d 100644 --- a/src/template.axolibrary/docs/TROUBLES.md +++ b/src/template.axolibrary/docs/TROUBLES.md @@ -1,5 +1,5 @@ # Troubleshooting -Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/ix-ax/AXOpen/issues/new/choose). We appreciate your feedback and patience. +Unfortunately, we don't have a direct solution to your problem at the moment. If you encounter any issues, please [file a report on our GitHub](https://github.com/inxton/AXOpen/issues/new/choose). We appreciate your feedback and patience. --- diff --git a/src/template.axolibrary/src/projname.blazor/projname.blazor.csproj b/src/template.axolibrary/src/projname.blazor/projname.blazor.csproj index 14e30c3f5..d939f0d10 100644 --- a/src/template.axolibrary/src/projname.blazor/projname.blazor.csproj +++ b/src/template.axolibrary/src/projname.blazor/projname.blazor.csproj @@ -13,11 +13,11 @@ AXOpen - projname - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, Blazor true icon_128_128.png @@ -27,7 +27,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/template.axolibrary/src/projname/ix_ax_apaxlibname.csproj b/src/template.axolibrary/src/projname/ix_ax_apaxlibname.csproj index ea734cc5d..066762718 100644 --- a/src/template.axolibrary/src/projname/ix_ax_apaxlibname.csproj +++ b/src/template.axolibrary/src/projname/ix_ax_apaxlibname.csproj @@ -12,11 +12,11 @@ AXOpen - projname - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/template.axolibrary/src/projname/ix_ax_axolib.csproj b/src/template.axolibrary/src/projname/ix_ax_axolib.csproj index 6e93dd1fb..4b3f0a596 100644 --- a/src/template.axolibrary/src/projname/ix_ax_axolib.csproj +++ b/src/template.axolibrary/src/projname/ix_ax_axolib.csproj @@ -12,11 +12,11 @@ AXOpen - projname - https://github.com/ix-ax/ - https://github.com/ix-ax/AXOpen + https://github.com/inxton/ + https://github.com/inxton/AXOpen true - ix-ax - (c) Peter Kurhajec and Contributors + inxton + (c) MTS spol. s r.o. and Contributors simatix-ax, PLC, industrial automation, SCADA, HMI, AX#r true icon_128_128.png @@ -26,7 +26,7 @@ MIT Release notes are published here: - https://github.com/ix-ax/AXOpen/releases + https://github.com/inxton/AXOpen/releases NUGET-README.md diff --git a/src/timers/app/apax.yml b/src/timers/app/apax.yml index 9fea4c0db..8a99c6185 100644 --- a/src/timers/app/apax.yml +++ b/src/timers/app/apax.yml @@ -15,15 +15,15 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.core": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/timers/ctrl/.npmrc b/src/timers/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/timers/ctrl/.npmrc +++ b/src/timers/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/timers/ctrl/apax.yml b/src/timers/ctrl/apax.yml index e6c64dc4b..708a828fa 100644 --- a/src/timers/ctrl/apax.yml +++ b/src/timers/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.timers" +name: "@inxton/axopen.timers" version: '0.0.0-dev.0' type: lib targets: @@ -7,11 +7,11 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.abstractions": '0.0.0-dev.0' + "@inxton/axopen.abstractions": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ... diff --git a/src/traversals/apax/apax.yml b/src/traversals/apax/apax.yml index 29c13a54e..72408edae 100644 --- a/src/traversals/apax/apax.yml +++ b/src/traversals/apax/apax.yml @@ -4,63 +4,63 @@ type: app targets: - llvm devDependencies: - '@ix-ax/ax-sdk': 0.0.0-dev.0 + '@inxton/ax-sdk': 0.0.0-dev.0 dependencies: abstractions-app: 0.0.0-dev.0 - '@ix-ax/axopen.abstractions': 0.0.0-dev.0 - '@ix-ax/ax.axopen.app': 0.0.0-dev.0 - '@ix-ax/ax.axopen.hwlibrary': 0.0.0-dev.0 - '@ix-ax/ax.axopen.min': 0.0.0-dev.0 - '@ix-ax/ax.latest.packages': 0.0.0-dev.0 + '@inxton/axopen.abstractions': 0.0.0-dev.0 + '@inxton/ax.axopen.app': 0.0.0-dev.0 + '@inxton/ax.axopen.hwlibrary': 0.0.0-dev.0 + '@inxton/ax.axopen.min': 0.0.0-dev.0 + '@inxton/ax.latest.packages': 0.0.0-dev.0 app_axopen.components.abb.robotics: 0.0.0-dev.0 - '@ix-ax/axopen.components.abb.robotics': 0.0.0-dev.0 + '@inxton/axopen.components.abb.robotics': 0.0.0-dev.0 components.abstractions-app: 0.0.0-dev.0 - '@ix-ax/axopen.components.abstractions': 0.0.0-dev.0 + '@inxton/axopen.components.abstractions': 0.0.0-dev.0 app_axopen.components.balluff.identification: 0.0.0-dev.0 - '@ix-ax/axopen.components.balluff.identification': 0.0.0-dev.0 + '@inxton/axopen.components.balluff.identification': 0.0.0-dev.0 app_axopen.components.cognex.vision: 0.0.0-dev.0 - '@ix-ax/axopen.components.cognex.vision': 0.0.0-dev.0 + '@inxton/axopen.components.cognex.vision': 0.0.0-dev.0 app_axopen.components.desoutter.tightening: 0.0.0-dev.0 - '@ix-ax/axopen.components.desoutter.tightening': 0.0.0-dev.0 + '@inxton/axopen.components.desoutter.tightening': 0.0.0-dev.0 app_axopen.components.drives: 0.0.0-dev.0 - '@ix-ax/axopen.components.drives': 0.0.0-dev.0 + '@inxton/axopen.components.drives': 0.0.0-dev.0 elementscomponents: 0.0.0-dev.0 - '@ix-ax/axopen.components.elements': 0.0.0-dev.0 + '@inxton/axopen.components.elements': 0.0.0-dev.0 app_axopen.components.festo.drives: 0.0.0-dev.0 - '@ix-ax/axopen.components.festo.drives': 0.0.0-dev.0 + '@inxton/axopen.components.festo.drives': 0.0.0-dev.0 app_axopen.components.kuka.robotics: 0.0.0-dev.0 - '@ix-ax/axopen.components.kuka.robotics': 0.0.0-dev.0 + '@inxton/axopen.components.kuka.robotics': 0.0.0-dev.0 app_axopen.components.mitsubishi.robotics: 0.0.0-dev.0 - '@ix-ax/axopen.components.mitsubishi.robotics': 0.0.0-dev.0 + '@inxton/axopen.components.mitsubishi.robotics': 0.0.0-dev.0 pneumaticcomponents: 0.0.0-dev.0 - '@ix-ax/axopen.components.pneumatics': 0.0.0-dev.0 + '@inxton/axopen.components.pneumatics': 0.0.0-dev.0 app_axopen.components.rexroth.drives: 0.0.0-dev.0 - '@ix-ax/axopen.components.rexroth.drives': 0.0.0-dev.0 + '@inxton/axopen.components.rexroth.drives': 0.0.0-dev.0 app_axopen.components.rexroth.press: 0.0.0-dev.0 - '@ix-ax/axopen.components.rexroth.press': 0.0.0-dev.0 + '@inxton/axopen.components.rexroth.press': 0.0.0-dev.0 app_axopen.components.robotics: 0.0.0-dev.0 - '@ix-ax/axopen.components.robotics': 0.0.0-dev.0 + '@inxton/axopen.components.robotics': 0.0.0-dev.0 app_axopen.components.siem.identification: 0.0.0-dev.0 - '@ix-ax/axopen.components.siem.identification': 0.0.0-dev.0 + '@inxton/axopen.components.siem.identification': 0.0.0-dev.0 app_axopen.components.ur.robotics: 0.0.0-dev.0 - '@ix-ax/axopen.components.ur.robotics': 0.0.0-dev.0 + '@inxton/axopen.components.ur.robotics': 0.0.0-dev.0 ix_axopencore: 0.0.0-dev.0 - '@ix-ax/axopen.core': 0.0.0-dev.0 + '@inxton/axopen.core': 0.0.0-dev.0 axopen.data-app: 0.0.0-dev.0 - '@ix-ax/axopen.data': 0.0.0-dev.0 + '@inxton/axopen.data': 0.0.0-dev.0 axopen.inspectors: 0.0.0-dev.0 - '@ix-ax/axopen.inspectors': 0.0.0-dev.0 + '@inxton/axopen.inspectors': 0.0.0-dev.0 axopen.integrations: 0.0.0-dev.0 app_axopen.io: 0.0.0-dev.0 - '@ix-ax/axopen.io': 0.0.0-dev.0 + '@inxton/axopen.io': 0.0.0-dev.0 probers-app: 0.0.0-dev.0 - '@ix-ax/axopen.probers': 0.0.0-dev.0 + '@inxton/axopen.probers': 0.0.0-dev.0 simatic1500-app: 0.0.0-dev.0 - '@ix-ax/axopen.simatic1500': 0.0.0-dev.0 + '@inxton/axopen.simatic1500': 0.0.0-dev.0 app_apaxappname: 0.0.0-dev.0 - '@ix-ax/apaxlibname': 0.0.0-dev.0 + '@inxton/apaxlibname': 0.0.0-dev.0 timers-app: 0.0.0-dev.0 - '@ix-ax/axopen.timers': 0.0.0-dev.0 + '@inxton/axopen.timers': 0.0.0-dev.0 utils-app: 0.0.0-dev.0 - '@ix-ax/axopen.utils': 0.0.0-dev.0 + '@inxton/axopen.utils': 0.0.0-dev.0 installStrategy: overridable diff --git a/src/utils/app/apax.yml b/src/utils/app/apax.yml index 771183228..36ef5ecc8 100644 --- a/src/utils/app/apax.yml +++ b/src/utils/app/apax.yml @@ -15,16 +15,16 @@ variables: AX_TARGET_PWD: "123ABCDabcd$#!" USE_PLC_SIM_ADVANCED: "true" devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/axopen.utils": '0.0.0-dev.0' - "@ix-ax/axopen.core": '0.0.0-dev.0' - "@ix-ax/ax.axopen.app": '0.0.0-dev.0' - "@ix-ax/axopen.simatic1500": '0.0.0-dev.0' + "@inxton/axopen.utils": '0.0.0-dev.0' + "@inxton/axopen.core": '0.0.0-dev.0' + "@inxton/ax.axopen.app": '0.0.0-dev.0' + "@inxton/axopen.simatic1500": '0.0.0-dev.0' # this is just temporary to test new features # upto the moment of releasing new catalog # installStrategy: strict - "@ix-ax/ax.latest.packages": '0.0.0-dev.0' + "@inxton/ax.latest.packages": '0.0.0-dev.0' installStrategy: overridable apaxVersion: 3.3.1 scripts: diff --git a/src/utils/ctrl/.npmrc b/src/utils/ctrl/.npmrc index 72534ba37..79147e35a 100644 --- a/src/utils/ctrl/.npmrc +++ b/src/utils/ctrl/.npmrc @@ -1 +1 @@ -@ix-ax:registry=https://npm.pkg.github.com \ No newline at end of file +@inxton:registry=https://npm.pkg.github.com \ No newline at end of file diff --git a/src/utils/ctrl/apax.yml b/src/utils/ctrl/apax.yml index 3490cf1fa..c8b1259c6 100644 --- a/src/utils/ctrl/apax.yml +++ b/src/utils/ctrl/apax.yml @@ -1,4 +1,4 @@ -name: "@ix-ax/axopen.utils" +name: "@inxton/axopen.utils" version: '0.0.0-dev.0' type: lib targets: @@ -7,14 +7,14 @@ files: - src - axsharp.companion.json devDependencies: - "@ix-ax/ax-sdk": '0.0.0-dev.0' + "@inxton/ax-sdk": '0.0.0-dev.0' dependencies: - "@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0' + "@inxton/ax.axopen.hwlibrary": '0.0.0-dev.0' installStrategy: strict apaxVersion: 3.3.1 scripts: postbuild: - dotnet ixc publicKeys: - "@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 + "@inxton": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17 ...