diff --git a/build-docs.ps1 b/build-docs.ps1 new file mode 100644 index 00000000..f7b3fab2 --- /dev/null +++ b/build-docs.ps1 @@ -0,0 +1,3 @@ +# run build +dotnet run --project cake/Build.csproj -- $args --do-docs true +exit $LASTEXITCODE; \ No newline at end of file diff --git a/cake/Program.cs b/cake/Program.cs index d1d07c1d..2f92b44b 100644 --- a/cake/Program.cs +++ b/cake/Program.cs @@ -317,10 +317,10 @@ public override void Run(BuildContext context) if (Helpers.CanReleaseInternal()) GenerateApiDocumentation(context, @$"ix.connectors\src\Ix.Connector\bin\{context.DotNetBuildSettings.Configuration}\net6.0\Ix.Connector.dll", @"Ix.Connector"); - GenerateApiDocumentation(context, @$"ix.connectors\src\Ix.Connector.S71500.WebAP\bin\{context.DotNetBuildSettings.Configuration}\net6.0\Ix.Connector.Sax.WebAPI.dll", @"Ix.Connector.Sax.WebAPI"); + GenerateApiDocumentation(context, @$"ix.connectors\src\Ix.Connector.S71500.WebAPI\bin\{context.DotNetBuildSettings.Configuration}\net6.0\Ix.Connector.S71500.WebAPI.dll", @"Ix.Connector.S71500.WebAPI"); - GenerateApiDocumentation(context, @$"ix.builder\src\IX.Compiler\bin\{context.DotNetBuildSettings.Configuration}\net6.0\IX.Compiler.dll", @"IX.Compiler"); - GenerateApiDocumentation(context, @$"ix.builder\src\IX.Cs.Compiler\bin\{context.DotNetBuildSettings.Configuration}\net6.0\IX.Compiler.Cs.dll", @"IX.Compiler.Cs"); + GenerateApiDocumentation(context, @$"ix.compiler\src\IX.Compiler\bin\{context.DotNetBuildSettings.Configuration}\net6.0\IX.Compiler.dll", @"IX.Compiler"); + GenerateApiDocumentation(context, @$"ix.compiler\src\IX.Cs.Compiler\bin\{context.DotNetBuildSettings.Configuration}\net6.0\IX.Compiler.Cs.dll", @"IX.Compiler.Cs"); GenerateApiDocumentation(context, @$"ix.abstractions\src\Ix.Abstractions\bin\{context.DotNetBuildSettings.Configuration}\net6.0\Ix.Abstractions.dll", @"Ix.Abstractions"); GenerateApiDocumentation(context, @$"ix.blazor\src\Ix.Presentation.Blazor\bin\{context.DotNetBuildSettings.Configuration}\net6.0\Ix.Presentation.Blazor.dll", @"Ix.Presentation.Blazor"); diff --git a/docs/README.md b/docs/README.md index 5b84de30..342460e0 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,19 +1,20 @@ - # IX +**IX is an open-source project developed by a group of automation engineers. It provides easy access from .NET-based applications to SIMATIC-AX based PLC programs.** + ## What's in -### [Ix.ixc compiler](articles/compiler/README.md) +## [Ix.ixc compiler](articles/compiler/README.md) Transpiles the structured text program data to .NET twin objects. These objects provide different methods of accessing the PLC data. Twin objects are suitable to use for HMI (with any .NET UI framework like *WPF, Blazor, MAUI or WinForms*). Twins implement value change notifications which makes it easy for the UI framework to react to changes in the PLC. Mirroring the PLC program in a .NET object gives any solution consistency and scalability on a scale hard to achieve with traditional approaches. -### [Ix.Connectors](articles/connectors/README.md) +## [Ix.Connectors](articles/connectors/README.md) The connectors provide a communication layer for twin objects generated by the compiler (ixc). -### [Ix.Blazor](articles/blazor/README.md) +## [Ix.Blazor](articles/blazor/README.md) The presentations provide a mechanism for automated UI generation from PLC code. The UI layout and properties are malleable with the directives in the PLC code. @@ -83,6 +84,11 @@ Create new project from template dotnet new [shortname] -n YOUR_PROJECT_NAME ~~~ +#### Prepare your PLC and AX project + +Using TIA portal you need to enable WebAPI interface [see here](https://console.simatic-ax.siemens.io/docs/hwld/PlcWebServer) and [here](https://youtu.be/d9EX2FixY1A?t=151) is a very informative youtube video. + + Consult README.md file located in your new project for additionatl information. ### From scratch @@ -127,10 +133,6 @@ Copyright (C) 2022 author --version Display version information. ~~~ -#### Prepare your PLC and AX project - -Using TIA portal you need to enable WebAPI interface [see here](https://console.simatic-ax.siemens.io/docs/hwld/PlcWebServer) and [here](https://youtu.be/d9EX2FixY1A?t=151) is a very informative youtube video. - Before usage apax commanad ensure that you are logged in ~~~ apax login @@ -171,3 +173,10 @@ namespace your_project_name } } ~~~ + +Start PLC twin operations + +~~~C# +// This start cyclical operation on PLCTwin at 10ms rate +your_project_name.Entry.Plc.Connector.BuildAndStart().ReadWriteCycleDelay = 10; +~~~ diff --git a/docs/_navbar.md b/docs/_navbar.md index f9621dd2..392b7a60 100644 --- a/docs/_navbar.md +++ b/docs/_navbar.md @@ -1,5 +1,16 @@ * # About - - * [What's in](README.md) + * [Introduction](/articles/conceptual/Conceptual.md) + * [Getting started](/README.md#getting-started) + * --- + * [Compiler](/articles/compiler/README.md) + * [Blazor rendering](/articles/blazor/README.md) +* # API + * [Connector API](/api/Ix.Connector/Ix.Connector.md) + * [Connector.S71500 API](/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebAPI.md) + * [Compiler core API](/api/IX.Compiler/IX.Compiler.md) + * [Compiler Cs API](/api/IX.Compiler.Cs/IX.Compiler.Cs.md) + * [Abstractions API](/api/Ix.Abstractions/Ix.Abstractions.md) + * [Presentation Blazor API](/api/Ix.Presentation.Blazor/Ix.Presentation.Blazor.md) + * [Presentation Controls Blazor API](/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.md) diff --git a/docs/_sidebar.md b/docs/_sidebar.md index 5347df7f..f2d6f16c 100644 --- a/docs/_sidebar.md +++ b/docs/_sidebar.md @@ -1,4 +1,10 @@ * [Home](/) * ----- +* [Introduction](/articles/conceptual/Conceptual.md) +* [Getting started](/README.md#getting-started) +* --- +* [Compiler](/articles/compiler/README.md) +* [Blazor rendering](/articles/blazor/README.md) +* --- * [APIs](/apis.md) * ---- \ No newline at end of file diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebAPI.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebAPI.md new file mode 100644 index 00000000..1515d78e --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebAPI.md @@ -0,0 +1,43 @@ +# Ix.Connector.S71500.WebAPI assembly + +## Ix.Connector namespace + +| public type | description | +| --- | --- | +| static class [WebApiConnectorExtensions](./Ix.Connector/WebApiConnectorExtensions.md) | Provides extension methods for instantiating WebAPI connector. | + +## Ix.Connector.S71500.WebApi namespace + +| public type | description | +| --- | --- | +| class [WebApiBool](./Ix.Connector.S71500.WebApi/WebApiBool.md) | | +| class [WebApiByte](./Ix.Connector.S71500.WebApi/WebApiByte.md) | | +| class [WebApiChar](./Ix.Connector.S71500.WebApi/WebApiChar.md) | | +| class [WebApiConnector](./Ix.Connector.S71500.WebApi/WebApiConnector.md) | Provides connector to mediate connection with IX twins over WebAPI connection. | +| class [WebApiConnectorFactory](./Ix.Connector.S71500.WebApi/WebApiConnectorFactory.md) | | +| class [WebApiDate](./Ix.Connector.S71500.WebApi/WebApiDate.md) | | +| class [WebApiDateTime](./Ix.Connector.S71500.WebApi/WebApiDateTime.md) | | +| class [WebApiDInt](./Ix.Connector.S71500.WebApi/WebApiDInt.md) | | +| class [WebApiDWord](./Ix.Connector.S71500.WebApi/WebApiDWord.md) | | +| class [WebApiInt](./Ix.Connector.S71500.WebApi/WebApiInt.md) | | +| class [WebApiLDate](./Ix.Connector.S71500.WebApi/WebApiLDate.md) | | +| class [WebApiLDateTime](./Ix.Connector.S71500.WebApi/WebApiLDateTime.md) | | +| class [WebApiLInt](./Ix.Connector.S71500.WebApi/WebApiLInt.md) | | +| class [WebApiLReal](./Ix.Connector.S71500.WebApi/WebApiLReal.md) | | +| class [WebApiLTime](./Ix.Connector.S71500.WebApi/WebApiLTime.md) | | +| class [WebApiLTimeOfDay](./Ix.Connector.S71500.WebApi/WebApiLTimeOfDay.md) | | +| class [WebApiLWord](./Ix.Connector.S71500.WebApi/WebApiLWord.md) | | +| class [WebApiReal](./Ix.Connector.S71500.WebApi/WebApiReal.md) | | +| class [WebApiSInt](./Ix.Connector.S71500.WebApi/WebApiSInt.md) | | +| class [WebApiString](./Ix.Connector.S71500.WebApi/WebApiString.md) | | +| class [WebApiTime](./Ix.Connector.S71500.WebApi/WebApiTime.md) | | +| class [WebApiTimeOfDay](./Ix.Connector.S71500.WebApi/WebApiTimeOfDay.md) | | +| class [WebApiUdInt](./Ix.Connector.S71500.WebApi/WebApiUdInt.md) | | +| class [WebApiUInt](./Ix.Connector.S71500.WebApi/WebApiUInt.md) | | +| class [WebApiULInt](./Ix.Connector.S71500.WebApi/WebApiULInt.md) | | +| class [WebApiUSInt](./Ix.Connector.S71500.WebApi/WebApiUSInt.md) | | +| class [WebApiWChar](./Ix.Connector.S71500.WebApi/WebApiWChar.md) | | +| class [WebApiWord](./Ix.Connector.S71500.WebApi/WebApiWord.md) | | +| class [WebApiWString](./Ix.Connector.S71500.WebApi/WebApiWString.md) | | + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool.md index 63a37d4e..c38c021d 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool.md @@ -16,6 +16,6 @@ public class WebApiBool : OnlinerBool ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/GetAsync.md new file mode 100644 index 00000000..3873a83d --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiBool.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiBool](../WebApiBool.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/Read.md new file mode 100644 index 00000000..51e3d005 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/Read.md @@ -0,0 +1,12 @@ +# WebApiBool.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiBool](../WebApiBool.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/SetAsync.md new file mode 100644 index 00000000..9756e35d --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiBool.SetAsync method + +```csharp +public override Task SetAsync(bool value) +``` + +## See Also + +* class [WebApiBool](../WebApiBool.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/WebApiBool.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/WebApiBool.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/WebApiBool.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/WebApiBool.md index b60fc34c..aab37225 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/WebApiBool.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiBool/WebApiBool.md @@ -9,7 +9,7 @@ public WebApiBool() ## See Also * class [WebApiBool](../WebApiBool.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiBool(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiBool](../WebApiBool.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte.md index 5da684eb..484df3bb 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte.md @@ -16,6 +16,6 @@ public class WebApiByte : OnlinerByte ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/GetAsync.md new file mode 100644 index 00000000..5cb6cbdd --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiByte.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiByte](../WebApiByte.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/Read.md new file mode 100644 index 00000000..f70f0d92 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/Read.md @@ -0,0 +1,12 @@ +# WebApiByte.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiByte](../WebApiByte.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/SetAsync.md new file mode 100644 index 00000000..2d613188 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiByte.SetAsync method + +```csharp +public override Task SetAsync(byte value) +``` + +## See Also + +* class [WebApiByte](../WebApiByte.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/WebApiByte.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/WebApiByte.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/WebApiByte.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/WebApiByte.md index d9a6c6ad..9ff8edc6 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/WebApiByte.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiByte/WebApiByte.md @@ -9,7 +9,7 @@ public WebApiByte() ## See Also * class [WebApiByte](../WebApiByte.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiByte(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiByte](../WebApiByte.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar.md index 75b58d47..62dd7c93 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar.md @@ -16,6 +16,6 @@ public class WebApiChar : OnlinerChar ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/GetAsync.md new file mode 100644 index 00000000..dccff34e --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiChar.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiChar](../WebApiChar.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/Read.md new file mode 100644 index 00000000..06cc335a --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/Read.md @@ -0,0 +1,12 @@ +# WebApiChar.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiChar](../WebApiChar.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/SetAsync.md new file mode 100644 index 00000000..66d613f1 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiChar.SetAsync method + +```csharp +public override Task SetAsync(char value) +``` + +## See Also + +* class [WebApiChar](../WebApiChar.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/WebApiChar.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/WebApiChar.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/WebApiChar.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/WebApiChar.md index 2a314461..150490bf 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/WebApiChar.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiChar/WebApiChar.md @@ -9,7 +9,7 @@ public WebApiChar() ## See Also * class [WebApiChar](../WebApiChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiChar(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiChar](../WebApiChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector.md new file mode 100644 index 00000000..cb126475 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector.md @@ -0,0 +1,24 @@ +# WebApiConnector class + +Provides connector to mediate connection with IX twins over WebAPI connection. + +```csharp +public class WebApiConnector : Connector +``` + +## Public Members + +| name | description | +| --- | --- | +| [WebApiConnector](WebApiConnector/WebApiConnector.md)(…) | Creates new instance of [`WebApiConnector`](./WebApiConnector.md). (2 constructors) | +| override [BuildAndStart](WebApiConnector/BuildAndStart.md)() | | +| override [ReadBatchAsync](WebApiConnector/ReadBatchAsync.md)(…) | | +| override [ReloadConnector](WebApiConnector/ReloadConnector.md)() | | +| override [WriteBatchAsync](WebApiConnector/WriteBatchAsync.md)(…) | | +| static [NumberOfInstances](WebApiConnector/NumberOfInstances.md) { get; } | Gets number of instance of WebAPI connector in this application. | + +## See Also + +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/BuildAndStart.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/BuildAndStart.md similarity index 50% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/BuildAndStart.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/BuildAndStart.md index c150f187..d1771e2f 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/BuildAndStart.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/BuildAndStart.md @@ -7,6 +7,6 @@ public override Connector BuildAndStart() ## See Also * class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/NumberOfInstances.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/NumberOfInstances.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/NumberOfInstances.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/NumberOfInstances.md index 483df3f7..d7a60e18 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/NumberOfInstances.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/NumberOfInstances.md @@ -9,6 +9,6 @@ public static int NumberOfInstances { get; } ## See Also * class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/ReadBatchAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/ReadBatchAsync.md similarity index 55% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/ReadBatchAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/ReadBatchAsync.md index e3e557a9..70b4f7e8 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/ReadBatchAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/ReadBatchAsync.md @@ -7,6 +7,6 @@ public override Task ReadBatchAsync(IEnumerable? primitives) ## See Also * class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/ReloadConnector.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/ReloadConnector.md similarity index 50% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/ReloadConnector.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/ReloadConnector.md index 47bd75e4..709a8c42 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/ReloadConnector.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/ReloadConnector.md @@ -7,6 +7,6 @@ public override void ReloadConnector() ## See Also * class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/WebApiConnector.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/WebApiConnector.md new file mode 100644 index 00000000..d17d856f --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/WebApiConnector.md @@ -0,0 +1,48 @@ +# WebApiConnector constructor (1 of 2) + +Creates new instance of [`WebApiConnector`](../WebApiConnector.md). + +```csharp +public WebApiConnector(string ipAddress, string userName, string password, bool ignoreSSLErros, + string dbName = "\"TGlobalVariablesDB\"") +``` + +| parameter | description | +| --- | --- | +| ipAddress | Target's IP address. | +| userName | User name. | +| password | Password. | +| ignoreSSLErros | When set to 'true' the connection will ignore SSL errors. | +| dbName | Root DB name (AX uses 'TGlobalVariablesDB') | + +## See Also + +* class [WebApiConnector](../WebApiConnector.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + +--- + +# WebApiConnector constructor (2 of 2) + +Creates new instance of [`WebApiConnector`](../WebApiConnector.md). + +```csharp +public WebApiConnector(string ipAddress, string userName, string password, + Func? customServerCertHandler, + string dbName = "\"TGlobalVariablesDB\"") +``` + +| parameter | description | +| --- | --- | +| ipAddress | Target's IP address. | +| userName | User name. | +| password | Password. | +| customServerCertHandler | Customized server certificate handler. | +| dbName | Root DB name (AX uses 'TGlobalVariablesDB') | + +## See Also + +* class [WebApiConnector](../WebApiConnector.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/WriteBatchAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/WriteBatchAsync.md similarity index 55% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/WriteBatchAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/WriteBatchAsync.md index 861bb565..75632231 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/WriteBatchAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnector/WriteBatchAsync.md @@ -7,6 +7,6 @@ public override Task WriteBatchAsync(IEnumerable? primitives) ## See Also * class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory.md similarity index 94% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory.md index 389df9d4..9ec7e3c8 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory.md @@ -40,6 +40,6 @@ public class WebApiConnectorFactory : ConnectorFactory ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateBOOL.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateBOOL.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateBOOL.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateBOOL.md index a057c133..84bb736f 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateBOOL.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateBOOL.md @@ -7,6 +7,6 @@ public override OnlinerBool CreateBOOL(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateBYTE.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateBYTE.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateBYTE.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateBYTE.md index accfc8d8..45e10bc1 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateBYTE.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateBYTE.md @@ -7,6 +7,6 @@ public override OnlinerByte CreateBYTE(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateCHAR.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateCHAR.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateCHAR.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateCHAR.md index 4a3026c9..83b2cb04 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateCHAR.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateCHAR.md @@ -7,6 +7,6 @@ public override OnlinerChar CreateCHAR(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateConnector.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateConnector.md similarity index 56% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateConnector.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateConnector.md index 00d7d205..afa2bc85 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateConnector.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateConnector.md @@ -7,6 +7,6 @@ public override Connector CreateConnector(object[] parameters) ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDATE.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDATE.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDATE.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDATE.md index 1fcbfdb3..64a731a5 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDATE.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDATE.md @@ -7,6 +7,6 @@ public override OnlinerDate CreateDATE(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDATE_AND_TIME.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDATE_AND_TIME.md similarity index 62% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDATE_AND_TIME.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDATE_AND_TIME.md index 609aba13..dd58ca22 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDATE_AND_TIME.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDATE_AND_TIME.md @@ -8,6 +8,6 @@ public override OnlinerDateTime CreateDATE_AND_TIME(ITwinObject parent, string r ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDINT.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDINT.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDINT.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDINT.md index a3dce38b..903bdaba 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDINT.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDINT.md @@ -7,6 +7,6 @@ public override OnlinerDInt CreateDINT(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDWORD.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDWORD.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDWORD.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDWORD.md index eb20bbd4..c8ea141a 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateDWORD.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateDWORD.md @@ -7,6 +7,6 @@ public override OnlinerDWord CreateDWORD(ITwinObject parent, string readableTail ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateINT.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateINT.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateINT.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateINT.md index 57aafaae..02936bdf 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateINT.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateINT.md @@ -7,6 +7,6 @@ public override OnlinerInt CreateINT(ITwinObject parent, string readableTail, st ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLDATE.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLDATE.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLDATE.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLDATE.md index a87f2d73..53e61d72 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLDATE.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLDATE.md @@ -7,6 +7,6 @@ public override OnlinerDate CreateLDATE(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLDATE_AND_TIME.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLDATE_AND_TIME.md similarity index 62% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLDATE_AND_TIME.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLDATE_AND_TIME.md index 6bdf38ac..d0fc7ce8 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLDATE_AND_TIME.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLDATE_AND_TIME.md @@ -8,6 +8,6 @@ public override OnlinerLDateTime CreateLDATE_AND_TIME(ITwinObject parent, string ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLINT.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLINT.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLINT.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLINT.md index e669a715..d880eab2 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLINT.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLINT.md @@ -7,6 +7,6 @@ public override OnlinerLInt CreateLINT(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLREAL.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLREAL.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLREAL.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLREAL.md index 92128b2e..8c229ddf 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLREAL.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLREAL.md @@ -7,6 +7,6 @@ public override OnlinerLReal CreateLREAL(ITwinObject parent, string readableTail ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLTIME.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLTIME.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLTIME.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLTIME.md index 2188df8e..9ff26d5e 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLTIME.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLTIME.md @@ -7,6 +7,6 @@ public override OnlinerLTime CreateLTIME(ITwinObject parent, string readableTail ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLTIME_OF_DAY.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLTIME_OF_DAY.md similarity index 62% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLTIME_OF_DAY.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLTIME_OF_DAY.md index a89b9570..3fc2dc54 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLTIME_OF_DAY.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLTIME_OF_DAY.md @@ -8,6 +8,6 @@ public override OnlinerLTimeOfDay CreateLTIME_OF_DAY(ITwinObject parent, string ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLWORD.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLWORD.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLWORD.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLWORD.md index 2eef6ee3..7bf16bbe 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateLWORD.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateLWORD.md @@ -7,6 +7,6 @@ public override OnlinerLWord CreateLWORD(ITwinObject parent, string readableTail ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateREAL.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateREAL.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateREAL.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateREAL.md index 38342762..5c51f735 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateREAL.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateREAL.md @@ -7,6 +7,6 @@ public override OnlinerReal CreateREAL(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateSINT.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateSINT.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateSINT.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateSINT.md index 5dbaf7ae..d62ec820 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateSINT.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateSINT.md @@ -7,6 +7,6 @@ public override OnlinerSInt CreateSINT(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateSTRING.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateSTRING.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateSTRING.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateSTRING.md index 847181e2..a525ad44 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateSTRING.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateSTRING.md @@ -8,6 +8,6 @@ public override OnlinerString CreateSTRING(ITwinObject parent, string readableTa ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateTIME.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateTIME.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateTIME.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateTIME.md index 8dbb84f0..8c7943c7 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateTIME.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateTIME.md @@ -7,6 +7,6 @@ public override OnlinerTime CreateTIME(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateTIME_OF_DAY.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateTIME_OF_DAY.md similarity index 62% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateTIME_OF_DAY.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateTIME_OF_DAY.md index 146c57d6..732bcc69 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateTIME_OF_DAY.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateTIME_OF_DAY.md @@ -8,6 +8,6 @@ public override OnlinerTimeOfDay CreateTIME_OF_DAY(ITwinObject parent, string re ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUDINT.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUDINT.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUDINT.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUDINT.md index e19b8626..b39ca555 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUDINT.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUDINT.md @@ -7,6 +7,6 @@ public override OnlinerUDInt CreateUDINT(ITwinObject parent, string readableTail ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUINT.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUINT.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUINT.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUINT.md index 5138d9f2..effe5b9e 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUINT.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUINT.md @@ -7,6 +7,6 @@ public override OnlinerUInt CreateUINT(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateULINT.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateULINT.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateULINT.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateULINT.md index c0c77af4..385bf1c9 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateULINT.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateULINT.md @@ -7,6 +7,6 @@ public override OnlinerULInt CreateULINT(ITwinObject parent, string readableTail ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUSINT.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUSINT.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUSINT.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUSINT.md index e648fc23..cf2ce4dd 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateUSINT.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateUSINT.md @@ -7,6 +7,6 @@ public override OnlinerUSInt CreateUSINT(ITwinObject parent, string readableTail ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWCHAR.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWCHAR.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWCHAR.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWCHAR.md index 08dcb420..5b4c9927 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWCHAR.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWCHAR.md @@ -7,6 +7,6 @@ public override OnlinerWChar CreateWCHAR(ITwinObject parent, string readableTail ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWORD.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWORD.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWORD.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWORD.md index 665e946b..cdc667f4 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWORD.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWORD.md @@ -7,6 +7,6 @@ public override OnlinerWord CreateWORD(ITwinObject parent, string readableTail, ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWSTRING.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWSTRING.md similarity index 61% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWSTRING.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWSTRING.md index 09769cc1..e33ce169 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/CreateWSTRING.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/CreateWSTRING.md @@ -8,6 +8,6 @@ public override OnlinerWString CreateWSTRING(ITwinObject parent, string readable ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/WebApiConnectorFactory.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/WebApiConnectorFactory.md similarity index 54% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/WebApiConnectorFactory.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/WebApiConnectorFactory.md index d99a1fe7..d18b50a7 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnectorFactory/WebApiConnectorFactory.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiConnectorFactory/WebApiConnectorFactory.md @@ -9,6 +9,6 @@ public WebApiConnectorFactory() ## See Also * class [WebApiConnectorFactory](../WebApiConnectorFactory.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt.md index ba8074d4..6f589e1b 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt.md @@ -16,6 +16,6 @@ public class WebApiDInt : OnlinerDInt ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/GetAsync.md new file mode 100644 index 00000000..ae2f64a6 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiDInt.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiDInt](../WebApiDInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/Read.md new file mode 100644 index 00000000..475cd2de --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/Read.md @@ -0,0 +1,12 @@ +# WebApiDInt.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiDInt](../WebApiDInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/SetAsync.md new file mode 100644 index 00000000..5e244bf0 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiDInt.SetAsync method + +```csharp +public override Task SetAsync(int value) +``` + +## See Also + +* class [WebApiDInt](../WebApiDInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/WebApiDInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/WebApiDInt.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/WebApiDInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/WebApiDInt.md index ec403feb..20f7ed5f 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/WebApiDInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDInt/WebApiDInt.md @@ -9,7 +9,7 @@ public WebApiDInt() ## See Also * class [WebApiDInt](../WebApiDInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiDInt(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiDInt](../WebApiDInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord.md index 6c7b16c5..4a06d3d7 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord.md @@ -16,6 +16,6 @@ public class WebApiDWord : OnlinerDWord ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/GetAsync.md new file mode 100644 index 00000000..0ae455ef --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiDWord.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiDWord](../WebApiDWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/Read.md new file mode 100644 index 00000000..b6e65ed9 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/Read.md @@ -0,0 +1,12 @@ +# WebApiDWord.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiDWord](../WebApiDWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/SetAsync.md new file mode 100644 index 00000000..2696184c --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiDWord.SetAsync method + +```csharp +public override Task SetAsync(uint value) +``` + +## See Also + +* class [WebApiDWord](../WebApiDWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/WebApiDWord.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/WebApiDWord.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/WebApiDWord.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/WebApiDWord.md index 851e051c..af9d2b67 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/WebApiDWord.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDWord/WebApiDWord.md @@ -9,7 +9,7 @@ public WebApiDWord() ## See Also * class [WebApiDWord](../WebApiDWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiDWord(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiDWord](../WebApiDWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate.md index b22c21a2..7dfbd195 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate.md @@ -16,6 +16,6 @@ public class WebApiDate : OnlinerDate ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/GetAsync.md new file mode 100644 index 00000000..64d9d77b --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiDate.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiDate](../WebApiDate.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/Read.md new file mode 100644 index 00000000..6c641e22 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/Read.md @@ -0,0 +1,12 @@ +# WebApiDate.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiDate](../WebApiDate.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/SetAsync.md new file mode 100644 index 00000000..c0480be6 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiDate.SetAsync method + +```csharp +public override Task SetAsync(DateOnly value) +``` + +## See Also + +* class [WebApiDate](../WebApiDate.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/WebApiDate.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/WebApiDate.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/WebApiDate.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/WebApiDate.md index 607a3af6..d81ac5d3 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/WebApiDate.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDate/WebApiDate.md @@ -9,7 +9,7 @@ public WebApiDate() ## See Also * class [WebApiDate](../WebApiDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiDate(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiDate](../WebApiDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime.md similarity index 75% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime.md index e7d7e703..3a571053 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime.md @@ -16,6 +16,6 @@ public class WebApiDateTime : OnlinerDateTime ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/GetAsync.md new file mode 100644 index 00000000..8489304f --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiDateTime.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiDateTime](../WebApiDateTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/Read.md new file mode 100644 index 00000000..8f3b3db1 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/Read.md @@ -0,0 +1,12 @@ +# WebApiDateTime.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiDateTime](../WebApiDateTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/SetAsync.md similarity index 51% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/SetAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/SetAsync.md index 1ccc2a38..16e9dd59 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/SetAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/SetAsync.md @@ -7,6 +7,6 @@ public override Task SetAsync(DateTime value) ## See Also * class [WebApiDateTime](../WebApiDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/WebApiDateTime.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/WebApiDateTime.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/WebApiDateTime.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/WebApiDateTime.md index b2710881..c6341cf2 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/WebApiDateTime.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiDateTime/WebApiDateTime.md @@ -9,7 +9,7 @@ public WebApiDateTime() ## See Also * class [WebApiDateTime](../WebApiDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiDateTime(ITwinObject parent, string readableTail, string symbolTail ## See Also * class [WebApiDateTime](../WebApiDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt.md index 0dbec0e9..2efca0a0 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt.md @@ -16,6 +16,6 @@ public class WebApiInt : OnlinerInt ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/GetAsync.md new file mode 100644 index 00000000..2e3ae9c6 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiInt.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiInt](../WebApiInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/Read.md new file mode 100644 index 00000000..e10ff0de --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/Read.md @@ -0,0 +1,12 @@ +# WebApiInt.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiInt](../WebApiInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/SetAsync.md new file mode 100644 index 00000000..460e76e2 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiInt.SetAsync method + +```csharp +public override Task SetAsync(short value) +``` + +## See Also + +* class [WebApiInt](../WebApiInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/WebApiInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/WebApiInt.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/WebApiInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/WebApiInt.md index 19b911dc..d97dd4d1 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/WebApiInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiInt/WebApiInt.md @@ -9,7 +9,7 @@ public WebApiInt() ## See Also * class [WebApiInt](../WebApiInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiInt(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiInt](../WebApiInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate.md index 14507ed2..ac40f27f 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate.md @@ -16,6 +16,6 @@ public class WebApiLDate : OnlinerDate ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/GetAsync.md new file mode 100644 index 00000000..46f77058 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiLDate.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiLDate](../WebApiLDate.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/Read.md new file mode 100644 index 00000000..399001ca --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/Read.md @@ -0,0 +1,12 @@ +# WebApiLDate.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiLDate](../WebApiLDate.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/SetAsync.md similarity index 50% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/SetAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/SetAsync.md index 037291e2..118dc020 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/SetAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/SetAsync.md @@ -7,6 +7,6 @@ public override Task SetAsync(DateOnly value) ## See Also * class [WebApiLDate](../WebApiLDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/WebApiLDate.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/WebApiLDate.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/WebApiLDate.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/WebApiLDate.md index f20ac6ac..ef1a89ed 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/WebApiLDate.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDate/WebApiLDate.md @@ -9,7 +9,7 @@ public WebApiLDate() ## See Also * class [WebApiLDate](../WebApiLDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiLDate(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiLDate](../WebApiLDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime.md similarity index 75% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime.md index dd66253d..ef487149 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime.md @@ -16,6 +16,6 @@ public class WebApiLDateTime : OnlinerLDateTime ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/GetAsync.md new file mode 100644 index 00000000..c04e1bfa --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiLDateTime.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiLDateTime](../WebApiLDateTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/Read.md new file mode 100644 index 00000000..f363669a --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/Read.md @@ -0,0 +1,12 @@ +# WebApiLDateTime.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiLDateTime](../WebApiLDateTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/SetAsync.md similarity index 51% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/SetAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/SetAsync.md index d01a31ef..b45277cd 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/SetAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/SetAsync.md @@ -7,6 +7,6 @@ public override Task SetAsync(DateTime value) ## See Also * class [WebApiLDateTime](../WebApiLDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/WebApiLDateTime.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/WebApiLDateTime.md similarity index 61% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/WebApiLDateTime.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/WebApiLDateTime.md index d8096eca..d72e9522 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/WebApiLDateTime.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLDateTime/WebApiLDateTime.md @@ -9,7 +9,7 @@ public WebApiLDateTime() ## See Also * class [WebApiLDateTime](../WebApiLDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiLDateTime(ITwinObject parent, string readableTail, string symbolTai ## See Also * class [WebApiLDateTime](../WebApiLDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt.md similarity index 69% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt.md index eff77f29..9661119b 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt.md @@ -15,6 +15,6 @@ public class WebApiLInt : OnlinerLInt ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/GetAsync.md new file mode 100644 index 00000000..9a6363a7 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiLInt.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiLInt](../WebApiLInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/Read.md new file mode 100644 index 00000000..a23e078d --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/Read.md @@ -0,0 +1,12 @@ +# WebApiLInt.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiLInt](../WebApiLInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/SetAsync.md new file mode 100644 index 00000000..44f60b2c --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiLInt.SetAsync method + +```csharp +public override Task SetAsync(long value) +``` + +## See Also + +* class [WebApiLInt](../WebApiLInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/WebApiLInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/WebApiLInt.md similarity index 52% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/WebApiLInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/WebApiLInt.md index 0cb813d5..b39e7d2c 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/WebApiLInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLInt/WebApiLInt.md @@ -7,6 +7,6 @@ public WebApiLInt(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiLInt](../WebApiLInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal.md index e25dc5bb..671a2990 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal.md @@ -16,6 +16,6 @@ public class WebApiLReal : OnlinerLReal ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/GetAsync.md new file mode 100644 index 00000000..13be91df --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiLReal.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiLReal](../WebApiLReal.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/Read.md new file mode 100644 index 00000000..ca9117f4 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/Read.md @@ -0,0 +1,12 @@ +# WebApiLReal.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiLReal](../WebApiLReal.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/SetAsync.md new file mode 100644 index 00000000..9ca94b6e --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiLReal.SetAsync method + +```csharp +public override Task SetAsync(double value) +``` + +## See Also + +* class [WebApiLReal](../WebApiLReal.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/WebApiLReal.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/WebApiLReal.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/WebApiLReal.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/WebApiLReal.md index e559d237..b1a06709 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/WebApiLReal.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLReal/WebApiLReal.md @@ -9,7 +9,7 @@ public WebApiLReal() ## See Also * class [WebApiLReal](../WebApiLReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiLReal(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiLReal](../WebApiLReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime.md index ca140465..81cfaf51 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime.md @@ -16,6 +16,6 @@ public class WebApiLTime : OnlinerLTime ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/GetAsync.md new file mode 100644 index 00000000..9ea3cd57 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiLTime.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiLTime](../WebApiLTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/Read.md new file mode 100644 index 00000000..eb454183 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/Read.md @@ -0,0 +1,12 @@ +# WebApiLTime.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiLTime](../WebApiLTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/SetAsync.md similarity index 50% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/SetAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/SetAsync.md index c7801383..9c9ba198 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/SetAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/SetAsync.md @@ -7,6 +7,6 @@ public override Task SetAsync(TimeSpan value) ## See Also * class [WebApiLTime](../WebApiLTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/WebApiLTime.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/WebApiLTime.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/WebApiLTime.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/WebApiLTime.md index 1e67a82a..21b183d7 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/WebApiLTime.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTime/WebApiLTime.md @@ -9,7 +9,7 @@ public WebApiLTime() ## See Also * class [WebApiLTime](../WebApiLTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiLTime(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiLTime](../WebApiLTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay.md similarity index 75% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay.md index 60b66224..3c660258 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay.md @@ -16,6 +16,6 @@ public class WebApiLTimeOfDay : OnlinerLTimeOfDay ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/GetAsync.md similarity index 50% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/GetAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/GetAsync.md index 3f481927..d0ccecf7 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/GetAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/GetAsync.md @@ -7,6 +7,6 @@ public override Task GetAsync() ## See Also * class [WebApiLTimeOfDay](../WebApiLTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/Read.md new file mode 100644 index 00000000..2492d0b0 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/Read.md @@ -0,0 +1,12 @@ +# WebApiLTimeOfDay.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiLTimeOfDay](../WebApiLTimeOfDay.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/SetAsync.md similarity index 52% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/SetAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/SetAsync.md index 1178f6f4..7a9f0549 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/SetAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/SetAsync.md @@ -7,6 +7,6 @@ public override Task SetAsync(TimeSpan value) ## See Also * class [WebApiLTimeOfDay](../WebApiLTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/WebApiLTimeOfDay.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/WebApiLTimeOfDay.md similarity index 61% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/WebApiLTimeOfDay.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/WebApiLTimeOfDay.md index bc3b4f15..adeac604 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/WebApiLTimeOfDay.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLTimeOfDay/WebApiLTimeOfDay.md @@ -9,7 +9,7 @@ public WebApiLTimeOfDay() ## See Also * class [WebApiLTimeOfDay](../WebApiLTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiLTimeOfDay(ITwinObject parent, string readableTail, string symbolTa ## See Also * class [WebApiLTimeOfDay](../WebApiLTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord.md index 9948f31e..e72e3dd3 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord.md @@ -16,6 +16,6 @@ public class WebApiLWord : OnlinerLWord ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/GetAsync.md new file mode 100644 index 00000000..886db4c3 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiLWord.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiLWord](../WebApiLWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/Read.md new file mode 100644 index 00000000..38fee4c8 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/Read.md @@ -0,0 +1,12 @@ +# WebApiLWord.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiLWord](../WebApiLWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/SetAsync.md new file mode 100644 index 00000000..f82d9255 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiLWord.SetAsync method + +```csharp +public override Task SetAsync(ulong value) +``` + +## See Also + +* class [WebApiLWord](../WebApiLWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/WebApiLWord.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/WebApiLWord.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/WebApiLWord.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/WebApiLWord.md index 5806e74f..f9e0ae6f 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/WebApiLWord.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiLWord/WebApiLWord.md @@ -9,7 +9,7 @@ public WebApiLWord() ## See Also * class [WebApiLWord](../WebApiLWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiLWord(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiLWord](../WebApiLWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal.md index 5f929345..acfa8d19 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal.md @@ -16,6 +16,6 @@ public class WebApiReal : OnlinerReal ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/GetAsync.md new file mode 100644 index 00000000..6d6fee7b --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiReal.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiReal](../WebApiReal.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/Read.md new file mode 100644 index 00000000..d2762c6b --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/Read.md @@ -0,0 +1,12 @@ +# WebApiReal.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiReal](../WebApiReal.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/SetAsync.md new file mode 100644 index 00000000..326b2046 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiReal.SetAsync method + +```csharp +public override Task SetAsync(float value) +``` + +## See Also + +* class [WebApiReal](../WebApiReal.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/WebApiReal.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/WebApiReal.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/WebApiReal.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/WebApiReal.md index 85d4f5d5..e4afb00d 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/WebApiReal.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiReal/WebApiReal.md @@ -9,7 +9,7 @@ public WebApiReal() ## See Also * class [WebApiReal](../WebApiReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiReal(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiReal](../WebApiReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt.md index e6a2d85e..33bc4326 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt.md @@ -16,6 +16,6 @@ public class WebApiSInt : OnlinerSInt ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/GetAsync.md new file mode 100644 index 00000000..70343120 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiSInt.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiSInt](../WebApiSInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/Read.md new file mode 100644 index 00000000..489318cd --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/Read.md @@ -0,0 +1,12 @@ +# WebApiSInt.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiSInt](../WebApiSInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/SetAsync.md new file mode 100644 index 00000000..c1928512 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiSInt.SetAsync method + +```csharp +public override Task SetAsync(sbyte value) +``` + +## See Also + +* class [WebApiSInt](../WebApiSInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/WebApiSInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/WebApiSInt.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/WebApiSInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/WebApiSInt.md index e9c734e8..8e981b5f 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/WebApiSInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiSInt/WebApiSInt.md @@ -9,7 +9,7 @@ public WebApiSInt() ## See Also * class [WebApiSInt](../WebApiSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiSInt(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiSInt](../WebApiSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString.md index 04a8da13..92f64f9f 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString.md @@ -16,6 +16,6 @@ public class WebApiString : OnlinerString ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/GetAsync.md new file mode 100644 index 00000000..e2a08fd8 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiString.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiString](../WebApiString.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/Read.md new file mode 100644 index 00000000..3d882989 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/Read.md @@ -0,0 +1,12 @@ +# WebApiString.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiString](../WebApiString.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/SetAsync.md new file mode 100644 index 00000000..672422ef --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiString.SetAsync method + +```csharp +public override Task SetAsync(string value) +``` + +## See Also + +* class [WebApiString](../WebApiString.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/WebApiString.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/WebApiString.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/WebApiString.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/WebApiString.md index 01e5096a..c8de61ff 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/WebApiString.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiString/WebApiString.md @@ -9,7 +9,7 @@ public WebApiString() ## See Also * class [WebApiString](../WebApiString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiString(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiString](../WebApiString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime.md index 19ffeacc..3c8d0458 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime.md @@ -16,6 +16,6 @@ public class WebApiTime : OnlinerTime ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/GetAsync.md new file mode 100644 index 00000000..690fd00c --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiTime.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiTime](../WebApiTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/Read.md new file mode 100644 index 00000000..c5567763 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/Read.md @@ -0,0 +1,12 @@ +# WebApiTime.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiTime](../WebApiTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/SetAsync.md new file mode 100644 index 00000000..a53a65c3 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiTime.SetAsync method + +```csharp +public override Task SetAsync(TimeSpan value) +``` + +## See Also + +* class [WebApiTime](../WebApiTime.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/WebApiTime.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/WebApiTime.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/WebApiTime.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/WebApiTime.md index 547ce1ce..6bd4eab3 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/WebApiTime.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTime/WebApiTime.md @@ -9,7 +9,7 @@ public WebApiTime() ## See Also * class [WebApiTime](../WebApiTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiTime(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiTime](../WebApiTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay.md similarity index 75% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay.md index ac2de3ea..cc505083 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay.md @@ -16,6 +16,6 @@ public class WebApiTimeOfDay : OnlinerTimeOfDay ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/GetAsync.md new file mode 100644 index 00000000..b1cc4ede --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiTimeOfDay.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiTimeOfDay](../WebApiTimeOfDay.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/Read.md new file mode 100644 index 00000000..2d4a3bb9 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/Read.md @@ -0,0 +1,12 @@ +# WebApiTimeOfDay.Read method + +```csharp +public void Read(string result) +``` + +## See Also + +* class [WebApiTimeOfDay](../WebApiTimeOfDay.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/SetAsync.md similarity index 51% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/SetAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/SetAsync.md index 3d3afe65..4ce74360 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/SetAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/SetAsync.md @@ -7,6 +7,6 @@ public override Task SetAsync(TimeSpan value) ## See Also * class [WebApiTimeOfDay](../WebApiTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/WebApiTimeOfDay.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/WebApiTimeOfDay.md similarity index 61% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/WebApiTimeOfDay.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/WebApiTimeOfDay.md index ffd42b83..4f4dbc8e 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/WebApiTimeOfDay.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiTimeOfDay/WebApiTimeOfDay.md @@ -9,7 +9,7 @@ public WebApiTimeOfDay() ## See Also * class [WebApiTimeOfDay](../WebApiTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiTimeOfDay(ITwinObject parent, string readableTail, string symbolTai ## See Also * class [WebApiTimeOfDay](../WebApiTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt.md index bd1b4e50..cc8532b1 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt.md @@ -16,6 +16,6 @@ public class WebApiUInt : OnlinerUInt ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/GetAsync.md new file mode 100644 index 00000000..e3549340 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiUInt.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiUInt](../WebApiUInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/Read.md new file mode 100644 index 00000000..1bf074de --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/Read.md @@ -0,0 +1,12 @@ +# WebApiUInt.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiUInt](../WebApiUInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/SetAsync.md new file mode 100644 index 00000000..5103166d --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiUInt.SetAsync method + +```csharp +public override Task SetAsync(ushort value) +``` + +## See Also + +* class [WebApiUInt](../WebApiUInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/WebApiUInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/WebApiUInt.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/WebApiUInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/WebApiUInt.md index 3d6fc594..0773cc33 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/WebApiUInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUInt/WebApiUInt.md @@ -9,7 +9,7 @@ public WebApiUInt() ## See Also * class [WebApiUInt](../WebApiUInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiUInt(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiUInt](../WebApiUInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt.md index f85d7e49..667cd184 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt.md @@ -16,6 +16,6 @@ public class WebApiULInt : OnlinerULInt ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/GetAsync.md new file mode 100644 index 00000000..41c0ccce --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiULInt.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiULInt](../WebApiULInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/Read.md new file mode 100644 index 00000000..2474a94b --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/Read.md @@ -0,0 +1,12 @@ +# WebApiULInt.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiULInt](../WebApiULInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/SetAsync.md new file mode 100644 index 00000000..81c6accc --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiULInt.SetAsync method + +```csharp +public override Task SetAsync(ulong value) +``` + +## See Also + +* class [WebApiULInt](../WebApiULInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/WebApiULInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/WebApiULInt.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/WebApiULInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/WebApiULInt.md index 197e64d7..edeec036 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/WebApiULInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiULInt/WebApiULInt.md @@ -9,7 +9,7 @@ public WebApiULInt() ## See Also * class [WebApiULInt](../WebApiULInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiULInt(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiULInt](../WebApiULInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt.md index b4546eed..855cba54 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt.md @@ -16,6 +16,6 @@ public class WebApiUSInt : OnlinerUSInt ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/GetAsync.md new file mode 100644 index 00000000..1ab2bfd3 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiUSInt.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiUSInt](../WebApiUSInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/Read.md new file mode 100644 index 00000000..6bbe04eb --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/Read.md @@ -0,0 +1,12 @@ +# WebApiUSInt.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiUSInt](../WebApiUSInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/SetAsync.md new file mode 100644 index 00000000..e734d76e --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiUSInt.SetAsync method + +```csharp +public override Task SetAsync(byte value) +``` + +## See Also + +* class [WebApiUSInt](../WebApiUSInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/WebApiUSInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/WebApiUSInt.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/WebApiUSInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/WebApiUSInt.md index 7471c94d..1d58f4f7 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/WebApiUSInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUSInt/WebApiUSInt.md @@ -9,7 +9,7 @@ public WebApiUSInt() ## See Also * class [WebApiUSInt](../WebApiUSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiUSInt(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiUSInt](../WebApiUSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt.md index f8f2fec4..f96aa7a9 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt.md @@ -16,6 +16,6 @@ public class WebApiUdInt : OnlinerUDInt ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/GetAsync.md new file mode 100644 index 00000000..4e3b8f44 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiUdInt.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiUdInt](../WebApiUdInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/Read.md new file mode 100644 index 00000000..a924410a --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/Read.md @@ -0,0 +1,12 @@ +# WebApiUdInt.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiUdInt](../WebApiUdInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/SetAsync.md new file mode 100644 index 00000000..1b0bd63e --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiUdInt.SetAsync method + +```csharp +public override Task SetAsync(uint value) +``` + +## See Also + +* class [WebApiUdInt](../WebApiUdInt.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/WebApiUdInt.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/WebApiUdInt.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/WebApiUdInt.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/WebApiUdInt.md index 9f640385..ea6e721b 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/WebApiUdInt.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiUdInt/WebApiUdInt.md @@ -9,7 +9,7 @@ public WebApiUdInt() ## See Also * class [WebApiUdInt](../WebApiUdInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiUdInt(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiUdInt](../WebApiUdInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar.md similarity index 73% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar.md index 8b58efc2..dc263ce4 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar.md @@ -16,6 +16,6 @@ public class WebApiWChar : OnlinerWChar ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/GetAsync.md new file mode 100644 index 00000000..f2828200 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiWChar.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiWChar](../WebApiWChar.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/Read.md new file mode 100644 index 00000000..49a6fd73 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/Read.md @@ -0,0 +1,12 @@ +# WebApiWChar.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiWChar](../WebApiWChar.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/SetAsync.md new file mode 100644 index 00000000..193e2b1e --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiWChar.SetAsync method + +```csharp +public override Task SetAsync(char value) +``` + +## See Also + +* class [WebApiWChar](../WebApiWChar.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/WebApiWChar.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/WebApiWChar.md similarity index 59% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/WebApiWChar.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/WebApiWChar.md index 45829e3c..3a638873 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/WebApiWChar.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWChar/WebApiWChar.md @@ -9,7 +9,7 @@ public WebApiWChar() ## See Also * class [WebApiWChar](../WebApiWChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiWChar(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiWChar](../WebApiWChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString.md similarity index 74% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString.md index ed45f24d..cb8d6c0c 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString.md @@ -16,6 +16,6 @@ public class WebApiWString : OnlinerWString ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/GetAsync.md new file mode 100644 index 00000000..f3f10378 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiWString.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiWString](../WebApiWString.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/Read.md new file mode 100644 index 00000000..0eca42fe --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/Read.md @@ -0,0 +1,12 @@ +# WebApiWString.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiWString](../WebApiWString.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/SetAsync.md similarity index 50% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/SetAsync.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/SetAsync.md index 5cddc18e..769d47eb 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/SetAsync.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/SetAsync.md @@ -7,6 +7,6 @@ public override Task SetAsync(string value) ## See Also * class [WebApiWString](../WebApiWString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/WebApiWString.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/WebApiWString.md similarity index 60% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/WebApiWString.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/WebApiWString.md index 4c2d42d3..4adb2cc9 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/WebApiWString.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWString/WebApiWString.md @@ -9,7 +9,7 @@ public WebApiWString() ## See Also * class [WebApiWString](../WebApiWString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiWString(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiWString](../WebApiWString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord.md similarity index 72% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord.md index 1ae22445..b583a77d 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord.md @@ -16,6 +16,6 @@ public class WebApiWord : OnlinerWord ## See Also -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/GetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/GetAsync.md new file mode 100644 index 00000000..bf2e3b38 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/GetAsync.md @@ -0,0 +1,12 @@ +# WebApiWord.GetAsync method + +```csharp +public override Task GetAsync() +``` + +## See Also + +* class [WebApiWord](../WebApiWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/Read.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/Read.md new file mode 100644 index 00000000..fb948c2a --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/Read.md @@ -0,0 +1,12 @@ +# WebApiWord.Read method + +```csharp +public void Read(string value) +``` + +## See Also + +* class [WebApiWord](../WebApiWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/SetAsync.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/SetAsync.md new file mode 100644 index 00000000..a4b0a3b5 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/SetAsync.md @@ -0,0 +1,12 @@ +# WebApiWord.SetAsync method + +```csharp +public override Task SetAsync(ushort value) +``` + +## See Also + +* class [WebApiWord](../WebApiWord.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/WebApiWord.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/WebApiWord.md similarity index 58% rename from docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/WebApiWord.md rename to docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/WebApiWord.md index 721b661b..a26ebe15 100644 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/WebApiWord.md +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebApi/WebApiWord/WebApiWord.md @@ -9,7 +9,7 @@ public WebApiWord() ## See Also * class [WebApiWord](../WebApiWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) --- @@ -22,6 +22,6 @@ public WebApiWord(ITwinObject parent, string readableTail, string symbolTail) ## See Also * class [WebApiWord](../WebApiWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) +* namespace [Ix.Connector.S71500.WebApi](../../Ix.Connector.S71500.WebAPI.md) - + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector/WebApiConnectorExtensions.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector/WebApiConnectorExtensions.md new file mode 100644 index 00000000..45b25e15 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector/WebApiConnectorExtensions.md @@ -0,0 +1,19 @@ +# WebApiConnectorExtensions class + +Provides extension methods for instantiating WebAPI connector. + +```csharp +public static class WebApiConnectorExtensions +``` + +## Public Members + +| name | description | +| --- | --- | +| static [CreateWebApi](WebApiConnectorExtensions/CreateWebApi.md)(…) | Creates connector adapter for WebAPI communication. (2 methods) | + +## See Also + +* namespace [Ix.Connector](../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector/WebApiConnectorExtensions/CreateWebApi.md b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector/WebApiConnectorExtensions/CreateWebApi.md new file mode 100644 index 00000000..f4f66722 --- /dev/null +++ b/docs/api/Ix.Connector.S71500.WebAPI/Ix.Connector/WebApiConnectorExtensions/CreateWebApi.md @@ -0,0 +1,59 @@ +# WebApiConnectorExtensions.CreateWebApi method (1 of 2) + +Creates connector adapter for WebAPI communication. + +```csharp +public static ConnectorAdapter CreateWebApi(this ConnectorAdapterBuilder adapter, string ipAddress, + string userName, string password, bool ignoreSSLErros, string dbName = "\"TGlobalVariablesDB\"") +``` + +| parameter | description | +| --- | --- | +| adapter | Adapter builder. | +| ipAddress | Target's IP address. | +| userName | User name. | +| password | Password. | +| ignoreSSLErros | When true connection will ignore SSL errors. | +| dbName | Name of default DB. The DB used to store all data in an AX project is 'TGlobalVariablesDB'. | + +## Return Value + +Connector adapter for WebAPI connection. + +## See Also + +* class [WebApiConnectorExtensions](../WebApiConnectorExtensions.md) +* namespace [Ix.Connector](../../Ix.Connector.S71500.WebAPI.md) + +--- + +# WebApiConnectorExtensions.CreateWebApi method (2 of 2) + +Creates connector adapter for WebAPI communication. + +```csharp +public static ConnectorAdapter CreateWebApi(this ConnectorAdapterBuilder adapter, string ipAddress, + string userName, string password, + Func? customServerCertHandler, + string dbName = "\"TGlobalVariablesDB\"") +``` + +| parameter | description | +| --- | --- | +| adapter | Adapter builder. | +| ipAddress | Target's IP address. | +| userName | User name. | +| password | Password. | +| customServerCertHandler | Customized server certificate handler. | +| dbName | Name of default DB. The DB used to store all data in an AX project is 'TGlobalVariablesDB'. | + +## Return Value + +Connector adapter for WebAPI connection. + +## See Also + +* class [WebApiConnectorExtensions](../WebApiConnectorExtensions.md) +* namespace [Ix.Connector](../../Ix.Connector.S71500.WebAPI.md) + + diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebAPI.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebAPI.md deleted file mode 100644 index d97f364f..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebAPI.md +++ /dev/null @@ -1,44 +0,0 @@ -# Ix.Connector.Sax.WebAPI assembly - -## Ix.Connector namespace - -| public type | description | -| --- | --- | -| static class [WebApiConnectorExtensions](./Ix.Connector/WebApiConnectorExtensions.md) | | - -## Ix.Connector.Sax.WebApi namespace - -| public type | description | -| --- | --- | -| class [ReadOperationFailedException](./Ix.Connector.Sax.WebApi/ReadOperationFailedException.md) | | -| class [WebApiBool](./Ix.Connector.Sax.WebApi/WebApiBool.md) | | -| class [WebApiByte](./Ix.Connector.Sax.WebApi/WebApiByte.md) | | -| class [WebApiChar](./Ix.Connector.Sax.WebApi/WebApiChar.md) | | -| class [WebApiConnector](./Ix.Connector.Sax.WebApi/WebApiConnector.md) | | -| class [WebApiConnectorFactory](./Ix.Connector.Sax.WebApi/WebApiConnectorFactory.md) | | -| class [WebApiDate](./Ix.Connector.Sax.WebApi/WebApiDate.md) | | -| class [WebApiDateTime](./Ix.Connector.Sax.WebApi/WebApiDateTime.md) | | -| class [WebApiDInt](./Ix.Connector.Sax.WebApi/WebApiDInt.md) | | -| class [WebApiDWord](./Ix.Connector.Sax.WebApi/WebApiDWord.md) | | -| class [WebApiInt](./Ix.Connector.Sax.WebApi/WebApiInt.md) | | -| class [WebApiLDate](./Ix.Connector.Sax.WebApi/WebApiLDate.md) | | -| class [WebApiLDateTime](./Ix.Connector.Sax.WebApi/WebApiLDateTime.md) | | -| class [WebApiLInt](./Ix.Connector.Sax.WebApi/WebApiLInt.md) | | -| class [WebApiLReal](./Ix.Connector.Sax.WebApi/WebApiLReal.md) | | -| class [WebApiLTime](./Ix.Connector.Sax.WebApi/WebApiLTime.md) | | -| class [WebApiLTimeOfDay](./Ix.Connector.Sax.WebApi/WebApiLTimeOfDay.md) | | -| class [WebApiLWord](./Ix.Connector.Sax.WebApi/WebApiLWord.md) | | -| class [WebApiReal](./Ix.Connector.Sax.WebApi/WebApiReal.md) | | -| class [WebApiSInt](./Ix.Connector.Sax.WebApi/WebApiSInt.md) | | -| class [WebApiString](./Ix.Connector.Sax.WebApi/WebApiString.md) | | -| class [WebApiTime](./Ix.Connector.Sax.WebApi/WebApiTime.md) | | -| class [WebApiTimeOfDay](./Ix.Connector.Sax.WebApi/WebApiTimeOfDay.md) | | -| class [WebApiUdInt](./Ix.Connector.Sax.WebApi/WebApiUdInt.md) | | -| class [WebApiUInt](./Ix.Connector.Sax.WebApi/WebApiUInt.md) | | -| class [WebApiULInt](./Ix.Connector.Sax.WebApi/WebApiULInt.md) | | -| class [WebApiUSInt](./Ix.Connector.Sax.WebApi/WebApiUSInt.md) | | -| class [WebApiWChar](./Ix.Connector.Sax.WebApi/WebApiWChar.md) | | -| class [WebApiWord](./Ix.Connector.Sax.WebApi/WebApiWord.md) | | -| class [WebApiWString](./Ix.Connector.Sax.WebApi/WebApiWString.md) | | - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/ReadOperationFailedException.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/ReadOperationFailedException.md deleted file mode 100644 index 1df187aa..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/ReadOperationFailedException.md +++ /dev/null @@ -1,17 +0,0 @@ -# ReadOperationFailedException class - -```csharp -public class ReadOperationFailedException : Exception -``` - -## Public Members - -| name | description | -| --- | --- | -| [ReadOperationFailedException](ReadOperationFailedException/ReadOperationFailedException.md)(…) | | - -## See Also - -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/ReadOperationFailedException/ReadOperationFailedException.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/ReadOperationFailedException/ReadOperationFailedException.md deleted file mode 100644 index 41145107..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/ReadOperationFailedException/ReadOperationFailedException.md +++ /dev/null @@ -1,12 +0,0 @@ -# ReadOperationFailedException constructor - -```csharp -public ReadOperationFailedException(string s) -``` - -## See Also - -* class [ReadOperationFailedException](../ReadOperationFailedException.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/GetAsync.md deleted file mode 100644 index c3eca5f3..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiBool.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiBool](../WebApiBool.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/Read.md deleted file mode 100644 index e8081235..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiBool.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiBool](../WebApiBool.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/SetAsync.md deleted file mode 100644 index 62a82d1e..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiBool/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiBool.SetAsync method - -```csharp -public override Task SetAsync(bool value) -``` - -## See Also - -* class [WebApiBool](../WebApiBool.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/GetAsync.md deleted file mode 100644 index 2de814ab..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiByte.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiByte](../WebApiByte.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/Read.md deleted file mode 100644 index 06703d4d..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiByte.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiByte](../WebApiByte.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/SetAsync.md deleted file mode 100644 index 2b4b72d9..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiByte/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiByte.SetAsync method - -```csharp -public override Task SetAsync(byte value) -``` - -## See Also - -* class [WebApiByte](../WebApiByte.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/GetAsync.md deleted file mode 100644 index 38433be0..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiChar.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiChar](../WebApiChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/Read.md deleted file mode 100644 index 1dc47813..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiChar.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiChar](../WebApiChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/SetAsync.md deleted file mode 100644 index 6cfdf187..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiChar/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiChar.SetAsync method - -```csharp -public override Task SetAsync(char value) -``` - -## See Also - -* class [WebApiChar](../WebApiChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector.md deleted file mode 100644 index cc5b43f9..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector.md +++ /dev/null @@ -1,31 +0,0 @@ -# WebApiConnector class - -```csharp -public class WebApiConnector : Connector -``` - -## Public Members - -| name | description | -| --- | --- | -| [WebApiConnector](WebApiConnector/WebApiConnector.md)(…) | (2 constructors) | -| override [BuildAndStart](WebApiConnector/BuildAndStart.md)() | | -| override [ReadBatchAsync](WebApiConnector/ReadBatchAsync.md)(…) | | -| override [ReloadConnector](WebApiConnector/ReloadConnector.md)() | | -| override [WriteBatchAsync](WebApiConnector/WriteBatchAsync.md)(…) | | -| static [NumberOfInstances](WebApiConnector/NumberOfInstances.md) { get; } | Gets number of instance of WebAPI connector in this application. | - -## Protected Members - -| name | description | -| --- | --- | -| [CyclicRead](WebApiConnector/CyclicRead.md)() | Reads online variables required to be read. | -| [CyclicWrite](WebApiConnector/CyclicWrite.md)() | Writes modified online variables. | -| [CyclicWriteRead](WebApiConnector/CyclicWriteRead.md)() | Write read operation. | -| [StartReadWriteOps](WebApiConnector/StartReadWriteOps.md)() | Starts cyclical read write operation on this connector. | - -## See Also - -* namespace [Ix.Connector.Sax.WebApi](../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicRead.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicRead.md deleted file mode 100644 index d623726a..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicRead.md +++ /dev/null @@ -1,14 +0,0 @@ -# WebApiConnector.CyclicRead method - -Reads online variables required to be read. - -```csharp -protected Task CyclicRead() -``` - -## See Also - -* class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicWrite.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicWrite.md deleted file mode 100644 index bd76fb84..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicWrite.md +++ /dev/null @@ -1,14 +0,0 @@ -# WebApiConnector.CyclicWrite method - -Writes modified online variables. - -```csharp -protected Task CyclicWrite() -``` - -## See Also - -* class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicWriteRead.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicWriteRead.md deleted file mode 100644 index 536df39b..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/CyclicWriteRead.md +++ /dev/null @@ -1,14 +0,0 @@ -# WebApiConnector.CyclicWriteRead method - -Write read operation. - -```csharp -protected Task CyclicWriteRead() -``` - -## See Also - -* class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/StartReadWriteOps.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/StartReadWriteOps.md deleted file mode 100644 index b3c490dc..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/StartReadWriteOps.md +++ /dev/null @@ -1,14 +0,0 @@ -# WebApiConnector.StartReadWriteOps method - -Starts cyclical read write operation on this connector. - -```csharp -protected void StartReadWriteOps() -``` - -## See Also - -* class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/WebApiConnector.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/WebApiConnector.md deleted file mode 100644 index c7750d0d..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiConnector/WebApiConnector.md +++ /dev/null @@ -1,28 +0,0 @@ -# WebApiConnector constructor (1 of 2) - -```csharp -public WebApiConnector(string ipAddress, string userName, string password, bool ignoreSSLErros, - string dbName = "\"TGlobalVariablesDB\"") -``` - -## See Also - -* class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - ---- - -# WebApiConnector constructor (2 of 2) - -```csharp -public WebApiConnector(string ipAddress, string userName, string password, - Func? customServerCertHandler, - string dbName = "\"TGlobalVariablesDB\"") -``` - -## See Also - -* class [WebApiConnector](../WebApiConnector.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/GetAsync.md deleted file mode 100644 index aa6b46cf..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDInt.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiDInt](../WebApiDInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/Read.md deleted file mode 100644 index 0ec68c9f..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDInt.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiDInt](../WebApiDInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/SetAsync.md deleted file mode 100644 index 9d0ec944..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDInt/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDInt.SetAsync method - -```csharp -public override Task SetAsync(int value) -``` - -## See Also - -* class [WebApiDInt](../WebApiDInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/GetAsync.md deleted file mode 100644 index f809f22e..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDWord.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiDWord](../WebApiDWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/Read.md deleted file mode 100644 index ab7bd47f..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDWord.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiDWord](../WebApiDWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/SetAsync.md deleted file mode 100644 index eb7f339f..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDWord/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDWord.SetAsync method - -```csharp -public override Task SetAsync(uint value) -``` - -## See Also - -* class [WebApiDWord](../WebApiDWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/GetAsync.md deleted file mode 100644 index 2f149331..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDate.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiDate](../WebApiDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/Read.md deleted file mode 100644 index 739dd165..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDate.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiDate](../WebApiDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/SetAsync.md deleted file mode 100644 index f96cb5ac..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDate/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDate.SetAsync method - -```csharp -public override Task SetAsync(DateOnly value) -``` - -## See Also - -* class [WebApiDate](../WebApiDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/GetAsync.md deleted file mode 100644 index 704f8eba..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDateTime.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiDateTime](../WebApiDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/Read.md deleted file mode 100644 index 416eacec..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiDateTime/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiDateTime.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiDateTime](../WebApiDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/GetAsync.md deleted file mode 100644 index 5262f913..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiInt.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiInt](../WebApiInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/Read.md deleted file mode 100644 index 8feadac6..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiInt.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiInt](../WebApiInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/SetAsync.md deleted file mode 100644 index 09fb2365..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiInt/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiInt.SetAsync method - -```csharp -public override Task SetAsync(short value) -``` - -## See Also - -* class [WebApiInt](../WebApiInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/GetAsync.md deleted file mode 100644 index 11932d91..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLDate.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiLDate](../WebApiLDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/Read.md deleted file mode 100644 index a55c81cd..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDate/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLDate.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiLDate](../WebApiLDate.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/GetAsync.md deleted file mode 100644 index fef6f04b..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLDateTime.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiLDateTime](../WebApiLDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/Read.md deleted file mode 100644 index 4ab8ad70..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLDateTime/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLDateTime.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiLDateTime](../WebApiLDateTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/GetAsync.md deleted file mode 100644 index a5a8513b..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLInt.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiLInt](../WebApiLInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/Read.md deleted file mode 100644 index 8f823ec7..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLInt.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiLInt](../WebApiLInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/SetAsync.md deleted file mode 100644 index e9f0a21f..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLInt/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLInt.SetAsync method - -```csharp -public override Task SetAsync(long value) -``` - -## See Also - -* class [WebApiLInt](../WebApiLInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/GetAsync.md deleted file mode 100644 index c3d76e34..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLReal.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiLReal](../WebApiLReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/Read.md deleted file mode 100644 index a7edffc1..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLReal.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiLReal](../WebApiLReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/SetAsync.md deleted file mode 100644 index 7970d940..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLReal/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLReal.SetAsync method - -```csharp -public override Task SetAsync(double value) -``` - -## See Also - -* class [WebApiLReal](../WebApiLReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/GetAsync.md deleted file mode 100644 index 9a2000da..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLTime.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiLTime](../WebApiLTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/Read.md deleted file mode 100644 index 9ff108b2..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTime/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLTime.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiLTime](../WebApiLTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/Read.md deleted file mode 100644 index c35cb2e3..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLTimeOfDay/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLTimeOfDay.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiLTimeOfDay](../WebApiLTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/GetAsync.md deleted file mode 100644 index 3dcfa59a..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLWord.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiLWord](../WebApiLWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/Read.md deleted file mode 100644 index 0fb112a4..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLWord.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiLWord](../WebApiLWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/SetAsync.md deleted file mode 100644 index 2e8396fd..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiLWord/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiLWord.SetAsync method - -```csharp -public override Task SetAsync(ulong value) -``` - -## See Also - -* class [WebApiLWord](../WebApiLWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/GetAsync.md deleted file mode 100644 index 96290c67..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiReal.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiReal](../WebApiReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/Read.md deleted file mode 100644 index 1d24be07..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiReal.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiReal](../WebApiReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/SetAsync.md deleted file mode 100644 index 9156ec3e..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiReal/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiReal.SetAsync method - -```csharp -public override Task SetAsync(float value) -``` - -## See Also - -* class [WebApiReal](../WebApiReal.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/GetAsync.md deleted file mode 100644 index 112acb28..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiSInt.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiSInt](../WebApiSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/Read.md deleted file mode 100644 index ae7f97f4..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiSInt.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiSInt](../WebApiSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/SetAsync.md deleted file mode 100644 index 59e2d239..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiSInt/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiSInt.SetAsync method - -```csharp -public override Task SetAsync(sbyte value) -``` - -## See Also - -* class [WebApiSInt](../WebApiSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/GetAsync.md deleted file mode 100644 index a09d1c6a..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiString.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiString](../WebApiString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/Read.md deleted file mode 100644 index 1ffd8498..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiString.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiString](../WebApiString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/SetAsync.md deleted file mode 100644 index eb15292b..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiString/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiString.SetAsync method - -```csharp -public override Task SetAsync(string value) -``` - -## See Also - -* class [WebApiString](../WebApiString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/GetAsync.md deleted file mode 100644 index 2a1691d3..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiTime.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiTime](../WebApiTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/Read.md deleted file mode 100644 index 5be46419..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiTime.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiTime](../WebApiTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/SetAsync.md deleted file mode 100644 index 1aef83e7..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTime/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiTime.SetAsync method - -```csharp -public override Task SetAsync(TimeSpan value) -``` - -## See Also - -* class [WebApiTime](../WebApiTime.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/GetAsync.md deleted file mode 100644 index bbfb6d93..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiTimeOfDay.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiTimeOfDay](../WebApiTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/Read.md deleted file mode 100644 index ca12ad5e..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiTimeOfDay/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiTimeOfDay.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiTimeOfDay](../WebApiTimeOfDay.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/GetAsync.md deleted file mode 100644 index 130a6b81..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUInt.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiUInt](../WebApiUInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/Read.md deleted file mode 100644 index 1bdd3e83..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUInt.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiUInt](../WebApiUInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/SetAsync.md deleted file mode 100644 index 57eeaf56..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUInt/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUInt.SetAsync method - -```csharp -public override Task SetAsync(ushort value) -``` - -## See Also - -* class [WebApiUInt](../WebApiUInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/GetAsync.md deleted file mode 100644 index 0753dbe0..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiULInt.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiULInt](../WebApiULInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/Read.md deleted file mode 100644 index 3c95f178..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiULInt.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiULInt](../WebApiULInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/SetAsync.md deleted file mode 100644 index 4e2b2582..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiULInt/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiULInt.SetAsync method - -```csharp -public override Task SetAsync(ulong value) -``` - -## See Also - -* class [WebApiULInt](../WebApiULInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/GetAsync.md deleted file mode 100644 index 7dc34739..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUSInt.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiUSInt](../WebApiUSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/Read.md deleted file mode 100644 index f509c9d9..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUSInt.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiUSInt](../WebApiUSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/SetAsync.md deleted file mode 100644 index 99fab938..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUSInt/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUSInt.SetAsync method - -```csharp -public override Task SetAsync(byte value) -``` - -## See Also - -* class [WebApiUSInt](../WebApiUSInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/GetAsync.md deleted file mode 100644 index 792ecca9..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUdInt.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiUdInt](../WebApiUdInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/Read.md deleted file mode 100644 index 2595661a..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUdInt.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiUdInt](../WebApiUdInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/SetAsync.md deleted file mode 100644 index 75c449cb..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiUdInt/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiUdInt.SetAsync method - -```csharp -public override Task SetAsync(uint value) -``` - -## See Also - -* class [WebApiUdInt](../WebApiUdInt.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/GetAsync.md deleted file mode 100644 index 54e87382..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiWChar.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiWChar](../WebApiWChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/Read.md deleted file mode 100644 index 326b13de..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiWChar.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiWChar](../WebApiWChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/SetAsync.md deleted file mode 100644 index 1c72f6f8..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWChar/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiWChar.SetAsync method - -```csharp -public override Task SetAsync(char value) -``` - -## See Also - -* class [WebApiWChar](../WebApiWChar.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/GetAsync.md deleted file mode 100644 index 696feb2b..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiWString.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiWString](../WebApiWString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/Read.md deleted file mode 100644 index 2d6970c5..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWString/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiWString.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiWString](../WebApiWString.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/GetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/GetAsync.md deleted file mode 100644 index 7a419bba..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/GetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiWord.GetAsync method - -```csharp -public override Task GetAsync() -``` - -## See Also - -* class [WebApiWord](../WebApiWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/Read.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/Read.md deleted file mode 100644 index 9e12cd15..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/Read.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiWord.Read method - -```csharp -public void Read(string result) -``` - -## See Also - -* class [WebApiWord](../WebApiWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/SetAsync.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/SetAsync.md deleted file mode 100644 index 28d61840..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebApi/WebApiWord/SetAsync.md +++ /dev/null @@ -1,12 +0,0 @@ -# WebApiWord.SetAsync method - -```csharp -public override Task SetAsync(ushort value) -``` - -## See Also - -* class [WebApiWord](../WebApiWord.md) -* namespace [Ix.Connector.Sax.WebApi](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector/WebApiConnectorExtensions.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector/WebApiConnectorExtensions.md deleted file mode 100644 index 4612ddda..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector/WebApiConnectorExtensions.md +++ /dev/null @@ -1,17 +0,0 @@ -# WebApiConnectorExtensions class - -```csharp -public static class WebApiConnectorExtensions -``` - -## Public Members - -| name | description | -| --- | --- | -| static [CreateWebApi](WebApiConnectorExtensions/CreateWebApi.md)(…) | (2 methods) | - -## See Also - -* namespace [Ix.Connector](../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector/WebApiConnectorExtensions/CreateWebApi.md b/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector/WebApiConnectorExtensions/CreateWebApi.md deleted file mode 100644 index 1dd1965e..00000000 --- a/docs/api/Ix.Connector.Sax.WebAPI/Ix.Connector/WebApiConnectorExtensions/CreateWebApi.md +++ /dev/null @@ -1,29 +0,0 @@ -# WebApiConnectorExtensions.CreateWebApi method (1 of 2) - -```csharp -public static ConnectorAdapter CreateWebApi(this ConnectorAdapterBuilder adapter, string ipAddress, - string userName, string password, bool ignoreSSLErros, string dbName = "\"TGlobalVariablesDB\"") -``` - -## See Also - -* class [WebApiConnectorExtensions](../WebApiConnectorExtensions.md) -* namespace [Ix.Connector](../../Ix.Connector.Sax.WebAPI.md) - ---- - -# WebApiConnectorExtensions.CreateWebApi method (2 of 2) - -```csharp -public static ConnectorAdapter CreateWebApi(this ConnectorAdapterBuilder adapter, string ipAddress, - string userName, string password, - Func? customServerCertHandler, - string dbName = "\"TGlobalVariablesDB\"") -``` - -## See Also - -* class [WebApiConnectorExtensions](../WebApiConnectorExtensions.md) -* namespace [Ix.Connector](../../Ix.Connector.Sax.WebAPI.md) - - diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md index 9b834cd4..585be14e 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md @@ -11,15 +11,18 @@ public class RenderableComponentBase : ComponentBase, IRenderableComponent | name | description | | --- | --- | | [RenderableComponentBase](RenderableComponentBase/RenderableComponentBase.md)() | The default constructor. | +| [HasFocus](RenderableComponentBase/HasFocus.md) { get; set; } | | | [CssSymbol](RenderableComponentBase/CssSymbol.md)(…) | | | [UpdateShadowValuesOnChange](RenderableComponentBase/UpdateShadowValuesOnChange.md)(…) | Method, which updates are primitive shadow values of ITwinObject ITwinObject instance. (2 methods) | | [UpdateValuesOnChange](RenderableComponentBase/UpdateValuesOnChange.md)(…) | Method, which updates are primitive values of ITwinObject instance ITwinObject instance. (2 methods) | +| [UpdateValuesOnChangeOutFocus](RenderableComponentBase/UpdateValuesOnChangeOutFocus.md)(…) | Method, which updates primitive value only, when element is out of focus. Public property IsFocus can be set. If is true, element won't be updated. IValueTag instance. | ## Protected Members | name | description | | --- | --- | | [HandlePropertyChanged](RenderableComponentBase/HandlePropertyChanged.md)(…) | | +| [HandlePropertyChangedOnOutFocus](RenderableComponentBase/HandlePropertyChangedOnOutFocus.md)(…) | | | [HandleShadowPropertyChanged](RenderableComponentBase/HandleShadowPropertyChanged.md)(…) | | ## See Also diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/HandlePropertyChangedOnOutFocus.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/HandlePropertyChangedOnOutFocus.md new file mode 100644 index 00000000..27a0b182 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/HandlePropertyChangedOnOutFocus.md @@ -0,0 +1,12 @@ +# RenderableComponentBase.HandlePropertyChangedOnOutFocus method + +```csharp +protected void HandlePropertyChangedOnOutFocus(object sender, PropertyChangedEventArgs a) +``` + +## See Also + +* class [RenderableComponentBase](../RenderableComponentBase.md) +* namespace [Ix.Presentation.Blazor.Controls.RenderableContent](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/HasFocus.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/HasFocus.md new file mode 100644 index 00000000..d5e2be6e --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/HasFocus.md @@ -0,0 +1,12 @@ +# RenderableComponentBase.HasFocus property + +```csharp +public bool HasFocus { get; set; } +``` + +## See Also + +* class [RenderableComponentBase](../RenderableComponentBase.md) +* namespace [Ix.Presentation.Blazor.Controls.RenderableContent](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/UpdateValuesOnChange.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/UpdateValuesOnChange.md index 9da5e097..aeb47f81 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/UpdateValuesOnChange.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/UpdateValuesOnChange.md @@ -18,7 +18,7 @@ public void UpdateValuesOnChange(ITwinObject element) Method, which updates primitive value. IValueTag instance. ```csharp -public void UpdateValuesOnChange(ITwinPrimitive tag) +public void UpdateValuesOnChange(OnlinerBase tag) ``` ## See Also diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/UpdateValuesOnChangeOutFocus.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/UpdateValuesOnChangeOutFocus.md new file mode 100644 index 00000000..6fb447b9 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase/UpdateValuesOnChangeOutFocus.md @@ -0,0 +1,14 @@ +# RenderableComponentBase.UpdateValuesOnChangeOutFocus method + +Method, which updates primitive value only, when element is out of focus. Public property IsFocus can be set. If is true, element won't be updated. IValueTag instance. + +```csharp +public void UpdateValuesOnChangeOutFocus(OnlinerBase tag) +``` + +## See Also + +* class [RenderableComponentBase](../RenderableComponentBase.md) +* namespace [Ix.Presentation.Blazor.Controls.RenderableContent](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerBaseControlView-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerBaseControlView-1.md index 5f7fbdc1..a74fe827 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerBaseControlView-1.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerBaseControlView-1.md @@ -1,7 +1,7 @@ # OnlinerBaseControlView<T> class ```csharp -public class OnlinerBaseControlView : RenderableComponentBase +public class OnlinerBaseControlView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerBaseControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerBaseControlView](OnlinerBaseControlView-1/OnlinerBaseControlView.md)() | The default constructor. | -| [Onliner](OnlinerBaseControlView-1/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerBaseControlView-1/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerBaseControlView-1/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerBoolControlView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerBoolControlView.md index 968c7b2d..79bb0734 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerBoolControlView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerBoolControlView.md @@ -1,7 +1,7 @@ # OnlinerBoolControlView class ```csharp -public class OnlinerBoolControlView : RenderableComponentBase +public class OnlinerBoolControlView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerBoolControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerBoolControlView](OnlinerBoolControlView/OnlinerBoolControlView.md)() | The default constructor. | -| [Onliner](OnlinerBoolControlView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerBoolControlView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerBoolControlView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerDateControlView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerDateControlView.md index e32e5867..ddfd1dcc 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerDateControlView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerDateControlView.md @@ -1,7 +1,7 @@ # OnlinerDateControlView class ```csharp -public class OnlinerDateControlView : RenderableComponentBase +public class OnlinerDateControlView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerDateControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerDateControlView](OnlinerDateControlView/OnlinerDateControlView.md)() | The default constructor. | -| [Onliner](OnlinerDateControlView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerDateControlView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerDateControlView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerDateTimeControlView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerDateTimeControlView.md index 9702f135..621495a9 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerDateTimeControlView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerDateTimeControlView.md @@ -1,7 +1,7 @@ # OnlinerDateTimeControlView class ```csharp -public class OnlinerDateTimeControlView : RenderableComponentBase +public class OnlinerDateTimeControlView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerDateTimeControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerDateTimeControlView](OnlinerDateTimeControlView/OnlinerDateTimeControlView.md)() | The default constructor. | -| [Onliner](OnlinerDateTimeControlView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerDateTimeControlView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerDateTimeControlView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerTimeOfDayControlView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerTimeOfDayControlView.md index 35e47918..364dd878 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerTimeOfDayControlView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control/OnlinerTimeOfDayControlView.md @@ -1,7 +1,7 @@ # OnlinerTimeOfDayControlView class ```csharp -public class OnlinerTimeOfDayControlView : RenderableComponentBase +public class OnlinerTimeOfDayControlView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerTimeOfDayControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerTimeOfDayControlView](OnlinerTimeOfDayControlView/OnlinerTimeOfDayControlView.md)() | The default constructor. | -| [Onliner](OnlinerTimeOfDayControlView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerTimeOfDayControlView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerTimeOfDayControlView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerBaseDisplayView-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerBaseDisplayView-1.md index cdcba1d5..7ee4514c 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerBaseDisplayView-1.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerBaseDisplayView-1.md @@ -1,7 +1,7 @@ # OnlinerBaseDisplayView<T> class ```csharp -public class OnlinerBaseDisplayView : RenderableComponentBase +public class OnlinerBaseDisplayView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerBaseDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerBaseDisplayView](OnlinerBaseDisplayView-1/OnlinerBaseDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerBaseDisplayView-1/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerBaseDisplayView-1/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerBaseDisplayView-1/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerBoolDisplayView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerBoolDisplayView.md index 85b932ed..67ae1da5 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerBoolDisplayView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerBoolDisplayView.md @@ -1,7 +1,7 @@ # OnlinerBoolDisplayView class ```csharp -public class OnlinerBoolDisplayView : RenderableComponentBase +public class OnlinerBoolDisplayView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerBoolDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerBoolDisplayView](OnlinerBoolDisplayView/OnlinerBoolDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerBoolDisplayView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerBoolDisplayView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerBoolDisplayView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateDisplayView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateDisplayView.md index 38b4304a..cddd448b 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateDisplayView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateDisplayView.md @@ -1,7 +1,7 @@ # OnlinerDateDisplayView class ```csharp -public class OnlinerDateDisplayView : RenderableComponentBase +public class OnlinerDateDisplayView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerDateDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerDateDisplayView](OnlinerDateDisplayView/OnlinerDateDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerDateDisplayView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerDateDisplayView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerDateDisplayView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateTimeDisplayView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateTimeDisplayView.md index 139fb376..9a5bb043 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateTimeDisplayView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateTimeDisplayView.md @@ -1,7 +1,7 @@ # OnlinerDateTimeDisplayView class ```csharp -public class OnlinerDateTimeDisplayView : RenderableComponentBase +public class OnlinerDateTimeDisplayView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerDateTimeDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerDateTimeDisplayView](OnlinerDateTimeDisplayView/OnlinerDateTimeDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerDateTimeDisplayView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerDateTimeDisplayView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerDateTimeDisplayView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerTimeOfDayDisplayView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerTimeOfDayDisplayView.md index b3ead2a3..9590e744 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerTimeOfDayDisplayView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerTimeOfDayDisplayView.md @@ -1,7 +1,7 @@ # OnlinerTimeOfDayDisplayView class ```csharp -public class OnlinerTimeOfDayDisplayView : RenderableComponentBase +public class OnlinerTimeOfDayDisplayView : TemplateBaseOnline ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerTimeOfDayDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerTimeOfDayDisplayView](OnlinerTimeOfDayDisplayView/OnlinerTimeOfDayDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerTimeOfDayDisplayView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerTimeOfDayDisplayView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerTimeOfDayDisplayView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md new file mode 100644 index 00000000..85dc770b --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md @@ -0,0 +1,28 @@ +# TemplateBaseOnline<T> class + +```csharp +public class TemplateBaseOnline : RenderableComponentBase +``` + +## Public Members + +| name | description | +| --- | --- | +| [TemplateBaseOnline](TemplateBaseOnline-1/TemplateBaseOnline.md)() | The default constructor. | +| [IsReadOnly](TemplateBaseOnline-1/IsReadOnly.md) { get; set; } | | +| [Onliner](TemplateBaseOnline-1/Onliner.md) { get; set; } | | + +## Protected Members + +| name | description | +| --- | --- | +| [Value](TemplateBaseOnline-1/Value.md) { get; set; } | | +| override [BuildRenderTree](TemplateBaseOnline-1/BuildRenderTree.md)(…) | | +| override [OnInitializedAsync](TemplateBaseOnline-1/OnInitializedAsync.md)() | | + +## See Also + +* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online](../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/BuildRenderTree.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/BuildRenderTree.md new file mode 100644 index 00000000..d0ad6170 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/BuildRenderTree.md @@ -0,0 +1,12 @@ +# TemplateBaseOnline<T>.BuildRenderTree method + +```csharp +protected override void BuildRenderTree(RenderTreeBuilder __builder) +``` + +## See Also + +* class [TemplateBaseOnline<T>](../TemplateBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/IsReadOnly.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/IsReadOnly.md new file mode 100644 index 00000000..199f9eaf --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/IsReadOnly.md @@ -0,0 +1,12 @@ +# TemplateBaseOnline<T>.IsReadOnly property + +```csharp +public bool IsReadOnly { get; set; } +``` + +## See Also + +* class [TemplateBaseOnline<T>](../TemplateBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/OnInitializedAsync.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/OnInitializedAsync.md new file mode 100644 index 00000000..35e91e75 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/OnInitializedAsync.md @@ -0,0 +1,12 @@ +# TemplateBaseOnline<T>.OnInitializedAsync method + +```csharp +protected override Task OnInitializedAsync() +``` + +## See Also + +* class [TemplateBaseOnline<T>](../TemplateBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/Onliner.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/Onliner.md new file mode 100644 index 00000000..8573eb27 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/Onliner.md @@ -0,0 +1,12 @@ +# TemplateBaseOnline<T>.Onliner property + +```csharp +public OnlinerBase Onliner { get; set; } +``` + +## See Also + +* class [TemplateBaseOnline<T>](../TemplateBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/TemplateBaseOnline.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/TemplateBaseOnline.md new file mode 100644 index 00000000..f9148114 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/TemplateBaseOnline.md @@ -0,0 +1,14 @@ +# TemplateBaseOnline<T> constructor + +The default constructor. + +```csharp +public TemplateBaseOnline() +``` + +## See Also + +* class [TemplateBaseOnline<T>](../TemplateBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/Value.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/Value.md new file mode 100644 index 00000000..33cef6d2 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1/Value.md @@ -0,0 +1,12 @@ +# TemplateBaseOnline<T>.Value property + +```csharp +protected T Value { get; set; } +``` + +## See Also + +* class [TemplateBaseOnline<T>](../TemplateBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerBaseShadowControlView-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerBaseShadowControlView-1.md index 8040187e..ce66894c 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerBaseShadowControlView-1.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerBaseShadowControlView-1.md @@ -1,7 +1,7 @@ # OnlinerBaseShadowControlView<T> class ```csharp -public class OnlinerBaseShadowControlView : RenderableComponentBase +public class OnlinerBaseShadowControlView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerBaseShadowControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerBaseShadowControlView](OnlinerBaseShadowControlView-1/OnlinerBaseShadowControlView.md)() | The default constructor. | -| [Onliner](OnlinerBaseShadowControlView-1/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerBaseShadowControlView-1/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerBaseShadowControlView-1/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerBoolShadowControlView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerBoolShadowControlView.md index 2272a824..38bea4ec 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerBoolShadowControlView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerBoolShadowControlView.md @@ -1,7 +1,7 @@ # OnlinerBoolShadowControlView class ```csharp -public class OnlinerBoolShadowControlView : RenderableComponentBase +public class OnlinerBoolShadowControlView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerBoolShadowControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerBoolShadowControlView](OnlinerBoolShadowControlView/OnlinerBoolShadowControlView.md)() | The default constructor. | -| [Onliner](OnlinerBoolShadowControlView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerBoolShadowControlView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerBoolShadowControlView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerDateShadowControlView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerDateShadowControlView.md index 44aa6ef3..91785888 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerDateShadowControlView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerDateShadowControlView.md @@ -1,7 +1,7 @@ # OnlinerDateShadowControlView class ```csharp -public class OnlinerDateShadowControlView : RenderableComponentBase +public class OnlinerDateShadowControlView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerDateShadowControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerDateShadowControlView](OnlinerDateShadowControlView/OnlinerDateShadowControlView.md)() | The default constructor. | -| [Onliner](OnlinerDateShadowControlView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerDateShadowControlView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerDateShadowControlView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerDateTimeShadowControlView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerDateTimeShadowControlView.md index 8244cfb2..a6d35f63 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerDateTimeShadowControlView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerDateTimeShadowControlView.md @@ -1,7 +1,7 @@ # OnlinerDateTimeShadowControlView class ```csharp -public class OnlinerDateTimeShadowControlView : RenderableComponentBase +public class OnlinerDateTimeShadowControlView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerDateTimeShadowControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerDateTimeShadowControlView](OnlinerDateTimeShadowControlView/OnlinerDateTimeShadowControlView.md)() | The default constructor. | -| [Onliner](OnlinerDateTimeShadowControlView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerDateTimeShadowControlView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerDateTimeShadowControlView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerTimeOfDayShadowControlView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerTimeOfDayShadowControlView.md index 25fe1842..f4ca5b5d 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerTimeOfDayShadowControlView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control/OnlinerTimeOfDayShadowControlView.md @@ -1,7 +1,7 @@ # OnlinerTimeOfDayShadowControlView class ```csharp -public class OnlinerTimeOfDayShadowControlView : RenderableComponentBase +public class OnlinerTimeOfDayShadowControlView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerTimeOfDayShadowControlView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerTimeOfDayShadowControlView](OnlinerTimeOfDayShadowControlView/OnlinerTimeOfDayShadowControlView.md)() | The default constructor. | -| [Onliner](OnlinerTimeOfDayShadowControlView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerTimeOfDayShadowControlView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerTimeOfDayShadowControlView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerBaseShadowDisplayView-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerBaseShadowDisplayView-1.md index 21eee107..94206f0a 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerBaseShadowDisplayView-1.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerBaseShadowDisplayView-1.md @@ -1,7 +1,7 @@ # OnlinerBaseShadowDisplayView<T> class ```csharp -public class OnlinerBaseShadowDisplayView : RenderableComponentBase +public class OnlinerBaseShadowDisplayView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerBaseShadowDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerBaseShadowDisplayView](OnlinerBaseShadowDisplayView-1/OnlinerBaseShadowDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerBaseShadowDisplayView-1/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerBaseShadowDisplayView-1/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerBaseShadowDisplayView-1/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerBoolShadowDisplayView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerBoolShadowDisplayView.md index af1b4bdb..953cf362 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerBoolShadowDisplayView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerBoolShadowDisplayView.md @@ -1,7 +1,7 @@ # OnlinerBoolShadowDisplayView class ```csharp -public class OnlinerBoolShadowDisplayView : RenderableComponentBase +public class OnlinerBoolShadowDisplayView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerBoolShadowDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerBoolShadowDisplayView](OnlinerBoolShadowDisplayView/OnlinerBoolShadowDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerBoolShadowDisplayView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerBoolShadowDisplayView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerBoolShadowDisplayView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateShadowDisplayView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateShadowDisplayView.md index 18d51437..7b05107b 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateShadowDisplayView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateShadowDisplayView.md @@ -1,7 +1,7 @@ # OnlinerDateShadowDisplayView class ```csharp -public class OnlinerDateShadowDisplayView : RenderableComponentBase +public class OnlinerDateShadowDisplayView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerDateShadowDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerDateShadowDisplayView](OnlinerDateShadowDisplayView/OnlinerDateShadowDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerDateShadowDisplayView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerDateShadowDisplayView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerDateShadowDisplayView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateTimeShadowDisplayView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateTimeShadowDisplayView.md index 39ba5226..35ec1895 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateTimeShadowDisplayView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateTimeShadowDisplayView.md @@ -1,7 +1,7 @@ # OnlinerDateTimeShadowDisplayView class ```csharp -public class OnlinerDateTimeShadowDisplayView : RenderableComponentBase +public class OnlinerDateTimeShadowDisplayView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerDateTimeShadowDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerDateTimeShadowDisplayView](OnlinerDateTimeShadowDisplayView/OnlinerDateTimeShadowDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerDateTimeShadowDisplayView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerDateTimeShadowDisplayView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerDateTimeShadowDisplayView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerTimeOfDayShadowDisplayView.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerTimeOfDayShadowDisplayView.md index 25b6bdd0..249918b7 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerTimeOfDayShadowDisplayView.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerTimeOfDayShadowDisplayView.md @@ -1,7 +1,7 @@ # OnlinerTimeOfDayShadowDisplayView class ```csharp -public class OnlinerTimeOfDayShadowDisplayView : RenderableComponentBase +public class OnlinerTimeOfDayShadowDisplayView : TemplateBaseShadow ``` ## Public Members @@ -9,18 +9,16 @@ public class OnlinerTimeOfDayShadowDisplayView : RenderableComponentBase | name | description | | --- | --- | | [OnlinerTimeOfDayShadowDisplayView](OnlinerTimeOfDayShadowDisplayView/OnlinerTimeOfDayShadowDisplayView.md)() | The default constructor. | -| [Onliner](OnlinerTimeOfDayShadowDisplayView/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](OnlinerTimeOfDayShadowDisplayView/BuildRenderTree.md)(…) | | -| override [OnInitialized](OnlinerTimeOfDayShadowDisplayView/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [TemplateBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md new file mode 100644 index 00000000..9f25190e --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md @@ -0,0 +1,27 @@ +# TemplateBaseShadow<T> class + +```csharp +public class TemplateBaseShadow : RenderableComponentBase +``` + +## Public Members + +| name | description | +| --- | --- | +| [TemplateBaseShadow](TemplateBaseShadow-1/TemplateBaseShadow.md)() | The default constructor. | +| [IsReadOnly](TemplateBaseShadow-1/IsReadOnly.md) { get; set; } | | +| [Onliner](TemplateBaseShadow-1/Onliner.md) { get; set; } | | + +## Protected Members + +| name | description | +| --- | --- | +| override [BuildRenderTree](TemplateBaseShadow-1/BuildRenderTree.md)(…) | | +| override [OnInitialized](TemplateBaseShadow-1/OnInitialized.md)() | | + +## See Also + +* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow](../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/BuildRenderTree.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/BuildRenderTree.md new file mode 100644 index 00000000..598ddaae --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/BuildRenderTree.md @@ -0,0 +1,12 @@ +# TemplateBaseShadow<T>.BuildRenderTree method + +```csharp +protected override void BuildRenderTree(RenderTreeBuilder __builder) +``` + +## See Also + +* class [TemplateBaseShadow<T>](../TemplateBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/IsReadOnly.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/IsReadOnly.md new file mode 100644 index 00000000..8bf9fc8d --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/IsReadOnly.md @@ -0,0 +1,12 @@ +# TemplateBaseShadow<T>.IsReadOnly property + +```csharp +public bool IsReadOnly { get; set; } +``` + +## See Also + +* class [TemplateBaseShadow<T>](../TemplateBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/OnInitialized.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/OnInitialized.md new file mode 100644 index 00000000..191a8573 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/OnInitialized.md @@ -0,0 +1,12 @@ +# TemplateBaseShadow<T>.OnInitialized method + +```csharp +protected override void OnInitialized() +``` + +## See Also + +* class [TemplateBaseShadow<T>](../TemplateBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/Onliner.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/Onliner.md new file mode 100644 index 00000000..6b067816 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/Onliner.md @@ -0,0 +1,12 @@ +# TemplateBaseShadow<T>.Onliner property + +```csharp +public OnlinerBase Onliner { get; set; } +``` + +## See Also + +* class [TemplateBaseShadow<T>](../TemplateBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/TemplateBaseShadow.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/TemplateBaseShadow.md new file mode 100644 index 00000000..b9a95abf --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1/TemplateBaseShadow.md @@ -0,0 +1,14 @@ +# TemplateBaseShadow<T> constructor + +The default constructor. + +```csharp +public TemplateBaseShadow() +``` + +## See Also + +* class [TemplateBaseShadow<T>](../TemplateBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Base.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Control/EnumeratorContainerControlView-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Control/EnumeratorContainerControlView-1.md index 278ed006..c1575896 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Control/EnumeratorContainerControlView-1.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Control/EnumeratorContainerControlView-1.md @@ -1,7 +1,7 @@ # EnumeratorContainerControlView<T> class ```csharp -public class EnumeratorContainerControlView : RenderableComponentBase +public class EnumeratorContainerControlView : EnumeratorsBaseOnline ``` ## Public Members @@ -9,21 +9,16 @@ public class EnumeratorContainerControlView : RenderableComponentBase | name | description | | --- | --- | | [EnumeratorContainerControlView](EnumeratorContainerControlView-1/EnumeratorContainerControlView.md)() | The default constructor. | -| [EnumDiscriminatorAttribute](EnumeratorContainerControlView-1/EnumDiscriminatorAttribute.md) { get; set; } | | -| [EnumToIntConverter](EnumeratorContainerControlView-1/EnumToIntConverter.md) { get; set; } | | -| [Names](EnumeratorContainerControlView-1/Names.md) { get; set; } | | -| [Onliner](EnumeratorContainerControlView-1/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](EnumeratorContainerControlView-1/BuildRenderTree.md)(…) | | -| override [OnInitialized](EnumeratorContainerControlView-1/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [EnumeratorsBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Display/EnumeratorContainerDisplayView-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Display/EnumeratorContainerDisplayView-1.md index 1b5369af..9693ce24 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Display/EnumeratorContainerDisplayView-1.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Display/EnumeratorContainerDisplayView-1.md @@ -1,7 +1,7 @@ # EnumeratorContainerDisplayView<T> class ```csharp -public class EnumeratorContainerDisplayView : RenderableComponentBase +public class EnumeratorContainerDisplayView : EnumeratorsBaseOnline ``` ## Public Members @@ -9,20 +9,16 @@ public class EnumeratorContainerDisplayView : RenderableComponentBase | name | description | | --- | --- | | [EnumeratorContainerDisplayView](EnumeratorContainerDisplayView-1/EnumeratorContainerDisplayView.md)() | The default constructor. | -| [EnumDiscriminatorAttribute](EnumeratorContainerDisplayView-1/EnumDiscriminatorAttribute.md) { get; set; } | | -| [EnumToIntConverter](EnumeratorContainerDisplayView-1/EnumToIntConverter.md) { get; set; } | | -| [Onliner](EnumeratorContainerDisplayView-1/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](EnumeratorContainerDisplayView-1/BuildRenderTree.md)(…) | | -| override [OnInitialized](EnumeratorContainerDisplayView-1/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [EnumeratorsBaseOnline<T>](../Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1.md new file mode 100644 index 00000000..032ef73d --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1.md @@ -0,0 +1,32 @@ +# EnumeratorsBaseOnline<T> class + +```csharp +public class EnumeratorsBaseOnline : RenderableComponentBase +``` + +## Public Members + +| name | description | +| --- | --- | +| [EnumeratorsBaseOnline](EnumeratorsBaseOnline-1/EnumeratorsBaseOnline.md)() | The default constructor. | +| [AccessStatus](EnumeratorsBaseOnline-1/AccessStatus.md) { get; set; } | | +| [EnumDiscriminatorAttribute](EnumeratorsBaseOnline-1/EnumDiscriminatorAttribute.md) { get; set; } | | +| [EnumToIntConverter](EnumeratorsBaseOnline-1/EnumToIntConverter.md) { get; set; } | | +| [IsReadOnly](EnumeratorsBaseOnline-1/IsReadOnly.md) { get; set; } | | +| [Names](EnumeratorsBaseOnline-1/Names.md) { get; set; } | | +| [Onliner](EnumeratorsBaseOnline-1/Onliner.md) { get; set; } | | + +## Protected Members + +| name | description | +| --- | --- | +| [Value](EnumeratorsBaseOnline-1/Value.md) { get; set; } | | +| override [BuildRenderTree](EnumeratorsBaseOnline-1/BuildRenderTree.md)(…) | | +| override [OnInitialized](EnumeratorsBaseOnline-1/OnInitialized.md)() | | + +## See Also + +* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/AccessStatus.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/AccessStatus.md new file mode 100644 index 00000000..d0cfb30a --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/AccessStatus.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.AccessStatus property + +```csharp +public string AccessStatus { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/BuildRenderTree.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/BuildRenderTree.md new file mode 100644 index 00000000..5e851dbf --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/BuildRenderTree.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.BuildRenderTree method + +```csharp +protected override void BuildRenderTree(RenderTreeBuilder __builder) +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumDiscriminatorAttribute.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumDiscriminatorAttribute.md new file mode 100644 index 00000000..0fee8687 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumDiscriminatorAttribute.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.EnumDiscriminatorAttribute property + +```csharp +public EnumeratorDiscriminatorAttribute EnumDiscriminatorAttribute { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumToIntConverter.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumToIntConverter.md new file mode 100644 index 00000000..1933bc77 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumToIntConverter.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.EnumToIntConverter property + +```csharp +public EnumToIntConverter EnumToIntConverter { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumeratorsBaseOnline.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumeratorsBaseOnline.md new file mode 100644 index 00000000..fc15251a --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/EnumeratorsBaseOnline.md @@ -0,0 +1,14 @@ +# EnumeratorsBaseOnline<T> constructor + +The default constructor. + +```csharp +public EnumeratorsBaseOnline() +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/IsReadOnly.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/IsReadOnly.md new file mode 100644 index 00000000..aed4d37b --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/IsReadOnly.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.IsReadOnly property + +```csharp +public bool IsReadOnly { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Names.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Names.md new file mode 100644 index 00000000..6d5a8b35 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Names.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.Names property + +```csharp +public Array Names { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/OnInitialized.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/OnInitialized.md new file mode 100644 index 00000000..b6cbac82 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/OnInitialized.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.OnInitialized method + +```csharp +protected override void OnInitialized() +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Onliner.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Onliner.md new file mode 100644 index 00000000..834cf58c --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Onliner.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.Onliner property + +```csharp +public OnlinerBase Onliner { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Value.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Value.md new file mode 100644 index 00000000..3468f91b --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1/Value.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseOnline<T>.Value property + +```csharp +protected T Value { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseOnline<T>](../EnumeratorsBaseOnline-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Control/EnumeratorContainerShadowControlView-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Control/EnumeratorContainerShadowControlView-1.md index 04a4b249..dc703dd5 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Control/EnumeratorContainerShadowControlView-1.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Control/EnumeratorContainerShadowControlView-1.md @@ -1,7 +1,7 @@ # EnumeratorContainerShadowControlView<T> class ```csharp -public class EnumeratorContainerShadowControlView : RenderableComponentBase +public class EnumeratorContainerShadowControlView : EnumeratorsBaseShadow ``` ## Public Members @@ -9,21 +9,16 @@ public class EnumeratorContainerShadowControlView : RenderableComponentBase | name | description | | --- | --- | | [EnumeratorContainerShadowControlView](EnumeratorContainerShadowControlView-1/EnumeratorContainerShadowControlView.md)() | The default constructor. | -| [EnumDiscriminatorAttribute](EnumeratorContainerShadowControlView-1/EnumDiscriminatorAttribute.md) { get; set; } | | -| [EnumToIntConverter](EnumeratorContainerShadowControlView-1/EnumToIntConverter.md) { get; set; } | | -| [Names](EnumeratorContainerShadowControlView-1/Names.md) { get; set; } | | -| [Onliner](EnumeratorContainerShadowControlView-1/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](EnumeratorContainerShadowControlView-1/BuildRenderTree.md)(…) | | -| override [OnInitialized](EnumeratorContainerShadowControlView-1/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [EnumeratorsBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Control](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Display/EnumeratorContainerShadowDisplayView-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Display/EnumeratorContainerShadowDisplayView-1.md index 9db02fa9..fdc3fd2b 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Display/EnumeratorContainerShadowDisplayView-1.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Display/EnumeratorContainerShadowDisplayView-1.md @@ -1,7 +1,7 @@ # EnumeratorContainerShadowDisplayView<T> class ```csharp -public class EnumeratorContainerShadowDisplayView : RenderableComponentBase +public class EnumeratorContainerShadowDisplayView : EnumeratorsBaseShadow ``` ## Public Members @@ -9,20 +9,16 @@ public class EnumeratorContainerShadowDisplayView : RenderableComponentBase | name | description | | --- | --- | | [EnumeratorContainerShadowDisplayView](EnumeratorContainerShadowDisplayView-1/EnumeratorContainerShadowDisplayView.md)() | The default constructor. | -| [EnumDiscriminatorAttribute](EnumeratorContainerShadowDisplayView-1/EnumDiscriminatorAttribute.md) { get; set; } | | -| [EnumToIntConverter](EnumeratorContainerShadowDisplayView-1/EnumToIntConverter.md) { get; set; } | | -| [Onliner](EnumeratorContainerShadowDisplayView-1/Onliner.md) { get; set; } | | ## Protected Members | name | description | | --- | --- | | override [BuildRenderTree](EnumeratorContainerShadowDisplayView-1/BuildRenderTree.md)(…) | | -| override [OnInitialized](EnumeratorContainerShadowDisplayView-1/OnInitialized.md)() | | ## See Also -* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* class [EnumeratorsBaseShadow<T>](../Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1.md) * namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Display](../Ix.Presentation.Blazor.Controls.md) diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1.md new file mode 100644 index 00000000..df732c7f --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1.md @@ -0,0 +1,31 @@ +# EnumeratorsBaseShadow<T> class + +```csharp +public class EnumeratorsBaseShadow : RenderableComponentBase +``` + +## Public Members + +| name | description | +| --- | --- | +| [EnumeratorsBaseShadow](EnumeratorsBaseShadow-1/EnumeratorsBaseShadow.md)() | The default constructor. | +| [AccessStatus](EnumeratorsBaseShadow-1/AccessStatus.md) { get; set; } | | +| [EnumDiscriminatorAttribute](EnumeratorsBaseShadow-1/EnumDiscriminatorAttribute.md) { get; set; } | | +| [EnumToIntConverter](EnumeratorsBaseShadow-1/EnumToIntConverter.md) { get; set; } | | +| [IsReadOnly](EnumeratorsBaseShadow-1/IsReadOnly.md) { get; set; } | | +| [Names](EnumeratorsBaseShadow-1/Names.md) { get; set; } | | +| [Onliner](EnumeratorsBaseShadow-1/Onliner.md) { get; set; } | | + +## Protected Members + +| name | description | +| --- | --- | +| override [BuildRenderTree](EnumeratorsBaseShadow-1/BuildRenderTree.md)(…) | | +| override [OnInitialized](EnumeratorsBaseShadow-1/OnInitialized.md)() | | + +## See Also + +* class [RenderableComponentBase](../Ix.Presentation.Blazor.Controls.RenderableContent/RenderableComponentBase.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/AccessStatus.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/AccessStatus.md new file mode 100644 index 00000000..7aed20d9 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/AccessStatus.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseShadow<T>.AccessStatus property + +```csharp +public string AccessStatus { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/BuildRenderTree.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/BuildRenderTree.md new file mode 100644 index 00000000..51c1b6e5 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/BuildRenderTree.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseShadow<T>.BuildRenderTree method + +```csharp +protected override void BuildRenderTree(RenderTreeBuilder __builder) +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumDiscriminatorAttribute.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumDiscriminatorAttribute.md new file mode 100644 index 00000000..c7497adf --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumDiscriminatorAttribute.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseShadow<T>.EnumDiscriminatorAttribute property + +```csharp +public EnumeratorDiscriminatorAttribute EnumDiscriminatorAttribute { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumToIntConverter.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumToIntConverter.md new file mode 100644 index 00000000..7cb4b656 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumToIntConverter.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseShadow<T>.EnumToIntConverter property + +```csharp +public EnumToIntConverter EnumToIntConverter { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumeratorsBaseShadow.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumeratorsBaseShadow.md new file mode 100644 index 00000000..ed586c01 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/EnumeratorsBaseShadow.md @@ -0,0 +1,14 @@ +# EnumeratorsBaseShadow<T> constructor + +The default constructor. + +```csharp +public EnumeratorsBaseShadow() +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/IsReadOnly.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/IsReadOnly.md new file mode 100644 index 00000000..bf158d04 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/IsReadOnly.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseShadow<T>.IsReadOnly property + +```csharp +public bool IsReadOnly { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/Names.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/Names.md new file mode 100644 index 00000000..f631eff6 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/Names.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseShadow<T>.Names property + +```csharp +public Array Names { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/OnInitialized.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/OnInitialized.md new file mode 100644 index 00000000..e32859c6 --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/OnInitialized.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseShadow<T>.OnInitialized method + +```csharp +protected override void OnInitialized() +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/Onliner.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/Onliner.md new file mode 100644 index 00000000..ffcee77f --- /dev/null +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1/Onliner.md @@ -0,0 +1,12 @@ +# EnumeratorsBaseShadow<T>.Onliner property + +```csharp +public OnlinerBase Onliner { get; set; } +``` + +## See Also + +* class [EnumeratorsBaseShadow<T>](../EnumeratorsBaseShadow-1.md) +* namespace [Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow](../../Ix.Presentation.Blazor.Controls.md) + + diff --git a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.md b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.md index c07df62f..37ec06b9 100644 --- a/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.md +++ b/docs/api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.md @@ -43,6 +43,12 @@ | class [RenderableContentControl](./Ix.Presentation.Blazor.Controls.RenderableContent/RenderableContentControl.md) | This class implements main logic behind auto-generated UI. | | class [RenderableViewModelComponentBase<T>](./Ix.Presentation.Blazor.Controls.RenderableContent/RenderableViewModelComponentBase-1.md) | Base class for complex componenets with viewmodel support. | +## Ix.Presentation.Blazor.Controls.Templates.Base.Online namespace + +| public type | description | +| --- | --- | +| class [TemplateBaseOnline<T>](./Ix.Presentation.Blazor.Controls.Templates.Base.Online/TemplateBaseOnline-1.md) | | + ## Ix.Presentation.Blazor.Controls.Templates.Base.Online.Control namespace | public type | description | @@ -63,6 +69,12 @@ | class [OnlinerDateTimeDisplayView](./Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerDateTimeDisplayView.md) | | | class [OnlinerTimeOfDayDisplayView](./Ix.Presentation.Blazor.Controls.Templates.Base.Online.Display/OnlinerTimeOfDayDisplayView.md) | | +## Ix.Presentation.Blazor.Controls.Templates.Base.Shadow namespace + +| public type | description | +| --- | --- | +| class [TemplateBaseShadow<T>](./Ix.Presentation.Blazor.Controls.Templates.Base.Shadow/TemplateBaseShadow-1.md) | | + ## Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Control namespace | public type | description | @@ -83,11 +95,11 @@ | class [OnlinerDateTimeShadowDisplayView](./Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerDateTimeShadowDisplayView.md) | | | class [OnlinerTimeOfDayShadowDisplayView](./Ix.Presentation.Blazor.Controls.Templates.Base.Shadow.Display/OnlinerTimeOfDayShadowDisplayView.md) | | -## Ix.Presentation.Blazor.Controls.Templates.Complex namespace +## Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online namespace | public type | description | | --- | --- | -| class [StComplexControlView](./Ix.Presentation.Blazor.Controls.Templates.Complex/StComplexControlView.md) | | +| class [EnumeratorsBaseOnline<T>](./Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online/EnumeratorsBaseOnline-1.md) | | ## Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Control namespace @@ -101,6 +113,12 @@ | --- | --- | | class [EnumeratorContainerDisplayView<T>](./Ix.Presentation.Blazor.Controls.Templates.Enumerators.Online.Display/EnumeratorContainerDisplayView-1.md) | | +## Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow namespace + +| public type | description | +| --- | --- | +| class [EnumeratorsBaseShadow<T>](./Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow/EnumeratorsBaseShadow-1.md) | | + ## Ix.Presentation.Blazor.Controls.Templates.Enumerators.Shadow.Control namespace | public type | description | diff --git a/docs/apis.md b/docs/apis.md index 2015f28b..8a633de7 100644 --- a/docs/apis.md +++ b/docs/apis.md @@ -1,7 +1,7 @@ -* [Connector API](api/Ix.Connector/Ix.Connector.md) -* [Connector.S7.Web API](api/Ix.Connector.Sax.WebAPI/Ix.Connector.Sax.WebAPI.md) -* [Compiler core API](api/IX.Compiler/IX.Compiler.md) -* [Compiler Cs API](api/IX.Compiler.Cs/IX.Compiler.Cs.md) -* [Abstractions API](api/Ix.Abstractions/Ix.Abstractions.md) -* [Presentation Blazor API](api/Ix.Presentation.Blazor/Ix.Presentation.Blazor.md) -* [Presentation Controls Blazor API](api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.md) +* # [Connector API](api/Ix.Connector/Ix.Connector.md) +* # [Connector.S71500 API](api/Ix.Connector.S71500.WebAPI/Ix.Connector.S71500.WebAPI.md) +* # [Compiler core API](api/IX.Compiler/IX.Compiler.md) +* # [Compiler Cs API](api/IX.Compiler.Cs/IX.Compiler.Cs.md) +* # [Abstractions API](api/Ix.Abstractions/Ix.Abstractions.md) +* # [Presentation Blazor API](api/Ix.Presentation.Blazor/Ix.Presentation.Blazor.md) +* # [Presentation Controls Blazor API](api/Ix.Presentation.Blazor.Controls/Ix.Presentation.Blazor.Controls.md) diff --git a/docs/articles/compiler/README.md b/docs/articles/compiler/README.md index a1e93c85..7ce7e6ec 100644 --- a/docs/articles/compiler/README.md +++ b/docs/articles/compiler/README.md @@ -1,5 +1,76 @@ # IX Compiler +**IX Compiler (`ixc`) translates PLC data structures into C# (PLC .NET Twin), which makes the PLC data available in a structured way for any .NET application.** + +### Write PLC code + +~~~iecst +{#ix-attr:[Container(Layout.Stack)]} +{#ix-attr:[Group(Layout.GroupBox)]} +{#ix-set:AttributeName = "Location"} +CLASS GeoLocation + VAR PUBLIC + {#ix-set:AttributeName = "Latitude [°]"} + {#ix-set:AttributeMinimum = -90.0f} + {#ix-set:AttributeMaximum = 90.0f} + Latitude : REAL; + {#ix-set:AttributeName = "Logitude [°]"} + {#ix-set:AttributeMinimum = 0.0f} + {#ix-set:AttributeMaximum = 180.0f} + Longitude : REAL; + {#ix-set:AttributeName = "Altitude [m]"} + Altitude : REAL; + {#ix-set:AttributeName = "Short descriptor"} + Description : STRING[10]; + {#ix-set:AttributeName = "Long descriptor"} + LongDescription : STRING[254]; + END_VAR +END_CLASS +~~~ + +### Compile to get .NET twin + +~~~ C# +using System; +using Ix.Connector; +using Ix.Connector.ValueTypes; +using System.Collections.Generic; + +[Container(Layout.Stack)] +[Group(Layout.GroupBox)] +public partial class GeoLocation : Ix.Connector.ITwinObject +{ + public OnlinerReal Latitude { get; } + + public OnlinerReal Longitude { get; } + + public OnlinerReal Altitude { get; } + + public OnlinerString Description { get; } + + public OnlinerString LongDescription { get; } + + --- truncated ---- +~~~ + +You can then access the data in your .NET application + +### Use in any .NET application + +~~~C# +// Write +await Entry.Plc.weather.GeoLocation.Longitude.SetAsync(10); + +// Read +var longitude = await Entry.Plc.weather.GeoLocation.Longitude.GetAsync(); + +// Bulk read +Entry.Plc.weather.GeoLocation.Read(); + +// Bulk write +Entry.Plc.weather.GeoLocation.Write(); +~~~ + - [Attributes](ATTRIBUTES.md) - [Added members](ADDED_MEMBERS.md) - [Config file](CONFIG_FILE.md) diff --git a/docs/articles/conceptual/Conceptual.md b/docs/articles/conceptual/Conceptual.md new file mode 100644 index 00000000..d2489478 --- /dev/null +++ b/docs/articles/conceptual/Conceptual.md @@ -0,0 +1,80 @@ +# Introduction + +## .NET PLC TWINs + +The core functionality of IX is to provide connectivity between SIMATIC AX based PLC project and .NET PLC TWIN objects. Twin objects replicate consistently the data structures of the PLC program, so that the access path to data members in the PLC program and in .NET environment are the same. + +In the following diagram you can observe that there are two basic components `ixc` which is the compiler that trans-piles the data types into .NET library and `Connector` that provides the connectivity between the object produces by the `ixc` and the PLC. + +![ix-con-plc](assets/ix_ixc_con.svg) + +These two mechanism of the IX technology provide the structured access to any .NET based application. + +See also: +[Compiler](../compiler/README.md) + + +## Automated UI generation + +IX provides a possibilty to automatically render the data from the PLC controller. Rendering engine provides the possibilty to direct the basic layout using attributes directly in the PLC code. There are several types of attributes that can add human readable strings that will be displayed in the UI. + +Following code will be transpiled into TwinObject and rendered as follows: + +~~~SmallTalk +NAMESPACE MeasurementExample + {#ix-attr:[Container(Layout.Wrap)]} + {#ix-attr:[Group(Layout.GroupBox)]} + CLASS PUBLIC Measurement + VAR PUBLIC + {#ix-set:AttributeName = "Minimum"} + Min : REAL; + {#ix-set:AttributeName = "Measured"} + {#ix-attr:[ReadOnly()]} + Acquired : REAL; + {#ix-set:AttributeName = "Maximum"} + Max : REAL; + {#ix-set:AttributeName = "Measurement Result"} + Result : Result; + END_VAR + END_CLASS + + TYPE + Result : INT ( + None := 0, + Passed := 10, + Failed := 20 + ); + END_TYPE + + + CLASS PUBLIC Measurements + VAR PUBLIC + {#ix-attr:[Container(Layout.Stack)]} + {#ix-attr:[Group(Layout.GroupBox)]} + {#ix-set:AttributeName = "Stack panel"} + measurement_stack : Measurement; + + {#ix-attr:[Container(Layout.Wrap)]} + {#ix-attr:[Group(Layout.GroupBox)]} + {#ix-set:AttributeName = "Wrap panel"} + measurement_wrap : Measurement; + + {#ix-attr:[Container(Layout.UniformGrid)]} + {#ix-attr:[Group(Layout.GroupBox)]} + {#ix-set:AttributeName = "Grid"} + measurement_grid : Measurement; + + {#ix-attr:[Container(Layout.Tabs)]} + {#ix-attr:[Group(Layout.GroupBox)]} + {#ix-set:AttributeName = "Tabs"} + measurement_tabs : Measurement; + END_VAR + END_CLASS +END_NAMESPACE +~~~ + +![](assets/2023-02-01-15-29-19.png) + +See also: + +[Blazor rendering](../blazor/README.md) \ No newline at end of file diff --git a/docs/articles/conceptual/assets/2023-02-01-15-29-19.png b/docs/articles/conceptual/assets/2023-02-01-15-29-19.png new file mode 100644 index 00000000..8eac3731 Binary files /dev/null and b/docs/articles/conceptual/assets/2023-02-01-15-29-19.png differ diff --git a/docs/articles/conceptual/assets/ix_conceptual.drawio b/docs/articles/conceptual/assets/ix_conceptual.drawio new file mode 100644 index 00000000..6f80fa0b --- /dev/null +++ b/docs/articles/conceptual/assets/ix_conceptual.drawio @@ -0,0 +1 @@ +7Vjbcto6FP0aHpPxBRvzCIb00EkCA8wk7Zuwha2pbHmECNCv75Yt351Cc6CTOXOekJbuay15a9Mz3ej4haMkfGI+pj1D8489c9IzDGNo9eFHIqcM0bWhnSEBJ77CSmBFfuK8o0L3xMe7WkfBGBUkqYMei2PsiRqGOGeHercto/VVExTgFrDyEG2jL8QXYYY6llbi/2AShPnKuqZaIpR3VsAuRD47VCBz2jNdzpjIStHRxVSyl/OSjXt4p7XYGMexuGTA0CDJt6X582V5F02/3x2mX74u7tQsb4ju1YHVZsUpZ4CzfexjOYneM8eHkAi8SpAnWw8gOmChiKhq3hJKXUYZT8eavoUdvw/4TnD2A1daHGNj2ja0qA1gLvDx3ZPpBV/gNMwiLPgJuqgBjmJYecy0Vf1QCqbnWFgVa6BApEwSFFOXPEJBUfkHtJq3pRXrQOygi9ahPTDRlWi1tE/Ha7/F6+IRZrIprDzecCgFsrSaPY3WM2jQRq/t1vFoNZ204cVy/nXqrltCAYGirkad9ZjFuCGRghAlQQxVDwjHgI+lHAS+LSPVEBHfl8t0yl8aRLuOnrpZ17OvtfXsktO5lZpOS8375+m6Q5kujdcvs+f/rlaW1dBKty7Syr6VVsPzXzQIcIksbik+jmToBSpw7KvixKNotyNeXZ46cfhIxKtqkeVvEr83LFWdHCv9Jqe8EsP5XquV6jBZL8eltXxgM1Yh7Gy9ro+q7Tl4sy2ExX7rydCQFWhhe+7h84FXIB5gcS6StG1SsYHVYYMc45giQd7q2+3yhlphwQgcpHCh2YgA/WHDXtkx1ajq26MxUb9hZ0tvTJTx0JootWpx7I+7N1/uKvbdwWbFv3b14GOuHvyhq7eOh71OV28cS8rySV1dvKNrDwvtSr4eNOz4YV8PzlyQW/va6PB1FilDPY+Us9cifMIiJZ6DSa0jZFJRQijkXIaWBl7NRwKlV4XvPbHnaQuch8GPjNf3lcmTcu6rReYdhFoSBwBYZW3NIOxO7gztnYDMIPpuaXpDQwjcOG7dyi2LReU2aJptu+51grcxvODhPPybLy29KyFp+sTNUmjGL3NLpbuWcPaW5umpfaJ9DC8nQVgMdYpOWHbZYHHAWCIixIW3YGDAUSTPHPvKUEVj9sT731y/NVcRWs+ZS2/G3Ou5q52WtST6/OmubV9wa50uYm+W7uaP/gqx7vx5NX+ctvOhl8VDGxytFt0p1fhx9H2+7Jhl9vwwXz6trnjFPllmNTD+WmYF1fLvvSzkl/+SmtNf \ No newline at end of file diff --git a/docs/articles/conceptual/assets/ix_ixc_con.svg b/docs/articles/conceptual/assets/ix_ixc_con.svg new file mode 100644 index 00000000..65447076 --- /dev/null +++ b/docs/articles/conceptual/assets/ix_ixc_con.svg @@ -0,0 +1,3 @@ + + +
PLC
SIMATIC AX
BASED
PROJECT
PLC...
.NET
PLC
TWIN
.NET...

