This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Security.Cryptography.X509Certificates; | |
| using System.Threading.Tasks; | |
| using Opc.Ua; | |
| using Opc.Ua.Client; | |
| using Opc.Ua.Configuration; | |
| namespace OpcUaTestClient | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| using Opc.Ua; | |
| using Opc.Ua.Configuration; | |
| using Opc.Ua.Server; | |
| namespace OpcUaHaTestServer | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading.Tasks; | |
| using System.Timers; | |
| using Opc.Ua; | |
| using Opc.Ua.Configuration; | |
| using Opc.Ua.Server; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ############################################################################ | |
| // Windows C++ Unicode to Multibyte and vice versa routines. Handles BOMS for you. | |
| // By Mark Jacobs and Vadim Berman (c) 2012. | |
| // Uses Borland C++ Builder 5 Compiler. Could be adapted for other compilers fairly easily. | |
| // | |
| // mjwc2mbstr translates unicode to multibyte. | |
| // It reads unicode from "infl" and writes multibyte output to "oufl". | |
| // The Windows code page number is supplied in "cpn". | |
| // | |
| // mjmb2wcstr translates multibyte to unicode UTF-16. |