You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
custom generate encode/decode method for EncodeableObject class
Getting Started
PM> Install-PackageGodSharp.Opc.Ua.Common
Configuration
// Auto Generate ApplicationConfigurationFile// GodSharp.Opc.Ua.OpcUaHelper.GenerateApplicationConfigurationFile = true;// Configuration for UA Discovery ServerApplicationConfiguration?configuration=null;configuration=awaitGodSharp.Opc.Ua.OpcUaHelper.DiscoveryServerConfigurationAsync("GodSharpOpcUaDiscoveryServer","GodSharp Opc Ua Discovery Server",newstring[]{Utils.Format(@"opc.tcp://{0}:4840","localhost")}//,(s, e) => CertificateValidationHandler(configuration, s, e),CertificateValidationHandler);
Instance
// Instance UA Discovery Servervards=newOpcUaDiscoveryServer(TimeSpan.FromSeconds(15));// Start UA Discovery Serverds.Start(configuration);// Start UA Discovery Serverds.Stop();