IXC

IXC compiles PLC data structures into .NET.

IXC...

Connector

Connector provides communication layer between the PLC program and .NET PLC TWIN

Connector...
CONSOLE
WPF
ASP.NET
BLAZOR
WINFORMS
CONSOLE...
Text is not SVG - cannot display
\ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 0822db23..503f33b2 100644 --- a/docs/index.html +++ b/docs/index.html @@ -19,7 +19,7 @@ window.$docsify = { name: 'IX', - repo: 'https://github.com/ix-ax/ix', + repo: 'https://github.com/ix-ax/ix', themeColor: '#010C80', relativePath: true, autoHeader: true, diff --git a/src/sanbox/integration/ix-integration-blazor/Components/MeasurementServiceView.razor b/src/sanbox/integration/ix-integration-blazor/Components/MeasurementServiceView.razor new file mode 100644 index 00000000..7820d5af --- /dev/null +++ b/src/sanbox/integration/ix-integration-blazor/Components/MeasurementServiceView.razor @@ -0,0 +1,16 @@ +@namespace MeasurementExample +@inherits RenderableComplexComponentBase + +

IxComponentServiceView

+ +

IxBool serviceView: @Component.Min.Cyclic

+

IxInt serviceView: @Component.Acquired.Cyclic

+

IxString serviceView: @Component.Max.Cyclic

+ +@code +{ + protected override void OnInitialized() + { + UpdateValuesOnChange(Component); + } +} diff --git a/src/sanbox/integration/ix-integration-blazor/Pages/Measurement.razor b/src/sanbox/integration/ix-integration-blazor/Pages/Measurement.razor new file mode 100644 index 00000000..f3283ed4 --- /dev/null +++ b/src/sanbox/integration/ix-integration-blazor/Pages/Measurement.razor @@ -0,0 +1,94 @@ +@page "/Measurement" + + +Rendering + + + + + +
+
+
+
+ Control - can edit + +
+
+
+
+ Display - cannot edit + +
+
+
+
+ + + +
+
+
+
+ Control - can edit + +
+
+
+
+ Display - cannot edit + +
+
+
+
+ +
+
+
+
+ Control - can edit + +
+
+
+
+ Display - cannot edit + +
+
+
+
+ +
+
+
+
+ Control - can edit + +
+
+
+
+ Display - cannot edit + +
+
+
+
+ + + +@code { + +} diff --git a/src/sanbox/integration/ix-integration-blazor/Shared/NavMenu.razor b/src/sanbox/integration/ix-integration-blazor/Shared/NavMenu.razor index 2acc06ab..6a7320ae 100644 --- a/src/sanbox/integration/ix-integration-blazor/Shared/NavMenu.razor +++ b/src/sanbox/integration/ix-integration-blazor/Shared/NavMenu.razor @@ -20,6 +20,11 @@ AutoRendering +