├── .gitignore ├── Changelog.txt ├── ComIOP ├── Common │ ├── Client │ │ ├── Ae │ │ │ ├── AeAreaBrowser.cs │ │ │ ├── AeAreaState.cs │ │ │ ├── AeConditionState.cs │ │ │ ├── AeEventTypeState.cs │ │ │ ├── AeModelUtils.cs │ │ │ ├── AeParseNodeId.cs │ │ │ ├── AeSourceState.cs │ │ │ ├── AeTypeCache.cs │ │ │ ├── ComAeBrowserClient.cs │ │ │ ├── ComAeClient.cs │ │ │ ├── ComAeClientConfiguration.cs │ │ │ ├── ComAeClientManager.cs │ │ │ ├── ComAeClientNodeManager.cs │ │ │ ├── ComAeEventCallback.cs │ │ │ └── ComAeSubscriptionClient.cs │ │ ├── ComClient.cs │ │ ├── ComClientConfiguration.cs │ │ ├── ComClientManager.cs │ │ ├── ComClientNodeManager.cs │ │ ├── ComConnectionPoint.cs │ │ ├── ComEnumString.cs │ │ ├── ComItemIdParser.cs │ │ ├── ComObject.cs │ │ ├── ComShutdownCallback.cs │ │ ├── ComWrapperServer.cs │ │ ├── ComWrapperServerConfiguration.cs │ │ ├── Da │ │ │ ├── ComDaClient.cs │ │ │ ├── ComDaClientConfiguration.cs │ │ │ ├── ComDaClientManager.cs │ │ │ ├── ComDaClientNodeManager.cs │ │ │ ├── ComDaDataCallback.cs │ │ │ ├── ComDaGroup.cs │ │ │ ├── ComMonitoredItem.cs │ │ │ ├── DaBranchState.cs │ │ │ ├── DaElement.cs │ │ │ ├── DaElementBrowser.cs │ │ │ ├── DaItemState.cs │ │ │ ├── DaModelUtils.cs │ │ │ ├── DaParseNodeId.cs │ │ │ ├── DaProperty.cs │ │ │ ├── DaPropertyState.cs │ │ │ ├── DaValue.cs │ │ │ ├── ReadRequest.cs │ │ │ ├── SubscribeRequest.cs │ │ │ └── WriteRequest.cs │ │ ├── Hda │ │ │ ├── ComHdaBrowserClient.cs │ │ │ ├── ComHdaClient.cs │ │ │ ├── ComHdaClientConfiguration.cs │ │ │ ├── ComHdaClientManager.cs │ │ │ ├── ComHdaClientNodeManager.cs │ │ │ ├── ComHdaServerCallback.cs │ │ │ ├── HdaAttribute.cs │ │ │ ├── HdaAttributeState.cs │ │ │ ├── HdaAttributeValue.cs │ │ │ ├── HdaBranchState.cs │ │ │ ├── HdaElementBrowser.cs │ │ │ ├── HdaHistoryReadRequest.cs │ │ │ ├── HdaItem.cs │ │ │ ├── HdaItemHistoryData.cs │ │ │ ├── HdaItemState.cs │ │ │ ├── HdaModelUtils.cs │ │ │ ├── HdaParsedNodeId.cs │ │ │ ├── HdaReadRequest.cs │ │ │ └── HdaSubscribeRequestManager.cs │ │ ├── ParsedNodeId.cs │ │ └── UserNameValidator.cs │ ├── Common │ │ ├── BuildDesign.bat │ │ ├── ComUtils.cs │ │ ├── ModelDesign.csv │ │ ├── ModelDesign.xml │ │ ├── Namespaces.cs │ │ ├── Opc.Ua.Com.Classes.cs │ │ ├── Opc.Ua.Com.NodeSet.xml │ │ ├── Opc.Ua.Com.PredefinedNodes.uanodes │ │ ├── Opc.Ua.Com.PredefinedNodes.xml │ │ ├── Opc.Ua.Com.Types.bsd │ │ ├── Opc.Ua.Com.Types.xsd │ │ ├── PropertyIds.cs │ │ ├── ResultIds.cs │ │ ├── ServerFactory.cs │ │ └── Specification.cs │ ├── Config │ │ └── DaWrapperConfiguration.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── AssemblyVersionInfo.cs │ ├── Proxy │ │ ├── ComDaGroup.cs │ │ ├── ComDaProxy.cs │ │ ├── ComProxy.cs │ │ ├── DaElement.cs │ │ ├── DaProperty.cs │ │ └── DaValue.cs │ ├── Rcw │ │ ├── AlarmsAndEvents.cs │ │ ├── Common.cs │ │ ├── DataAccess.cs │ │ ├── HistoricalDataAccess.cs │ │ └── Security.cs │ ├── Server │ │ ├── Ae │ │ │ ├── COpcUaAeProxyBrowser.cpp │ │ │ ├── COpcUaAeProxyServer.cpp │ │ │ ├── COpcUaAeProxyServer.h │ │ │ ├── COpcUaAeProxySubscription.cpp │ │ │ ├── ComAeAreaBrowser.cs │ │ │ ├── ComAeCondition.cs │ │ │ ├── ComAeEventNotification.cs │ │ │ ├── ComAeGlobalStructures.cs │ │ │ ├── ComAeProxy.cs │ │ │ ├── ComAeSubscription.cs │ │ │ ├── ComConnectionPointContainer.cs │ │ │ └── ComEnumerator.cs │ │ ├── Ae2 │ │ │ ├── AeConditionManager.cs │ │ │ ├── AeEvent.cs │ │ │ ├── AeEventAttribute.cs │ │ │ ├── AeEventCategory.cs │ │ │ ├── AeEventFilter.cs │ │ │ ├── ComAeBrowser.cs │ │ │ ├── ComAeNamespaceMapper.cs │ │ │ ├── ComAeProxy.cs │ │ │ ├── ComAeProxyConfiguration.cs │ │ │ ├── ComAeSubscription.cs │ │ │ ├── ComAeUtils.cs │ │ │ └── IComAeEventCallback.cs │ │ ├── ComNamespaceMapper.cs │ │ ├── ComProxy.cs │ │ ├── ComProxyConfiguration.cs │ │ ├── Da │ │ │ ├── Com.Da.EnumItemAttributes.cs │ │ │ ├── Com.Da.Group.cs │ │ │ ├── Com.Da.Server.cs │ │ │ ├── ComDaAsyncRequest.cs │ │ │ ├── ComDaBrowseCache.cs │ │ │ ├── ComDaBrowseElement.cs │ │ │ ├── ComDaBrowseManager.cs │ │ │ ├── ComDaCreateItemRequest.cs │ │ │ ├── ComDaGroup.cs │ │ │ ├── ComDaGroupItem.cs │ │ │ ├── ComDaGroupManager.cs │ │ │ ├── ComDaProxy.cs │ │ │ ├── ComDaReadPropertiesRequest.cs │ │ │ ├── DaElement.cs │ │ │ ├── DaProperty.cs │ │ │ ├── DaValue.cs │ │ │ └── IComDaGroupCallback.cs │ │ └── Hda │ │ │ ├── ComHdaBrowser.cs │ │ │ ├── ComHdaItemManager.cs │ │ │ ├── ComHdaProxy.cs │ │ │ ├── ComHdaProxyConfiguration.cs │ │ │ ├── HdaAggregate.cs │ │ │ ├── HdaReadRequest.cs │ │ │ ├── HdaUpdateRequest.cs │ │ │ └── IComHdaDataCallback.cs │ └── UA COM Interop Library.csproj ├── Rcw │ ├── AlarmsAndEvents.cs │ ├── Common.cs │ ├── DataAccess.cs │ ├── HistoricalDataAccess.cs │ ├── OPC COM RCW Library.csproj │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── AssemblyVersionInfo.cs └── Wrapper │ ├── Common │ ├── COpcArray.h │ ├── COpcBrowseElement.cpp │ ├── COpcBrowseElement.h │ ├── COpcCPContainer.cpp │ ├── COpcCPContainer.h │ ├── COpcClassFactory.cpp │ ├── COpcClassFactory.h │ ├── COpcComModule.cpp │ ├── COpcComModule.h │ ├── COpcComObject.h │ ├── COpcCommon.cpp │ ├── COpcCommon.h │ ├── COpcConnectionPoint.cpp │ ├── COpcConnectionPoint.h │ ├── COpcCriticalSection.h │ ├── COpcEnumCPs.cpp │ ├── COpcEnumCPs.h │ ├── COpcEnumString.cpp │ ├── COpcEnumString.h │ ├── COpcEnumUnknown.cpp │ ├── COpcEnumUnknown.h │ ├── COpcFile.cpp │ ├── COpcFile.h │ ├── COpcList.h │ ├── COpcMap.h │ ├── COpcSecurity.cpp │ ├── COpcSecurity.h │ ├── COpcSortedArray.h │ ├── COpcString.cpp │ ├── COpcString.h │ ├── COpcText.cpp │ ├── COpcText.h │ ├── COpcTextReader.cpp │ ├── COpcTextReader.h │ ├── COpcThread.cpp │ ├── COpcThread.h │ ├── COpcThreadPool.cpp │ ├── COpcThreadPool.h │ ├── COpcVariant.cpp │ ├── COpcVariant.h │ ├── COpcXmlAnyType.cpp │ ├── COpcXmlAnyType.h │ ├── COpcXmlAttribute.cpp │ ├── COpcXmlAttribute.h │ ├── COpcXmlDocument.cpp │ ├── COpcXmlDocument.h │ ├── COpcXmlElement.cpp │ ├── COpcXmlElement.h │ ├── OPC Sample Utility Classes (VC8).vcproj │ ├── OPC Sample Utility Classes.vcproj │ ├── OPC Sample Utility Classes.vcproj.SRO.gcr.user │ ├── OPC Sample Utility Classes.vcxproj │ ├── OpcCategory.cpp │ ├── OpcCategory.h │ ├── OpcDefs.h │ ├── OpcMatch.cpp │ ├── OpcMatch.h │ ├── OpcRegistry.cpp │ ├── OpcRegistry.h │ ├── OpcUtils.cpp │ ├── OpcUtils.h │ ├── OpcXmlType.cpp │ ├── OpcXmlType.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ └── resource.h │ ├── Include │ ├── OpcBatchDef.h │ ├── OpcBatchError.h │ ├── OpcBatchProps.h │ ├── OpcCmd.h │ ├── OpcCmd.idl │ ├── OpcCmdError.h │ ├── OpcCmd_i.c │ ├── OpcDx.h │ ├── OpcDx.idl │ ├── OpcDxError.h │ ├── OpcDx_i.c │ ├── OpcEnum.h │ ├── OpcEnum.idl │ ├── OpcEnum_i.c │ ├── OpcErrSec.h │ ├── OpcHda_Error.h │ ├── Version.h │ ├── opcSec.h │ ├── opcSec.idl │ ├── opcSec_i.c │ ├── opc_ae.h │ ├── opc_ae.idl │ ├── opc_ae_i.c │ ├── opcae_er.h │ ├── opcaedef.h │ ├── opcbc.h │ ├── opcbc.idl │ ├── opcbc_i.c │ ├── opccomn.h │ ├── opccomn.idl │ ├── opccomn_i.c │ ├── opcda.h │ ├── opcda.idl │ ├── opcda_i.c │ ├── opcerror.h │ ├── opchda.h │ ├── opchda.idl │ ├── opchda_i.c │ ├── opcua.h │ ├── opcua_attributes.h │ ├── opcua_base64.h │ ├── opcua_binaryencoder.h │ ├── opcua_browsenames.h │ ├── opcua_buffer.h │ ├── opcua_builtintypes.h │ ├── opcua_certificates.h │ ├── opcua_channel.h │ ├── opcua_clientapi.h │ ├── opcua_clientproxy.h │ ├── opcua_config.h │ ├── opcua_connection.h │ ├── opcua_core.h │ ├── opcua_credentials.h │ ├── opcua_crypto.h │ ├── opcua_datetime.h │ ├── opcua_decoder.h │ ├── opcua_encodeableobject.h │ ├── opcua_encoder.h │ ├── opcua_endpoint.h │ ├── opcua_enumeratedtype.h │ ├── opcua_errorhandling.h │ ├── opcua_exclusions.h │ ├── opcua_extensionobject.h │ ├── opcua_guid.h │ ├── opcua_httpconnection_securityproxy.h │ ├── opcua_httplistener_securitystub.h │ ├── opcua_identifiers.h │ ├── opcua_list.h │ ├── opcua_listener.h │ ├── opcua_memory.h │ ├── opcua_messagecontext.h │ ├── opcua_p_compilerinfo.h │ ├── opcua_p_crypto.h │ ├── opcua_p_interface.h │ ├── opcua_p_pki.h │ ├── opcua_p_types.h │ ├── opcua_pki.h │ ├── opcua_platformdefs.h │ ├── opcua_proxystub.h │ ├── opcua_securechannel.h │ ├── opcua_serverapi.h │ ├── opcua_serverstub.h │ ├── opcua_servicetable.h │ ├── opcua_socket.h │ ├── opcua_stackstatuscodes.h │ ├── opcua_statuscodes.h │ ├── opcua_stream.h │ ├── opcua_string.h │ ├── opcua_stringtable.h │ ├── opcua_thread.h │ ├── opcua_threadpool.h │ ├── opcua_timer.h │ ├── opcua_trace.h │ ├── opcua_types.h │ ├── opcua_utilities.h │ ├── opcua_xmldefs.h │ ├── opcua_xmlreader.h │ └── opcua_xmlwriter.h │ ├── ProxyServer │ ├── Ae │ │ ├── COpcEnumStringWrapper.cpp │ │ ├── COpcEnumStringWrapper.h │ │ ├── COpcUaAe2ProxyBrowser.cpp │ │ ├── COpcUaAe2ProxyBrowser.h │ │ ├── COpcUaAe2ProxyEventCallback.cpp │ │ ├── COpcUaAe2ProxyEventCallback.h │ │ ├── COpcUaAe2ProxyServer.cpp │ │ ├── COpcUaAe2ProxyServer.h │ │ ├── COpcUaAe2ProxySubscription.cpp │ │ └── COpcUaAe2ProxySubscription.h │ ├── AssemblyInfo.cpp │ ├── COpcProxyUtils.cpp │ ├── COpcUaProxyUtils.h │ ├── Da │ │ ├── COpcUaDaProxyEnumItem.cpp │ │ ├── COpcUaDaProxyEnumItem.h │ │ ├── COpcUaDaProxyGroup.cpp │ │ ├── COpcUaDaProxyGroup.h │ │ ├── COpcUaDaProxyGroupCallback.cpp │ │ ├── COpcUaDaProxyGroupCallback.h │ │ ├── COpcUaDaProxyServer.cpp │ │ └── COpcUaDaProxyServer.h │ ├── Hda │ │ ├── COpcHdaTime.cpp │ │ ├── COpcHdaTime.h │ │ ├── COpcUaHdaProxyBrowser.cpp │ │ ├── COpcUaHdaProxyBrowser.h │ │ ├── COpcUaHdaProxyDataCallback.cpp │ │ ├── COpcUaHdaProxyDataCallback.h │ │ ├── COpcUaHdaProxyServer.cpp │ │ └── COpcUaHdaProxyServer.h │ ├── InstallConfig.xml │ ├── Main.cpp │ ├── Opc.Ua.ComProxyServer.Config.xml │ ├── OpcUaComProxyServer.cpp │ ├── OpcUaComProxyServer.idl │ ├── ProxyHost.vcproj │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── UA COM Proxy Server.vcproj │ ├── UA COM Proxy Server.vcxproj │ ├── app.config │ ├── app.ico │ ├── app.rc │ └── resource.h │ └── ServerWrapper │ ├── App.config │ ├── App.ico │ ├── ComWrapperServer.cs │ ├── InstallConfig.xml │ ├── Opc.Ua.ComServerWrapper.Config.xml │ ├── Opc.Ua.ComServerWrapper.exe.config │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── AssemblyVersionInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ServerDiagnosticsCtrl.Designer.cs │ ├── ServerDiagnosticsCtrl.cs │ ├── ServerDiagnosticsCtrl.resx │ ├── ServerForm.Designer.cs │ ├── ServerForm.cs │ ├── ServerForm.resx │ ├── UA COM Server Wrapper.csproj │ ├── UA COM Server Wrapper.ncb │ └── app.manifest ├── ConfigurationTool ├── Application │ ├── AccessRuleListCtrl.Designer.cs │ ├── AccessRuleListCtrl.cs │ ├── AccessRuleListCtrl.resx │ ├── AccessRuleListDlg.Designer.cs │ ├── AccessRuleListDlg.cs │ ├── AccessRuleListDlg.resx │ ├── AccountAccessRights.cs │ ├── AccountAccessRightsListCtrl.Designer.cs │ ├── AccountAccessRightsListCtrl.cs │ ├── AccountAccessRightsListCtrl.resx │ ├── App.config │ ├── App.ico │ ├── CertificateToolConfiguration.cs │ ├── CreateAuthorityDlg.Designer.cs │ ├── CreateAuthorityDlg.cs │ ├── CreateAuthorityDlg.resx │ ├── CreateCertificateDlg.Designer.cs │ ├── CreateCertificateDlg.cs │ ├── CreateCertificateDlg.resx │ ├── CreateSslBindingDlg.Designer.cs │ ├── CreateSslBindingDlg.cs │ ├── CreateSslBindingDlg.resx │ ├── CreateSslCertificateDlg.Designer.cs │ ├── CreateSslCertificateDlg.cs │ ├── CreateSslCertificateDlg.resx │ ├── EditComServerDlg.Designer.cs │ ├── EditComServerDlg.cs │ ├── EditComServerDlg.resx │ ├── FirewallAccessDlg.Designer.cs │ ├── FirewallAccessDlg.cs │ ├── FirewallAccessDlg.resx │ ├── HttpAccessRulelListCtrl.Designer.cs │ ├── HttpAccessRulelListCtrl.cs │ ├── HttpAccessRulelListCtrl.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── ManageAccessRulesDlg.Designer.cs │ ├── ManageAccessRulesDlg.cs │ ├── ManageAccessRulesDlg.resx │ ├── ManageSslBindingsDlg.Designer.cs │ ├── ManageSslBindingsDlg.cs │ ├── ManageSslBindingsDlg.resx │ ├── ManageWrappedComServersDlg.Designer.cs │ ├── ManageWrappedComServersDlg.cs │ ├── ManageWrappedComServersDlg.resx │ ├── ManagedApplicationCtrl.Designer.cs │ ├── ManagedApplicationCtrl.cs │ ├── ManagedApplicationCtrl.resx │ ├── ManagedApplicationDlg.Designer.cs │ ├── ManagedApplicationDlg.cs │ ├── ManagedApplicationDlg.resx │ ├── NewEndpointDlg.Designer.cs │ ├── NewEndpointDlg.cs │ ├── NewEndpointDlg.resx │ ├── NewPortDlg.Designer.cs │ ├── NewPortDlg.cs │ ├── NewPortDlg.resx │ ├── ObjectPicker │ │ ├── AccessRuleDlg.Designer.cs │ │ ├── AccessRuleDlg.cs │ │ ├── AccessRuleDlg.resx │ │ ├── ComInterop.cs │ │ ├── DirectoryObject.cs │ │ ├── DirectoryObjectPickerDialog.cs │ │ ├── Licence.txt │ │ ├── Locations.cs │ │ ├── NameTranslator.cs │ │ ├── ObjectTypes.cs │ │ ├── PInvoke.cs │ │ └── StructsFlags.cs │ ├── Opc.Ua.ConfigurationTool.Config.xml │ ├── Opc.Ua.ConfigurationTool.exe.config │ ├── PasswordDlg.Designer.cs │ ├── PasswordDlg.cs │ ├── PasswordDlg.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyVersionInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SelectApplicationDlg.Designer.cs │ ├── SelectApplicationDlg.cs │ ├── SelectApplicationDlg.resx │ ├── SelectComServerDlg.Designer.cs │ ├── SelectComServerDlg.cs │ ├── SelectComServerDlg.resx │ ├── UA Configuration Tool.csproj │ ├── UserAddControl.Designer.cs │ ├── UserAddControl.cs │ ├── UserAddControl.resx │ ├── UserAddForm.Designer.cs │ ├── UserAddForm.cs │ ├── UserAddForm.resx │ ├── UserNameControl.Designer.cs │ ├── UserNameControl.cs │ ├── UserNameControl.resx │ ├── UserNameListForm.Designer.cs │ ├── UserNameListForm.cs │ ├── UserNameListForm.resx │ ├── UserPasswordChangeForm.Designer.cs │ ├── UserPasswordChangeForm.cs │ ├── UserPasswordChangeForm.resx │ ├── UserPasswordControl.Designer.cs │ ├── UserPasswordControl.cs │ ├── UserPasswordControl.resx │ └── app.manifest ├── Bin │ └── extern │ │ ├── Interop.ActiveDs.dll │ │ ├── Interop.NetFwTypeLib.dll │ │ └── Opc.Ua.ComInterop.dll └── Console │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── AssemblyVersionInfo.cs │ └── UA Configuration Console.csproj ├── Dashboard ├── ApplicationState.cs ├── ApplicationUserControl.Designer.cs ├── ApplicationUserControl.cs ├── ApplicationUserControl.resx ├── Bin │ └── extern │ │ ├── Microsoft.VisualBasic.PowerPacks.dll │ │ └── Microsoft.VisualBasic.PowerPacks.xml ├── Information.jpg ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── OPCFoundation.ico ├── OPCFoundation.jpg ├── OPCLogo.bmp ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── OPCLogo.bmp ├── Symbol_Play_2.png ├── WelcomeApplication.csproj └── app.config ├── Help ├── Content.dll │ ├── Interop.NetFwTypeLib.dll │ ├── Opc.Ua.Client.XML │ ├── Opc.Ua.Client.dll │ ├── Opc.Ua.Configuration.XML │ ├── Opc.Ua.Configuration.dll │ ├── Opc.Ua.Core.XML │ ├── Opc.Ua.Core.dll │ ├── Opc.Ua.Server.XML │ └── Opc.Ua.Server.dll ├── Content.maml │ ├── BasicProgramming .aml │ ├── BasicProgramming │ │ ├── Client │ │ │ ├── MonitoredItems.aml │ │ │ ├── Overview.aml │ │ │ ├── Sessions.aml │ │ │ └── Subscriptions .aml │ │ ├── ConfiguringDCOM .aml │ │ └── Server │ │ │ ├── Architecture.aml │ │ │ ├── CoreNodeManager.aml │ │ │ ├── EventManager.aml │ │ │ ├── INodeManager.aml │ │ │ ├── MasterNodeManager.aml │ │ │ ├── MonitoredItem.aml │ │ │ ├── Overview.aml │ │ │ ├── RequestManager.aml │ │ │ ├── ResourceManager.aml │ │ │ ├── SamplingGroupManager.aml │ │ │ ├── ServerInternal.aml │ │ │ ├── Session.aml │ │ │ ├── SessionManager.aml │ │ │ ├── StandardServer.aml │ │ │ ├── Subscription.aml │ │ │ └── SubscriptionManager.aml │ ├── Client.aml │ ├── ConceptualOverview │ │ ├── CandCPlusPlusImplemetaion.aml │ │ ├── ClientsServersAndDiscoveryServers.aml │ │ ├── General References.aml │ │ ├── Glossary.aml │ │ ├── Introduction.aml │ │ ├── Java.aml │ │ ├── Overview.aml │ │ ├── Protocols.aml │ │ ├── Security.aml │ │ ├── WCFProgrammingModel.aml │ │ └── WebServices.aml │ ├── Content.csproj │ ├── DCOMInteroperability.aml │ ├── DCOMInteroperability │ │ ├── AEProxy.aml │ │ ├── AEWrapper.aml │ │ ├── DAProxy.aml │ │ ├── DAWrapper.aml │ │ ├── HDAProxy.aml │ │ └── HDAWrapper.aml │ ├── Deliverables.aml │ ├── Deliverables │ │ └── Installation.aml │ ├── FeatureDetails .aml │ ├── FeedbackAndCommunity.aml │ ├── GettingStartedTutorial.aml │ ├── GuidelinesAndBestPractices.aml │ ├── HowTo │ │ ├── AccessProcesData.aml │ │ ├── ConnectingServer.aml │ │ ├── DesigningAddressSpace.aml │ │ ├── ImplementingAddressSpace.aml │ │ ├── Methods.aml │ │ ├── Subscribing2Events.ppt.aml │ │ └── SubscribingData.aml │ ├── LicenseAgreement.aml │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReleaseNotes.aml │ ├── Samples .aml │ ├── Samples │ │ ├── GettingStarted .aml │ │ ├── HowToManagetheCertificates .aml │ │ ├── Overview.aml │ │ ├── SampleClient.aml │ │ ├── SampleServer.aml │ │ └── ServerTestClient.aml │ ├── ServerToolkit.aml │ ├── Stack.aml │ ├── SystemRequirements .aml │ ├── Tools.aml │ ├── Tools │ │ ├── Opc_Ua_ConfigTool.aml │ │ └── UA Model Designer.aml │ ├── Weclome │ │ └── Contributors.aml │ └── Welcome.aml ├── Graphics │ ├── ClassesintheClientStackAPI.JPG │ ├── ClassesintheClientToolkitAPI.JPG │ ├── ClassesintheServerStackAPI.JPG │ ├── InteractionsbetweenUAApplicationsbuiltwiththeSDK.JPG │ ├── InterfacesintheClientStackAPI.JPG │ ├── InterfacestoObjectswithinaNodeTable.JPG │ ├── OpenSessionFlowDiagram.JPG │ ├── PublishingStateMachine.JPG │ ├── ServerSDKClasses.JPG │ ├── SoftwareInterfacesintheUASDK.JPG │ ├── TheRelationshipbetweenUAApplications.JPG │ └── TheWCFProgrammingModel.JPG ├── RoboHelp │ ├── !Language! │ │ ├── !Language!.fpj │ │ └── en_US │ │ │ ├── OPCF_UA_TechnologySamples.ign │ │ │ ├── OPCF_UA_TechnologySamples.phr │ │ │ ├── OPCF_UA_TechnologySamples.stp │ │ │ ├── OPCF_UA_TechnologySamples.syn │ │ │ ├── RoboHHRE.lng │ │ │ └── en_US.fpj │ ├── !SSL! │ │ ├── Microsoft_HTML_Help │ │ │ └── OPCF_UA_TechnologySamples.chm │ │ ├── WebHelpMembers │ │ │ ├── about_technologyname.htm │ │ │ ├── about_the_opc_foundation.htm │ │ │ ├── acclient_configuration.htm │ │ │ ├── acclientoverview.htm │ │ │ ├── acserver_configuration.htm │ │ │ ├── acserveroverview.htm │ │ │ ├── address_space_navigation.htm │ │ │ ├── alarms_&_conditions_overview.htm │ │ │ ├── bigcoapp.png │ │ │ ├── certificate_generator.htm │ │ │ ├── certification.htm │ │ │ ├── client_development.htm │ │ │ ├── com_interop_components_mergemodule.htm │ │ │ ├── comiop_overview.htm │ │ │ ├── contact_us.htm │ │ │ ├── cshdat_robohelp.htm │ │ │ ├── cshdat_webhelp.htm │ │ │ ├── daclientconfiguration.htm │ │ │ ├── daclientoverview.htm │ │ │ ├── daserverconfiguration.htm │ │ │ ├── daserveroverview.htm │ │ │ ├── data_access_overview.htm │ │ │ ├── default.css │ │ │ ├── developing_ua_applications.htm │ │ │ ├── dotnet_stack_mergemodule.htm │ │ │ ├── ehlpdhtm.js │ │ │ ├── error-badsecurechannelclosed.png │ │ │ ├── favicon.ico │ │ │ ├── firewall_settings.htm │ │ │ ├── genericclientconfiguration.htm │ │ │ ├── genericserverconfiguration.htm │ │ │ ├── getting_started.htm │ │ │ ├── haclientoverview.htm │ │ │ ├── hadata_client_aggregates.htm │ │ │ ├── hadataclient_configuration.htm │ │ │ ├── hadataserver_configuration.htm │ │ │ ├── haeventsclient_configuration.htm │ │ │ ├── haeventsclientoverview.htm │ │ │ ├── haeventsserver_configuration.htm │ │ │ ├── haeventsserveroverview.htm │ │ │ ├── haserveroverview.htm │ │ │ ├── historical_access_overview.htm │ │ │ ├── https_connectivity.htm │ │ │ ├── image10.gif │ │ │ ├── image100.gif │ │ │ ├── image101.gif │ │ │ ├── image102.gif │ │ │ ├── image103.gif │ │ │ ├── image104.gif │ │ │ ├── image105.gif │ │ │ ├── image106.gif │ │ │ ├── image107.gif │ │ │ ├── image108.gif │ │ │ ├── image109.gif │ │ │ ├── image11.gif │ │ │ ├── image110.gif │ │ │ ├── image111.gif │ │ │ ├── image112.gif │ │ │ ├── image113.gif │ │ │ ├── image114.gif │ │ │ ├── image115.gif │ │ │ ├── image116.gif │ │ │ ├── image117.gif │ │ │ ├── image118.gif │ │ │ ├── image119.gif │ │ │ ├── image12.gif │ │ │ ├── image120.gif │ │ │ ├── image121.gif │ │ │ ├── image122.gif │ │ │ ├── image123.gif │ │ │ ├── image124.gif │ │ │ ├── image125.gif │ │ │ ├── image126.gif │ │ │ ├── image127.gif │ │ │ ├── image14.gif │ │ │ ├── image15.gif │ │ │ ├── image16.gif │ │ │ ├── image17.gif │ │ │ ├── image18.gif │ │ │ ├── image19.gif │ │ │ ├── image2.gif │ │ │ ├── image20.gif │ │ │ ├── image21.gif │ │ │ ├── image22.gif │ │ │ ├── image23.gif │ │ │ ├── image24.gif │ │ │ ├── image25.gif │ │ │ ├── image26.gif │ │ │ ├── image27.gif │ │ │ ├── image28.gif │ │ │ ├── image3.gif │ │ │ ├── image30.gif │ │ │ ├── image31.gif │ │ │ ├── image32.gif │ │ │ ├── image33.gif │ │ │ ├── image34.gif │ │ │ ├── image35.gif │ │ │ ├── image36.gif │ │ │ ├── image37.gif │ │ │ ├── image38.gif │ │ │ ├── image39.gif │ │ │ ├── image4.gif │ │ │ ├── image40.gif │ │ │ ├── image41.gif │ │ │ ├── image42.gif │ │ │ ├── image43.gif │ │ │ ├── image45.gif │ │ │ ├── image46.gif │ │ │ ├── image47.gif │ │ │ ├── image48.gif │ │ │ ├── image49.gif │ │ │ ├── image5.gif │ │ │ ├── image50.gif │ │ │ ├── image51.gif │ │ │ ├── image52.gif │ │ │ ├── image53.gif │ │ │ ├── image54.gif │ │ │ ├── image55.gif │ │ │ ├── image56.gif │ │ │ ├── image57.gif │ │ │ ├── image58.gif │ │ │ ├── image59.gif │ │ │ ├── image60.gif │ │ │ ├── image61.gif │ │ │ ├── image62.gif │ │ │ ├── image63.gif │ │ │ ├── image64.gif │ │ │ ├── image65.gif │ │ │ ├── image66.gif │ │ │ ├── image67.gif │ │ │ ├── image68.gif │ │ │ ├── image69.gif │ │ │ ├── image7.gif │ │ │ ├── image70.gif │ │ │ ├── image71.gif │ │ │ ├── image73.gif │ │ │ ├── image74.gif │ │ │ ├── image75.gif │ │ │ ├── image76.gif │ │ │ ├── image77.gif │ │ │ ├── image78.gif │ │ │ ├── image79.gif │ │ │ ├── image8.gif │ │ │ ├── image80.gif │ │ │ ├── image81.gif │ │ │ ├── image82.gif │ │ │ ├── image83.gif │ │ │ ├── image84.gif │ │ │ ├── image86.gif │ │ │ ├── image87.gif │ │ │ ├── image88.gif │ │ │ ├── image89.gif │ │ │ ├── image9.gif │ │ │ ├── image90.gif │ │ │ ├── image91.gif │ │ │ ├── image93.gif │ │ │ ├── image95.gif │ │ │ ├── image96.gif │ │ │ ├── image97.gif │ │ │ ├── image99.gif │ │ │ ├── index.htm │ │ │ ├── index_csh.htm │ │ │ ├── index_rhc.htm │ │ │ ├── launching_the_configuration_tool.htm │ │ │ ├── license_agreement.htm │ │ │ ├── local_discovery_server_(lds).htm │ │ │ ├── local_discovery_server_mergemodule.htm │ │ │ ├── ms_help.css │ │ │ ├── opcf_ua_technologysamples.log │ │ │ ├── opcfoundation.jpg │ │ │ ├── overview.htm │ │ │ ├── overview_-_reference_client.htm │ │ │ ├── overview_redistributables.htm │ │ │ ├── overview_referenceserver.htm │ │ │ ├── overviewsecuringapplications.htm │ │ │ ├── reading_nodes.htm │ │ │ ├── rejectedcertificatesstore.png │ │ │ ├── resource │ │ │ │ └── resource.xml │ │ │ ├── robohhre.lng │ │ │ ├── searchoptions.xml │ │ │ ├── server_development.htm │ │ │ ├── splash.htm │ │ │ ├── ss_btn_related_topics.gif │ │ │ ├── starting___stopping_the_service.htm │ │ │ ├── step_1_-_new_project.htm │ │ │ ├── step_1_-_new_projectclient.htm │ │ │ ├── step_2_-_address_space.htm │ │ │ ├── step_2_-_enhance_user_interface.htm │ │ │ ├── step_3_-_reading_values.htm │ │ │ ├── step_3_-_setup_subscription.htm │ │ │ ├── step_4_-_consuming_datachanges.htm │ │ │ ├── step_4_-_handling_write_requests.htm │ │ │ ├── step_5_-_testing_server.htm │ │ │ ├── step_5_-_testing_your_client.htm │ │ │ ├── step_6_-_deploying_server.htm │ │ │ ├── step_6_-_deploying_your_client.htm │ │ │ ├── subscriptions.htm │ │ │ ├── the_information_screen.htm │ │ │ ├── troubleshooting.htm │ │ │ ├── trusting_applications_built_from_other_frameworks.htm │ │ │ ├── trusting_applications_built_with_.net_api.htm │ │ │ ├── ua_configuration_tool.htm │ │ │ ├── ua_sample_client.htm │ │ │ ├── ua_sample_server.htm │ │ │ ├── uaconfig_http_access_rules.htm │ │ │ ├── uaconfig_manage_application.htm │ │ │ ├── uaconfig_manage_certificates.htm │ │ │ ├── uaconfig_manage_com_interop.htm │ │ │ ├── uaconfig_manage_security.htm │ │ │ ├── uagenericclientdiscovery.htm │ │ │ ├── useful_components.htm │ │ │ ├── using_merge_modules.htm │ │ │ ├── welcome.htm │ │ │ ├── whbrs.xml │ │ │ ├── whcsh_home.htm │ │ │ ├── whcshdata.htm │ │ │ ├── whdata │ │ │ │ ├── whgdata.js │ │ │ │ ├── whglo.htm │ │ │ │ ├── whglo.js │ │ │ │ ├── whidata.js │ │ │ │ ├── whidata0.htm │ │ │ │ ├── whidx.htm │ │ │ │ ├── whidx.js │ │ │ │ ├── whtdata.js │ │ │ │ ├── whtdata0.htm │ │ │ │ ├── whtoc.htm │ │ │ │ └── whtoc.js │ │ │ ├── whestart.ico │ │ │ ├── whfbody.htm │ │ │ ├── whfdhtml.htm │ │ │ ├── whfform.htm │ │ │ ├── whfhost.js │ │ │ ├── whform.js │ │ │ ├── whframes.js │ │ │ ├── whgbody.htm │ │ │ ├── whgdata │ │ │ │ ├── whexpbar.gif │ │ │ │ ├── whlstf0.htm │ │ │ │ ├── whlstf1.htm │ │ │ │ ├── whlstf10.htm │ │ │ │ ├── whlstf11.htm │ │ │ │ ├── whlstf12.htm │ │ │ │ ├── whlstf13.htm │ │ │ │ ├── whlstf14.htm │ │ │ │ ├── whlstf15.htm │ │ │ │ ├── whlstf16.htm │ │ │ │ ├── whlstf17.htm │ │ │ │ ├── whlstf18.htm │ │ │ │ ├── whlstf19.htm │ │ │ │ ├── whlstf2.htm │ │ │ │ ├── whlstf20.htm │ │ │ │ ├── whlstf21.htm │ │ │ │ ├── whlstf22.htm │ │ │ │ ├── whlstf23.htm │ │ │ │ ├── whlstf24.htm │ │ │ │ ├── whlstf25.htm │ │ │ │ ├── whlstf26.htm │ │ │ │ ├── whlstf27.htm │ │ │ │ ├── whlstf28.htm │ │ │ │ ├── whlstf29.htm │ │ │ │ ├── whlstf3.htm │ │ │ │ ├── whlstf30.htm │ │ │ │ ├── whlstf31.htm │ │ │ │ ├── whlstf32.htm │ │ │ │ ├── whlstf33.htm │ │ │ │ ├── whlstf34.htm │ │ │ │ ├── whlstf35.htm │ │ │ │ ├── whlstf36.htm │ │ │ │ ├── whlstf37.htm │ │ │ │ ├── whlstf38.htm │ │ │ │ ├── whlstf39.htm │ │ │ │ ├── whlstf4.htm │ │ │ │ ├── whlstf40.htm │ │ │ │ ├── whlstf41.htm │ │ │ │ ├── whlstf42.htm │ │ │ │ ├── whlstf43.htm │ │ │ │ ├── whlstf44.htm │ │ │ │ ├── whlstf45.htm │ │ │ │ ├── whlstf46.htm │ │ │ │ ├── whlstf47.htm │ │ │ │ ├── whlstf48.htm │ │ │ │ ├── whlstf49.htm │ │ │ │ ├── whlstf5.htm │ │ │ │ ├── whlstf50.htm │ │ │ │ ├── whlstf51.htm │ │ │ │ ├── whlstf52.htm │ │ │ │ ├── whlstf53.htm │ │ │ │ ├── whlstf54.htm │ │ │ │ ├── whlstf55.htm │ │ │ │ ├── whlstf56.htm │ │ │ │ ├── whlstf57.htm │ │ │ │ ├── whlstf58.htm │ │ │ │ ├── whlstf59.htm │ │ │ │ ├── whlstf6.htm │ │ │ │ ├── whlstf60.htm │ │ │ │ ├── whlstf61.htm │ │ │ │ ├── whlstf62.htm │ │ │ │ ├── whlstf63.htm │ │ │ │ ├── whlstf64.htm │ │ │ │ ├── whlstf65.htm │ │ │ │ ├── whlstf66.htm │ │ │ │ ├── whlstf67.htm │ │ │ │ ├── whlstf68.htm │ │ │ │ ├── whlstf69.htm │ │ │ │ ├── whlstf7.htm │ │ │ │ ├── whlstf70.htm │ │ │ │ ├── whlstf71.htm │ │ │ │ ├── whlstf72.htm │ │ │ │ ├── whlstf73.htm │ │ │ │ ├── whlstf74.htm │ │ │ │ ├── whlstf75.htm │ │ │ │ ├── whlstf76.htm │ │ │ │ ├── whlstf77.htm │ │ │ │ ├── whlstf78.htm │ │ │ │ ├── whlstf79.htm │ │ │ │ ├── whlstf8.htm │ │ │ │ ├── whlstf80.htm │ │ │ │ ├── whlstf81.htm │ │ │ │ ├── whlstf82.htm │ │ │ │ ├── whlstf83.htm │ │ │ │ ├── whlstf84.htm │ │ │ │ ├── whlstf85.htm │ │ │ │ ├── whlstf86.htm │ │ │ │ ├── whlstf87.htm │ │ │ │ ├── whlstf88.htm │ │ │ │ ├── whlstf89.htm │ │ │ │ ├── whlstf9.htm │ │ │ │ ├── whlstf90.htm │ │ │ │ ├── whlstfl0.htm │ │ │ │ ├── whlstfl1.htm │ │ │ │ ├── whlstfl10.htm │ │ │ │ ├── whlstfl11.htm │ │ │ │ ├── whlstfl12.htm │ │ │ │ ├── whlstfl13.htm │ │ │ │ ├── whlstfl14.htm │ │ │ │ ├── whlstfl15.htm │ │ │ │ ├── whlstfl16.htm │ │ │ │ ├── whlstfl17.htm │ │ │ │ ├── whlstfl18.htm │ │ │ │ ├── whlstfl19.htm │ │ │ │ ├── whlstfl2.htm │ │ │ │ ├── whlstfl20.htm │ │ │ │ ├── whlstfl21.htm │ │ │ │ ├── whlstfl22.htm │ │ │ │ ├── whlstfl23.htm │ │ │ │ ├── whlstfl24.htm │ │ │ │ ├── whlstfl3.htm │ │ │ │ ├── whlstfl4.htm │ │ │ │ ├── whlstfl5.htm │ │ │ │ ├── whlstfl6.htm │ │ │ │ ├── whlstfl7.htm │ │ │ │ ├── whlstfl8.htm │ │ │ │ ├── whlstfl9.htm │ │ │ │ ├── whlstg0.htm │ │ │ │ ├── whlsti0.htm │ │ │ │ ├── whlstt0.htm │ │ │ │ ├── whlstt1.htm │ │ │ │ ├── whlstt10.htm │ │ │ │ ├── whlstt11.htm │ │ │ │ ├── whlstt12.htm │ │ │ │ ├── whlstt13.htm │ │ │ │ ├── whlstt14.htm │ │ │ │ ├── whlstt15.htm │ │ │ │ ├── whlstt16.htm │ │ │ │ ├── whlstt17.htm │ │ │ │ ├── whlstt18.htm │ │ │ │ ├── whlstt19.htm │ │ │ │ ├── whlstt2.htm │ │ │ │ ├── whlstt20.htm │ │ │ │ ├── whlstt21.htm │ │ │ │ ├── whlstt22.htm │ │ │ │ ├── whlstt23.htm │ │ │ │ ├── whlstt24.htm │ │ │ │ ├── whlstt25.htm │ │ │ │ ├── whlstt26.htm │ │ │ │ ├── whlstt27.htm │ │ │ │ ├── whlstt28.htm │ │ │ │ ├── whlstt29.htm │ │ │ │ ├── whlstt3.htm │ │ │ │ ├── whlstt30.htm │ │ │ │ ├── whlstt4.htm │ │ │ │ ├── whlstt5.htm │ │ │ │ ├── whlstt6.htm │ │ │ │ ├── whlstt7.htm │ │ │ │ ├── whlstt8.htm │ │ │ │ ├── whlstt9.htm │ │ │ │ ├── whnvf30.htm │ │ │ │ ├── whnvf31.htm │ │ │ │ ├── whnvf32.htm │ │ │ │ ├── whnvf33.htm │ │ │ │ ├── whnvl31.htm │ │ │ │ ├── whnvl32.htm │ │ │ │ ├── whnvl33.htm │ │ │ │ ├── whnvp30.htm │ │ │ │ ├── whnvp31.htm │ │ │ │ ├── whnvp32.htm │ │ │ │ ├── whnvp33.htm │ │ │ │ ├── whnvt30.htm │ │ │ │ ├── whnvt31.htm │ │ │ │ ├── whnvt32.htm │ │ │ │ └── whnvt33.htm │ │ │ ├── whgdef.htm │ │ │ ├── whgdhtml.htm │ │ │ ├── whghost.js │ │ │ ├── whhost.js │ │ │ ├── whibody.htm │ │ │ ├── whidhtml.htm │ │ │ ├── whiform.htm │ │ │ ├── whihost.js │ │ │ ├── whlang.js │ │ │ ├── whmozemu.js │ │ │ ├── whmsg.js │ │ │ ├── whnjs.htm │ │ │ ├── whphost.js │ │ │ ├── whproj.htm │ │ │ ├── whproj.js │ │ │ ├── whproj.xml │ │ │ ├── whproxy.js │ │ │ ├── whres.xml │ │ │ ├── whrstart.ico │ │ │ ├── whskin_banner.htm │ │ │ ├── whskin_blank.htm │ │ │ ├── whskin_frmset01.htm │ │ │ ├── whskin_frmset010.htm │ │ │ ├── whskin_homepage.htm │ │ │ ├── whskin_info.htm │ │ │ ├── whskin_mbars.htm │ │ │ ├── whskin_pdhtml.htm │ │ │ ├── whskin_pickup.htm │ │ │ ├── whskin_plist.htm │ │ │ ├── whskin_tbars.htm │ │ │ ├── whskin_tw.htm │ │ │ ├── whst_topics.xml │ │ │ ├── whstart.ico │ │ │ ├── whstart.js │ │ │ ├── whstub.js │ │ │ ├── wht_abge.jpg │ │ │ ├── wht_abgi.jpg │ │ │ ├── wht_abgw.jpg │ │ │ ├── wht_abte.jpg │ │ │ ├── wht_abti.jpg │ │ │ ├── wht_abtw.jpg │ │ │ ├── wht_fts_h.gif │ │ │ ├── wht_fts_n.gif │ │ │ ├── wht_glo_h.gif │ │ │ ├── wht_glo_n.gif │ │ │ ├── wht_go.gif │ │ │ ├── wht_hide.gif │ │ │ ├── wht_idx_h.gif │ │ │ ├── wht_idx_n.gif │ │ │ ├── wht_logo1.gif │ │ │ ├── wht_logo2.gif │ │ │ ├── wht_next.gif │ │ │ ├── wht_next_g.gif │ │ │ ├── wht_prev.gif │ │ │ ├── wht_prev_g.gif │ │ │ ├── wht_spac.gif │ │ │ ├── wht_sync.gif │ │ │ ├── wht_tab0.gif │ │ │ ├── wht_tab1.gif │ │ │ ├── wht_tab2.gif │ │ │ ├── wht_tab3.gif │ │ │ ├── wht_tab4.gif │ │ │ ├── wht_tab5.gif │ │ │ ├── wht_tab6.gif │ │ │ ├── wht_tab7.gif │ │ │ ├── wht_tab8.gif │ │ │ ├── wht_toc1.gif │ │ │ ├── wht_toc2.gif │ │ │ ├── wht_toc3.gif │ │ │ ├── wht_toc4.gif │ │ │ ├── wht_toc_h.gif │ │ │ ├── wht_toc_n.gif │ │ │ ├── wht_ws.gif │ │ │ ├── wht_ws_g.gif │ │ │ ├── whtbar.js │ │ │ ├── whtdhtml.htm │ │ │ ├── whthost.js │ │ │ ├── whtopic.js │ │ │ ├── whutils.js │ │ │ ├── whver.js │ │ │ ├── whxdata │ │ │ │ ├── package_0.xml │ │ │ │ ├── package_1.xml │ │ │ │ ├── package_2.xml │ │ │ │ ├── package_3.xml │ │ │ │ ├── packageindex.xml │ │ │ │ ├── synonym.xml │ │ │ │ ├── topictable_0.xml │ │ │ │ ├── topictableindex.xml │ │ │ │ ├── whfts.xml │ │ │ │ ├── whglo.xml │ │ │ │ ├── whidata0.xml │ │ │ │ ├── whidx.xml │ │ │ │ ├── whtdata0.xml │ │ │ │ └── whtoc.xml │ │ │ ├── writing_to_nodes.htm │ │ │ └── xmlreadhelper.js │ │ └── WebHelpNonMembers │ │ │ ├── about_technologyname.htm │ │ │ ├── about_the_opc_foundation.htm │ │ │ ├── acclient_configuration.htm │ │ │ ├── acclientoverview.htm │ │ │ ├── acserver_configuration.htm │ │ │ ├── acserveroverview.htm │ │ │ ├── address_space_navigation.htm │ │ │ ├── alarms_&_conditions_overview.htm │ │ │ ├── bigcoapp.png │ │ │ ├── certification.htm │ │ │ ├── client_development.htm │ │ │ ├── com_interop_components_mergemodule.htm │ │ │ ├── comiop_overview.htm │ │ │ ├── cshdat_robohelp.htm │ │ │ ├── cshdat_webhelp.htm │ │ │ ├── daclientconfiguration.htm │ │ │ ├── daclientoverview.htm │ │ │ ├── daserverconfiguration.htm │ │ │ ├── daserveroverview.htm │ │ │ ├── data_access_overview.htm │ │ │ ├── default.css │ │ │ ├── developing_ua_applications.htm │ │ │ ├── dotnet_stack_mergemodule.htm │ │ │ ├── ehlpdhtm.js │ │ │ ├── error-badsecurechannelclosed.png │ │ │ ├── firewall_settings.htm │ │ │ ├── genericclientconfiguration.htm │ │ │ ├── genericserverconfiguration.htm │ │ │ ├── getting_started.htm │ │ │ ├── haclientoverview.htm │ │ │ ├── hadata_client_aggregates.htm │ │ │ ├── hadataclient_configuration.htm │ │ │ ├── hadataserver_configuration.htm │ │ │ ├── haeventsclient_configuration.htm │ │ │ ├── haeventsclientoverview.htm │ │ │ ├── haeventsserver_configuration.htm │ │ │ ├── haeventsserveroverview.htm │ │ │ ├── haserveroverview.htm │ │ │ ├── historical_access_overview.htm │ │ │ ├── https_connectivity.htm │ │ │ ├── image10.gif │ │ │ ├── image100.gif │ │ │ ├── image101.gif │ │ │ ├── image102.gif │ │ │ ├── image103.gif │ │ │ ├── image104.gif │ │ │ ├── image105.gif │ │ │ ├── image106.gif │ │ │ ├── image107.gif │ │ │ ├── image108.gif │ │ │ ├── image109.gif │ │ │ ├── image11.gif │ │ │ ├── image110.gif │ │ │ ├── image111.gif │ │ │ ├── image112.gif │ │ │ ├── image113.gif │ │ │ ├── image114.gif │ │ │ ├── image115.gif │ │ │ ├── image116.gif │ │ │ ├── image117.gif │ │ │ ├── image118.gif │ │ │ ├── image119.gif │ │ │ ├── image12.gif │ │ │ ├── image120.gif │ │ │ ├── image121.gif │ │ │ ├── image122.gif │ │ │ ├── image123.gif │ │ │ ├── image124.gif │ │ │ ├── image125.gif │ │ │ ├── image126.gif │ │ │ ├── image127.gif │ │ │ ├── image14.gif │ │ │ ├── image15.gif │ │ │ ├── image16.gif │ │ │ ├── image17.gif │ │ │ ├── image18.gif │ │ │ ├── image19.gif │ │ │ ├── image2.gif │ │ │ ├── image20.gif │ │ │ ├── image21.gif │ │ │ ├── image22.gif │ │ │ ├── image23.gif │ │ │ ├── image24.gif │ │ │ ├── image25.gif │ │ │ ├── image26.gif │ │ │ ├── image27.gif │ │ │ ├── image28.gif │ │ │ ├── image3.gif │ │ │ ├── image30.gif │ │ │ ├── image31.gif │ │ │ ├── image32.gif │ │ │ ├── image33.gif │ │ │ ├── image34.gif │ │ │ ├── image35.gif │ │ │ ├── image36.gif │ │ │ ├── image37.gif │ │ │ ├── image38.gif │ │ │ ├── image39.gif │ │ │ ├── image4.gif │ │ │ ├── image40.gif │ │ │ ├── image41.gif │ │ │ ├── image42.gif │ │ │ ├── image43.gif │ │ │ ├── image45.gif │ │ │ ├── image46.gif │ │ │ ├── image47.gif │ │ │ ├── image48.gif │ │ │ ├── image49.gif │ │ │ ├── image5.gif │ │ │ ├── image50.gif │ │ │ ├── image51.gif │ │ │ ├── image52.gif │ │ │ ├── image53.gif │ │ │ ├── image54.gif │ │ │ ├── image55.gif │ │ │ ├── image56.gif │ │ │ ├── image57.gif │ │ │ ├── image58.gif │ │ │ ├── image59.gif │ │ │ ├── image60.gif │ │ │ ├── image61.gif │ │ │ ├── image62.gif │ │ │ ├── image63.gif │ │ │ ├── image64.gif │ │ │ ├── image65.gif │ │ │ ├── image66.gif │ │ │ ├── image67.gif │ │ │ ├── image68.gif │ │ │ ├── image69.gif │ │ │ ├── image7.gif │ │ │ ├── image70.gif │ │ │ ├── image71.gif │ │ │ ├── image73.gif │ │ │ ├── image74.gif │ │ │ ├── image75.gif │ │ │ ├── image76.gif │ │ │ ├── image77.gif │ │ │ ├── image78.gif │ │ │ ├── image79.gif │ │ │ ├── image8.gif │ │ │ ├── image80.gif │ │ │ ├── image81.gif │ │ │ ├── image82.gif │ │ │ ├── image83.gif │ │ │ ├── image84.gif │ │ │ ├── image86.gif │ │ │ ├── image87.gif │ │ │ ├── image88.gif │ │ │ ├── image89.gif │ │ │ ├── image9.gif │ │ │ ├── image90.gif │ │ │ ├── image91.gif │ │ │ ├── image93.gif │ │ │ ├── image95.gif │ │ │ ├── image96.gif │ │ │ ├── image97.gif │ │ │ ├── image99.gif │ │ │ ├── index.htm │ │ │ ├── index_csh.htm │ │ │ ├── index_rhc.htm │ │ │ ├── launching_the_configuration_tool.htm │ │ │ ├── license_agreement.htm │ │ │ ├── local_discovery_server_(lds).htm │ │ │ ├── local_discovery_server_mergemodule.htm │ │ │ ├── ms_help.css │ │ │ ├── opcf_ua_technologysamples.log │ │ │ ├── opcfoundation.jpg │ │ │ ├── overview.htm │ │ │ ├── overview_-_reference_client.htm │ │ │ ├── overview_redistributables.htm │ │ │ ├── overview_referenceserver.htm │ │ │ ├── overviewsecuringapplications.htm │ │ │ ├── reading_nodes.htm │ │ │ ├── rejectedcertificatesstore.png │ │ │ ├── resource │ │ │ └── resource.xml │ │ │ ├── robohhre.lng │ │ │ ├── searchoptions.xml │ │ │ ├── server_development.htm │ │ │ ├── splash.htm │ │ │ ├── ss_btn_related_topics.gif │ │ │ ├── starting___stopping_the_service.htm │ │ │ ├── step_1_-_new_project.htm │ │ │ ├── step_1_-_new_projectclient.htm │ │ │ ├── step_2_-_address_space.htm │ │ │ ├── step_2_-_enhance_user_interface.htm │ │ │ ├── step_3_-_reading_values.htm │ │ │ ├── step_3_-_setup_subscription.htm │ │ │ ├── step_4_-_consuming_datachanges.htm │ │ │ ├── step_4_-_handling_write_requests.htm │ │ │ ├── step_5_-_testing_server.htm │ │ │ ├── step_5_-_testing_your_client.htm │ │ │ ├── step_6_-_deploying_server.htm │ │ │ ├── step_6_-_deploying_your_client.htm │ │ │ ├── subscriptions.htm │ │ │ ├── the_information_screen.htm │ │ │ ├── troubleshooting.htm │ │ │ ├── trusting_applications_built_from_other_frameworks.htm │ │ │ ├── trusting_applications_built_with_.net_api.htm │ │ │ ├── ua_configuration_tool.htm │ │ │ ├── ua_sample_client.htm │ │ │ ├── ua_sample_server.htm │ │ │ ├── uaconfig_http_access_rules.htm │ │ │ ├── uaconfig_manage_application.htm │ │ │ ├── uaconfig_manage_certificates.htm │ │ │ ├── uaconfig_manage_com_interop.htm │ │ │ ├── uaconfig_manage_security.htm │ │ │ ├── uagenericclientdiscovery.htm │ │ │ ├── useful_components.htm │ │ │ ├── using_merge_modules.htm │ │ │ ├── welcome.htm │ │ │ ├── whbrs.xml │ │ │ ├── whcsh_home.htm │ │ │ ├── whcshdata.htm │ │ │ ├── whdata │ │ │ ├── whgdata.js │ │ │ ├── whglo.htm │ │ │ ├── whglo.js │ │ │ ├── whidata.js │ │ │ ├── whidx.htm │ │ │ ├── whidx.js │ │ │ ├── whtdata.js │ │ │ ├── whtdata0.htm │ │ │ ├── whtoc.htm │ │ │ └── whtoc.js │ │ │ ├── whestart.ico │ │ │ ├── whfbody.htm │ │ │ ├── whfdhtml.htm │ │ │ ├── whfform.htm │ │ │ ├── whfhost.js │ │ │ ├── whform.js │ │ │ ├── whframes.js │ │ │ ├── whgbody.htm │ │ │ ├── whgdata │ │ │ ├── whexpbar.gif │ │ │ ├── whlstf0.htm │ │ │ ├── whlstf1.htm │ │ │ ├── whlstf10.htm │ │ │ ├── whlstf11.htm │ │ │ ├── whlstf12.htm │ │ │ ├── whlstf13.htm │ │ │ ├── whlstf14.htm │ │ │ ├── whlstf15.htm │ │ │ ├── whlstf16.htm │ │ │ ├── whlstf17.htm │ │ │ ├── whlstf18.htm │ │ │ ├── whlstf19.htm │ │ │ ├── whlstf2.htm │ │ │ ├── whlstf20.htm │ │ │ ├── whlstf21.htm │ │ │ ├── whlstf22.htm │ │ │ ├── whlstf23.htm │ │ │ ├── whlstf24.htm │ │ │ ├── whlstf25.htm │ │ │ ├── whlstf26.htm │ │ │ ├── whlstf27.htm │ │ │ ├── whlstf28.htm │ │ │ ├── whlstf29.htm │ │ │ ├── whlstf3.htm │ │ │ ├── whlstf30.htm │ │ │ ├── whlstf31.htm │ │ │ ├── whlstf32.htm │ │ │ ├── whlstf33.htm │ │ │ ├── whlstf34.htm │ │ │ ├── whlstf35.htm │ │ │ ├── whlstf36.htm │ │ │ ├── whlstf37.htm │ │ │ ├── whlstf38.htm │ │ │ ├── whlstf39.htm │ │ │ ├── whlstf4.htm │ │ │ ├── whlstf40.htm │ │ │ ├── whlstf41.htm │ │ │ ├── whlstf42.htm │ │ │ ├── whlstf43.htm │ │ │ ├── whlstf44.htm │ │ │ ├── whlstf45.htm │ │ │ ├── whlstf46.htm │ │ │ ├── whlstf47.htm │ │ │ ├── whlstf48.htm │ │ │ ├── whlstf49.htm │ │ │ ├── whlstf5.htm │ │ │ ├── whlstf50.htm │ │ │ ├── whlstf51.htm │ │ │ ├── whlstf52.htm │ │ │ ├── whlstf53.htm │ │ │ ├── whlstf54.htm │ │ │ ├── whlstf55.htm │ │ │ ├── whlstf56.htm │ │ │ ├── whlstf57.htm │ │ │ ├── whlstf58.htm │ │ │ ├── whlstf59.htm │ │ │ ├── whlstf6.htm │ │ │ ├── whlstf60.htm │ │ │ ├── whlstf61.htm │ │ │ ├── whlstf62.htm │ │ │ ├── whlstf63.htm │ │ │ ├── whlstf64.htm │ │ │ ├── whlstf65.htm │ │ │ ├── whlstf66.htm │ │ │ ├── whlstf67.htm │ │ │ ├── whlstf68.htm │ │ │ ├── whlstf69.htm │ │ │ ├── whlstf7.htm │ │ │ ├── whlstf70.htm │ │ │ ├── whlstf71.htm │ │ │ ├── whlstf72.htm │ │ │ ├── whlstf73.htm │ │ │ ├── whlstf74.htm │ │ │ ├── whlstf75.htm │ │ │ ├── whlstf76.htm │ │ │ ├── whlstf77.htm │ │ │ ├── whlstf78.htm │ │ │ ├── whlstf79.htm │ │ │ ├── whlstf8.htm │ │ │ ├── whlstf80.htm │ │ │ ├── whlstf81.htm │ │ │ ├── whlstf82.htm │ │ │ ├── whlstf83.htm │ │ │ ├── whlstf84.htm │ │ │ ├── whlstf85.htm │ │ │ ├── whlstf86.htm │ │ │ ├── whlstf87.htm │ │ │ ├── whlstf88.htm │ │ │ ├── whlstf89.htm │ │ │ ├── whlstf9.htm │ │ │ ├── whlstfl0.htm │ │ │ ├── whlstfl1.htm │ │ │ ├── whlstfl10.htm │ │ │ ├── whlstfl11.htm │ │ │ ├── whlstfl12.htm │ │ │ ├── whlstfl13.htm │ │ │ ├── whlstfl14.htm │ │ │ ├── whlstfl15.htm │ │ │ ├── whlstfl16.htm │ │ │ ├── whlstfl17.htm │ │ │ ├── whlstfl18.htm │ │ │ ├── whlstfl19.htm │ │ │ ├── whlstfl2.htm │ │ │ ├── whlstfl20.htm │ │ │ ├── whlstfl21.htm │ │ │ ├── whlstfl22.htm │ │ │ ├── whlstfl23.htm │ │ │ ├── whlstfl24.htm │ │ │ ├── whlstfl3.htm │ │ │ ├── whlstfl4.htm │ │ │ ├── whlstfl5.htm │ │ │ ├── whlstfl6.htm │ │ │ ├── whlstfl7.htm │ │ │ ├── whlstfl8.htm │ │ │ ├── whlstfl9.htm │ │ │ ├── whlstg0.htm │ │ │ ├── whlsti0.htm │ │ │ ├── whlstt0.htm │ │ │ ├── whlstt1.htm │ │ │ ├── whlstt10.htm │ │ │ ├── whlstt11.htm │ │ │ ├── whlstt12.htm │ │ │ ├── whlstt13.htm │ │ │ ├── whlstt14.htm │ │ │ ├── whlstt15.htm │ │ │ ├── whlstt16.htm │ │ │ ├── whlstt17.htm │ │ │ ├── whlstt2.htm │ │ │ ├── whlstt3.htm │ │ │ ├── whlstt4.htm │ │ │ ├── whlstt5.htm │ │ │ ├── whlstt6.htm │ │ │ ├── whlstt7.htm │ │ │ ├── whlstt8.htm │ │ │ ├── whlstt9.htm │ │ │ ├── whnvf30.htm │ │ │ ├── whnvf31.htm │ │ │ ├── whnvf32.htm │ │ │ ├── whnvf33.htm │ │ │ ├── whnvl31.htm │ │ │ ├── whnvl32.htm │ │ │ ├── whnvl33.htm │ │ │ ├── whnvp30.htm │ │ │ ├── whnvp31.htm │ │ │ ├── whnvp32.htm │ │ │ ├── whnvp33.htm │ │ │ ├── whnvt30.htm │ │ │ ├── whnvt31.htm │ │ │ ├── whnvt32.htm │ │ │ └── whnvt33.htm │ │ │ ├── whgdef.htm │ │ │ ├── whgdhtml.htm │ │ │ ├── whghost.js │ │ │ ├── whhost.js │ │ │ ├── whibody.htm │ │ │ ├── whidhtml.htm │ │ │ ├── whiform.htm │ │ │ ├── whihost.js │ │ │ ├── whlang.js │ │ │ ├── whmozemu.js │ │ │ ├── whmsg.js │ │ │ ├── whnjs.htm │ │ │ ├── whphost.js │ │ │ ├── whproj.htm │ │ │ ├── whproj.js │ │ │ ├── whproj.xml │ │ │ ├── whproxy.js │ │ │ ├── whres.xml │ │ │ ├── whrstart.ico │ │ │ ├── whskin_banner.htm │ │ │ ├── whskin_blank.htm │ │ │ ├── whskin_frmset01.htm │ │ │ ├── whskin_frmset010.htm │ │ │ ├── whskin_homepage.htm │ │ │ ├── whskin_info.htm │ │ │ ├── whskin_mbars.htm │ │ │ ├── whskin_pdhtml.htm │ │ │ ├── whskin_pickup.htm │ │ │ ├── whskin_plist.htm │ │ │ ├── whskin_tbars.htm │ │ │ ├── whskin_tw.htm │ │ │ ├── whst_topics.xml │ │ │ ├── whstart.ico │ │ │ ├── whstart.js │ │ │ ├── whstub.js │ │ │ ├── wht_abge.jpg │ │ │ ├── wht_abgi.jpg │ │ │ ├── wht_abgw.jpg │ │ │ ├── wht_abte.jpg │ │ │ ├── wht_abti.jpg │ │ │ ├── wht_abtw.jpg │ │ │ ├── wht_fts_h.gif │ │ │ ├── wht_fts_n.gif │ │ │ ├── wht_glo_h.gif │ │ │ ├── wht_glo_n.gif │ │ │ ├── wht_go.gif │ │ │ ├── wht_hide.gif │ │ │ ├── wht_idx_h.gif │ │ │ ├── wht_idx_n.gif │ │ │ ├── wht_logo1.gif │ │ │ ├── wht_logo2.gif │ │ │ ├── wht_next.gif │ │ │ ├── wht_next_g.gif │ │ │ ├── wht_prev.gif │ │ │ ├── wht_prev_g.gif │ │ │ ├── wht_spac.gif │ │ │ ├── wht_sync.gif │ │ │ ├── wht_tab0.gif │ │ │ ├── wht_tab1.gif │ │ │ ├── wht_tab2.gif │ │ │ ├── wht_tab3.gif │ │ │ ├── wht_tab4.gif │ │ │ ├── wht_tab5.gif │ │ │ ├── wht_tab6.gif │ │ │ ├── wht_tab7.gif │ │ │ ├── wht_tab8.gif │ │ │ ├── wht_toc1.gif │ │ │ ├── wht_toc2.gif │ │ │ ├── wht_toc3.gif │ │ │ ├── wht_toc4.gif │ │ │ ├── wht_toc_h.gif │ │ │ ├── wht_toc_n.gif │ │ │ ├── wht_ws.gif │ │ │ ├── wht_ws_g.gif │ │ │ ├── whtbar.js │ │ │ ├── whtdhtml.htm │ │ │ ├── whthost.js │ │ │ ├── whtopic.js │ │ │ ├── whutils.js │ │ │ ├── whver.js │ │ │ ├── whxdata │ │ │ ├── package_0.xml │ │ │ ├── package_1.xml │ │ │ ├── package_2.xml │ │ │ ├── package_3.xml │ │ │ ├── packageindex.xml │ │ │ ├── synonym.xml │ │ │ ├── topictable_0.xml │ │ │ ├── topictableindex.xml │ │ │ ├── whfts.xml │ │ │ ├── whglo.xml │ │ │ ├── whidx.xml │ │ │ ├── whtdata0.xml │ │ │ └── whtoc.xml │ │ │ ├── writing_to_nodes.htm │ │ │ └── xmlreadhelper.js │ ├── !SkinSubFolder! │ │ ├── Beautiful_Vista_Flash │ │ │ ├── Beautiful_Vista_Flash.fhs │ │ │ ├── skin_aboutbox.fla │ │ │ ├── skin_aboutbox.swf │ │ │ ├── skin_background_nav.fla │ │ │ ├── skin_background_nav.swf │ │ │ ├── skin_background_navpane.fla │ │ │ ├── skin_background_navpane.swf │ │ │ ├── skin_background_tb.fla │ │ │ ├── skin_background_tb.swf │ │ │ ├── skin_button_nav_close.fla │ │ │ ├── skin_button_nav_close.swf │ │ │ ├── skin_button_nav_next.fla │ │ │ ├── skin_button_nav_next.swf │ │ │ ├── skin_button_nav_previous.fla │ │ │ ├── skin_button_nav_previous.swf │ │ │ ├── skin_button_nav_sync.fla │ │ │ ├── skin_button_nav_sync.swf │ │ │ ├── skin_button_tb_glossary.fla │ │ │ ├── skin_button_tb_glossary.swf │ │ │ ├── skin_button_tb_index.fla │ │ │ ├── skin_button_tb_index.swf │ │ │ ├── skin_button_tb_poweredby.fla │ │ │ ├── skin_button_tb_poweredby.swf │ │ │ ├── skin_button_tb_print.fla │ │ │ ├── skin_button_tb_print.swf │ │ │ ├── skin_button_tb_search.fla │ │ │ ├── skin_button_tb_search.swf │ │ │ ├── skin_button_tb_toc.fla │ │ │ ├── skin_button_tb_toc.swf │ │ │ ├── skin_glossary.fla │ │ │ ├── skin_glossary.swf │ │ │ ├── skin_index.fla │ │ │ ├── skin_index.swf │ │ │ ├── skin_scrollbar.fla │ │ │ ├── skin_scrollbar.swf │ │ │ ├── skin_search.fla │ │ │ ├── skin_search.swf │ │ │ ├── skin_textfield.fla │ │ │ ├── skin_textfield.swf │ │ │ ├── skin_textnode.fla │ │ │ ├── skin_textnode.swf │ │ │ ├── skin_toc.fla │ │ │ └── skin_toc.swf │ │ ├── Default │ │ │ └── Default.skn │ │ ├── Factory │ │ │ ├── factory.fhs │ │ │ ├── flashhelp_components.swf │ │ │ ├── flashhelp_tooltip_component.swf │ │ │ ├── skin_TOC.fla │ │ │ ├── skin_TOC.swf │ │ │ ├── skin_aboutBox.fla │ │ │ ├── skin_aboutBox.swf │ │ │ ├── skin_background_nav.fla │ │ │ ├── skin_background_nav.swf │ │ │ ├── skin_background_navpane.fla │ │ │ ├── skin_background_navpane.swf │ │ │ ├── skin_background_tb.fla │ │ │ ├── skin_background_tb.swf │ │ │ ├── skin_button_nav_close.fla │ │ │ ├── skin_button_nav_close.swf │ │ │ ├── skin_button_nav_next.fla │ │ │ ├── skin_button_nav_next.swf │ │ │ ├── skin_button_nav_previous.fla │ │ │ ├── skin_button_nav_previous.swf │ │ │ ├── skin_button_nav_sync.fla │ │ │ ├── skin_button_nav_sync.swf │ │ │ ├── skin_button_tb_glossary.fla │ │ │ ├── skin_button_tb_glossary.swf │ │ │ ├── skin_button_tb_index.fla │ │ │ ├── skin_button_tb_index.swf │ │ │ ├── skin_button_tb_poweredBy.fla │ │ │ ├── skin_button_tb_poweredBy.swf │ │ │ ├── skin_button_tb_print.fla │ │ │ ├── skin_button_tb_print.swf │ │ │ ├── skin_button_tb_search.fla │ │ │ ├── skin_button_tb_search.swf │ │ │ ├── skin_button_tb_toc.fla │ │ │ ├── skin_button_tb_toc.swf │ │ │ ├── skin_glossary.fla │ │ │ ├── skin_glossary.swf │ │ │ ├── skin_index.fla │ │ │ ├── skin_index.swf │ │ │ ├── skin_inputfield.fla │ │ │ ├── skin_inputfield.swf │ │ │ ├── skin_scrollbar.fla │ │ │ ├── skin_scrollbar.swf │ │ │ ├── skin_search.fla │ │ │ ├── skin_search.swf │ │ │ ├── skin_textField.fla │ │ │ ├── skin_textField.swf │ │ │ ├── skin_textNode.fla │ │ │ └── skin_textNode.swf │ │ └── eLearning │ │ │ ├── eLearning.fhs │ │ │ ├── skin_aboutbox.fla │ │ │ ├── skin_aboutbox.swf │ │ │ ├── skin_background_nav.fla │ │ │ ├── skin_background_nav.swf │ │ │ ├── skin_background_navpane.fla │ │ │ ├── skin_background_navpane.swf │ │ │ ├── skin_background_tb.fla │ │ │ ├── skin_background_tb.swf │ │ │ ├── skin_button_nav_close.fla │ │ │ ├── skin_button_nav_close.swf │ │ │ ├── skin_button_nav_next.fla │ │ │ ├── skin_button_nav_next.swf │ │ │ ├── skin_button_nav_previous.fla │ │ │ ├── skin_button_nav_previous.swf │ │ │ ├── skin_button_nav_sync.fla │ │ │ ├── skin_button_nav_sync.swf │ │ │ ├── skin_button_tb_glossary.fla │ │ │ ├── skin_button_tb_glossary.swf │ │ │ ├── skin_button_tb_index.fla │ │ │ ├── skin_button_tb_index.swf │ │ │ ├── skin_button_tb_poweredby.fla │ │ │ ├── skin_button_tb_poweredby.swf │ │ │ ├── skin_button_tb_print.fla │ │ │ ├── skin_button_tb_print.swf │ │ │ ├── skin_button_tb_search.fla │ │ │ ├── skin_button_tb_search.swf │ │ │ ├── skin_button_tb_toc.fla │ │ │ ├── skin_button_tb_toc.swf │ │ │ ├── skin_glossary.fla │ │ │ ├── skin_glossary.swf │ │ │ ├── skin_index.fla │ │ │ ├── skin_index.swf │ │ │ ├── skin_scrollbar.fla │ │ │ ├── skin_scrollbar.swf │ │ │ ├── skin_search.fla │ │ │ ├── skin_search.swf │ │ │ ├── skin_textfield.fla │ │ │ ├── skin_textfield.swf │ │ │ ├── skin_textnode.fla │ │ │ ├── skin_textnode.swf │ │ │ ├── skin_toc.fla │ │ │ └── skin_toc.swf │ ├── ACClientOverview.htm │ ├── ACClient_Configuration.htm │ ├── ACServerOverview.htm │ ├── ACServer_Configuration.htm │ ├── About_TechnologyName.htm │ ├── About_the_OPC_Foundation.htm │ ├── Address_Space_Navigation.htm │ ├── Adobe AIR.ssl │ ├── Alarms_&_Conditions_Overview.htm │ ├── AppHelp.glo │ ├── AppHelp.hhc │ ├── AppHelp.hhk │ ├── AppName.hts │ ├── BSSCDefault.h │ ├── BigcoApp.png │ ├── BigcoApp1.png │ ├── BigcoApp2.png │ ├── BigcoApp3.png │ ├── BigcoApp4.png │ ├── BigcoApp5.png │ ├── Box_Arrow_Black_Down.gif │ ├── Box_Arrow_Black_Right.gif │ ├── COM_Interop_Components_MergeModule.htm │ ├── CertificateFilters.hts │ ├── Certificate_Generator.htm │ ├── Certification.htm │ ├── Client_Development.htm │ ├── ComIop_Overview.htm │ ├── Contact_Us.htm │ ├── DAClientConfiguration.htm │ ├── DAClientOverview.htm │ ├── DAServerConfiguration.htm │ ├── DAServerOverview.htm │ ├── Data_Access_Overview.htm │ ├── Developing_UA_Applications.htm │ ├── DotNet_Stack_MergeModule.htm │ ├── Firewall_Settings.htm │ ├── FlashHelp Pro.ssl │ ├── FlashHelp.ssl │ ├── GenericClientConfiguration.htm │ ├── GenericServerConfiguration.htm │ ├── Getting_Started.htm │ ├── HAClientOverview.htm │ ├── HADataClient_Configuration.htm │ ├── HADataServer_Configuration.htm │ ├── HAEventsClientOverview.htm │ ├── HAEventsClient_Configuration.htm │ ├── HAEventsServerOverview.htm │ ├── HAEventsServer_Configuration.htm │ ├── HTTPS_Connectivity.htm │ ├── HaData_Client_Aggregates.htm │ ├── HaServerOverview.htm │ ├── Historical_Access_Overview.htm │ ├── Launching_the_Configuration_Tool.htm │ ├── License_Agreement.htm │ ├── Local_Discovery_Server_(LDS).htm │ ├── Local_Discovery_Server_MergeModule.htm │ ├── MS_Help.css │ ├── Microsoft HTML Help.ssl │ ├── OPCFMasterPage.htt │ ├── OPCF_UA_TechnologySamples.BRS │ ├── OPCF_UA_TechnologySamples.ali │ ├── OPCF_UA_TechnologySamples.cpd │ ├── OPCF_UA_TechnologySamples.hhp │ ├── OPCF_UA_TechnologySamples.ppf │ ├── OPCF_UA_TechnologySamples.pss │ ├── OPCF_UA_TechnologySamples.xpj │ ├── OPCFoundation.jpg │ ├── Overview.htm │ ├── OverviewSecuringApplications.htm │ ├── Overview_-_Reference_Client.htm │ ├── Overview_redistributables.htm │ ├── Overview_referenceServer.htm │ ├── Printed Documentation.ssl │ ├── Process.htt │ ├── RHExtDocAuxData.apj │ ├── RHFrameDocs.apj │ ├── RHStyleMapping.css │ ├── RHWordDocs.apj │ ├── Reading_Nodes.htm │ ├── Redirector.htt │ ├── SearchOptions.xml │ ├── Server_Development.htm │ ├── SnippetPreview$.htm │ ├── Splash.htm │ ├── Starting___Stopping_the_Service.htm │ ├── Step_1_-_New_Project.htm │ ├── Step_1_-_New_ProjectClient.htm │ ├── Step_2_-_Address_Space.htm │ ├── Step_2_-_Enhance_User_Interface.htm │ ├── Step_3_-_Reading_Values.htm │ ├── Step_3_-_Setup_Subscription.htm │ ├── Step_4_-_Consuming_DataChanges.htm │ ├── Step_4_-_Handling_Write_Requests.htm │ ├── Step_5_-_Testing_Server.htm │ ├── Step_5_-_Testing_your_Client.htm │ ├── Step_6_-_Deploying_Server.htm │ ├── Step_6_-_Deploying_your_Client.htm │ ├── StorePath.hts │ ├── StoreType.hts │ ├── Subscriptions.htm │ ├── The_Information_Screen.htm │ ├── Troubleshooting.htm │ ├── Trusting_Applications_built_from_other_Frameworks.htm │ ├── Trusting_Applications_built_with_.NET_API.htm │ ├── UA_Configuration_Tool.htm │ ├── UA_Sample_Client.htm │ ├── UA_Sample_Server.htm │ ├── UaConfig_HTTP_Access_Rules.htm │ ├── UaConfig_Manage_Application.htm │ ├── UaConfig_Manage_COM_Interop.htm │ ├── UaConfig_Manage_Certificates.htm │ ├── UaConfig_Manage_Security.htm │ ├── UaGenericClientDiscovery.htm │ ├── Useful_Components.htm │ ├── Using_Merge_Modules.htm │ ├── WebHelp Pro.ssl │ ├── WebHelp.ssl │ ├── WebHelpMembers.ssl │ ├── WebHelpNonMembers.ssl │ ├── Welcome.htm │ ├── WidgetMax.h │ ├── Writing_to_Nodes.htm │ ├── bigcoelearn.png │ ├── default.css │ ├── eHlpDhtm.js │ ├── error-badSecureChannelClosed.PNG │ ├── image1.gif │ ├── image10.gif │ ├── image100.gif │ ├── image101.gif │ ├── image102.gif │ ├── image103.gif │ ├── image104.gif │ ├── image105.gif │ ├── image106.gif │ ├── image107.gif │ ├── image108.gif │ ├── image109.gif │ ├── image11.gif │ ├── image110.gif │ ├── image111.gif │ ├── image112.gif │ ├── image113.gif │ ├── image114.gif │ ├── image115.gif │ ├── image116.gif │ ├── image117.gif │ ├── image118.gif │ ├── image119.gif │ ├── image12.gif │ ├── image120.gif │ ├── image121.gif │ ├── image122.gif │ ├── image123.gif │ ├── image124.gif │ ├── image125.gif │ ├── image126.gif │ ├── image127.gif │ ├── image13.gif │ ├── image14.gif │ ├── image15.gif │ ├── image16.gif │ ├── image17.gif │ ├── image18.gif │ ├── image19.gif │ ├── image2.gif │ ├── image20.gif │ ├── image21.gif │ ├── image22.gif │ ├── image23.gif │ ├── image24.gif │ ├── image25.gif │ ├── image26.gif │ ├── image27.gif │ ├── image28.gif │ ├── image29.gif │ ├── image3.gif │ ├── image30.gif │ ├── image31.gif │ ├── image32.gif │ ├── image33.gif │ ├── image34.gif │ ├── image35.gif │ ├── image36.gif │ ├── image37.gif │ ├── image38.gif │ ├── image39.gif │ ├── image4.gif │ ├── image40.gif │ ├── image41.gif │ ├── image42.gif │ ├── image43.gif │ ├── image44.gif │ ├── image45.gif │ ├── image46.gif │ ├── image47.gif │ ├── image48.gif │ ├── image49.gif │ ├── image5.gif │ ├── image50.gif │ ├── image51.gif │ ├── image52.gif │ ├── image53.gif │ ├── image54.gif │ ├── image55.gif │ ├── image56.gif │ ├── image57.gif │ ├── image58.gif │ ├── image59.gif │ ├── image6.gif │ ├── image60.gif │ ├── image61.gif │ ├── image62.gif │ ├── image63.gif │ ├── image64.gif │ ├── image65.gif │ ├── image66.gif │ ├── image67.gif │ ├── image68.gif │ ├── image69.gif │ ├── image7.gif │ ├── image70.gif │ ├── image71.gif │ ├── image72.gif │ ├── image73.gif │ ├── image74.gif │ ├── image75.gif │ ├── image76.gif │ ├── image77.gif │ ├── image78.gif │ ├── image79.gif │ ├── image8.gif │ ├── image80.gif │ ├── image81.gif │ ├── image82.gif │ ├── image83.gif │ ├── image84.gif │ ├── image85.gif │ ├── image86.gif │ ├── image87.gif │ ├── image88.gif │ ├── image89.gif │ ├── image9.gif │ ├── image90.gif │ ├── image91.gif │ ├── image92.gif │ ├── image93.gif │ ├── image94.gif │ ├── image95.gif │ ├── image96.gif │ ├── image97.gif │ ├── image98.gif │ ├── image99.gif │ ├── printdoclayout.xml │ ├── rejectedCertificatesStore.PNG │ ├── rhakeyword.apj │ ├── rhbag.apj │ ├── rhbuildtag.apj │ ├── rhcolor.apj │ ├── rhfontset.apj │ ├── rhinfotype.apj │ ├── rhkkeyword.apj │ ├── rhlayout.apj │ ├── rhmapfile.apj │ ├── rhpopup.apj │ ├── rhsharedresource.apj │ ├── rhskins.apj │ ├── rhsnippet.apj │ ├── rhtemplate.apj │ ├── rhvariable.apj │ ├── rhwnd.apj │ ├── root.fpj │ └── salesbuilder.css ├── SandcastleMAMLGuide.chm ├── Schemas │ ├── Authoring │ │ ├── __internal.xsd │ │ ├── __internal.xsx │ │ ├── base.xsd │ │ ├── base.xsx │ │ ├── baseConditional.xsd │ │ ├── baseConditional.xsx │ │ ├── block.xsd │ │ ├── block.xsx │ │ ├── blockCommon.xsd │ │ ├── blockSoftware.xsd │ │ ├── blockSoftware.xsx │ │ ├── conditionSet.xsd │ │ ├── conditionSet.xsx │ │ ├── developer.xsd │ │ ├── developer.xsx │ │ ├── developerReference.xsd │ │ ├── developerReference.xsx │ │ ├── developerStructure.xsd │ │ ├── developerStructure.xsx │ │ ├── glossary.xsd │ │ ├── glossary.xsx │ │ ├── hierarchy.xsd │ │ ├── hierarchy.xsx │ │ ├── inline.xsd │ │ ├── inline.xsx │ │ ├── inlineCommon.xsd │ │ ├── inlineCommon.xsx │ │ ├── inlineLinking.xsd │ │ ├── inlineLinking.xsx │ │ ├── inlineSoftware.xsd │ │ ├── inlineSoftware.xsx │ │ ├── inlineUi.xsd │ │ ├── inlineUi.xsx │ │ ├── space.xsd │ │ ├── space.xsx │ │ ├── standardCodes.xsd │ │ ├── standardCodes.xsx │ │ ├── structure.xsd │ │ ├── structure.xsx │ │ ├── structureList.xsd │ │ ├── structureList.xsx │ │ ├── structureMedia.xsd │ │ ├── structureMedia.xsx │ │ ├── structureProcedure.xsd │ │ ├── structureProcedure.xsx │ │ ├── structureTable.xsd │ │ ├── structureTable.xsx │ │ ├── xlink.xsd │ │ └── xlink.xsx │ └── SHFB │ │ ├── Index.aspx │ │ ├── Index.aspx.ReadMe.txt │ │ ├── Index.html │ │ ├── script_manifold.js │ │ └── script_manifold.js.ReadMe.txt ├── SourceDocuments │ ├── OPC License Agreement.rtf │ ├── OPC UA SDK 1.00 Readme.htm │ ├── OPC_UA_SDK_Overview_DRAFT_1.0.doc.zip │ ├── OPC_UA_SDK_Overview_DRAFT_1.02.readme.txt │ ├── UA SDK 1.00.230.1 Readme.txt │ └── UA SDK 1.00.231.1 Readme.txt ├── Templates.dotx │ ├── ConceptualDocument.dotx │ ├── Tempate_Glossary.dotx │ ├── Template_Conceptual.dotx │ ├── Template_ErrorMessage.dotx │ ├── Template_HowTo.dotx │ ├── Template_Orientation.dotx │ ├── Template_Reference.dotx │ ├── Template_ReferenceWithSyntax.dotx │ ├── Template_ReferenceWithoutSyntax.dotx │ ├── Template_SDK_Architecture.dotx │ ├── Template_SDK_Code.dotx │ ├── Template_SDK_Orientation.dotx │ ├── Template_SDK_Scenarios.dotx │ ├── Template_SDK_Summary.dotx │ ├── Template_Sample.dotx │ ├── Template_Trubelshooting.dotx │ ├── Template_User_Interface.dotx │ ├── Template_Walkthrough.dotx │ ├── Template_Whitepaper.dotx │ └── Template_XML.dotx ├── Templates.maml │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Tempate_Glossary.xml │ ├── Template_Conceptual.xml │ ├── Template_ErrorMessage.xml │ ├── Template_HowTo.xml │ ├── Template_Orientation.xml │ ├── Template_Reference.xml │ ├── Template_ReferenceWithSyntax.xml │ ├── Template_ReferenceWithoutSyntax.xml │ ├── Template_SDK_Architecture.xml │ ├── Template_SDK_Code.xml │ ├── Template_SDK_Orientation.xml │ ├── Template_SDK_Scenarios.xml │ ├── Template_SDK_Summary.xml │ ├── Template_Sample.xml │ ├── Template_Trubelshooting.xml │ ├── Template_User_Interface.xml │ ├── Template_Walkthrough.xml │ ├── Template_Wellcome.xml │ ├── Template_Whitepaper.xml │ ├── Template_XML.xml │ └── Templates.csproj ├── UASDKHelp.config ├── UASDKHelp.content ├── UASDKHelp.shfbproj ├── UASDKHelp.tokens ├── VS2008 │ └── Source │ │ ├── Common │ │ ├── UA Client Library │ │ │ ├── DummyClass.cs │ │ │ ├── NamespaceDoc.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── UA Client Library.csproj │ │ ├── UA Core Library │ │ │ ├── DummyClass.cs │ │ │ ├── NamespaceDoc.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── UA Core Library.csproj │ │ ├── UA Schema Library │ │ │ ├── DummyClass.cs │ │ │ ├── NamespaceDoc.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── UA Schema Library.csproj │ │ └── UA Server Library │ │ │ ├── DummyClass.cs │ │ │ ├── NamespaceDoc.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── UA Server Library.csproj │ │ └── UASDKHelp_CodeTemplate.sln ├── VSContent.sln ├── create_tag.cmd └── opcf sdk hELP.url ├── Key └── OPC Key Pair.snk ├── README.md ├── SampleApplications ├── Bin │ └── extern │ │ ├── Interop.ActiveDs.dll │ │ ├── Interop.NetFwTypeLib.dll │ │ └── Opc.Ua.ComInterop.dll ├── CertificateStore │ ├── CAs │ │ ├── certs │ │ │ ├── Client Factory CA [E1A752636E32D217E163E8DF4D5F1772E1E87822].der │ │ │ ├── Client Root CA [4FF82A716DCA38C97D9B02AB511CB90F440CD7D5].der │ │ │ └── Server Factory CA [A94C049B119875969F58C0368C9BDE871D6DD979].der │ │ ├── crl │ │ │ ├── Client Factory CA [E1A752636E32D217E163E8DF4D5F1772E1E87822].crl │ │ │ └── Server Factory CA [A94C049B119875969F58C0368C9BDE871D6DD979].crl │ │ └── private │ │ │ ├── Client Factory CA [E1A752636E32D217E163E8DF4D5F1772E1E87822].pfx │ │ │ ├── Client Root CA [4FF82A716DCA38C97D9B02AB511CB90F440CD7D5].pfx │ │ │ └── Server Factory CA [A94C049B119875969F58C0368C9BDE871D6DD979].pfx │ ├── Client │ │ ├── certs │ │ │ ├── Quickstart Client (Revoked) [2EF1420378E573933F2306498B3D8B3BE29AF6AF].der │ │ │ ├── Quickstart Client [0F424A4C5183AABA4EB1FEBEC5D49EE579E7E423].der │ │ │ └── Server Factory CA [A94C049B119875969F58C0368C9BDE871D6DD979].der │ │ └── private │ │ │ ├── Quickstart Client (Revoked) [2EF1420378E573933F2306498B3D8B3BE29AF6AF].pfx │ │ │ └── Quickstart Client [0F424A4C5183AABA4EB1FEBEC5D49EE579E7E423].pfx │ └── Server │ │ ├── certs │ │ ├── Client Factory CA [E1A752636E32D217E163E8DF4D5F1772E1E87822].der │ │ ├── Quickstart Server (Revoked) [D347C7950C89509B8EDA9F051E662CEAA1F98D26].der │ │ └── Quickstart Server [03C06B6206169C9E3C88D05EEAF1BB46FE5B2E04].der │ │ └── private │ │ ├── Quickstart Server (Revoked) [D347C7950C89509B8EDA9F051E662CEAA1F98D26].pfx │ │ └── Quickstart Server [03C06B6206169C9E3C88D05EEAF1BB46FE5B2E04].pfx ├── Diagnostics Client │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── DefaultServers.xml │ │ ├── Endpoints.cache.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── UA Diagnostic Client.csproj │ │ ├── UpgradeLog.XML │ │ └── UpgradeLog2.XML │ ├── Controls │ │ ├── DiagnosticCtrl.Designer.cs │ │ ├── DiagnosticCtrl.cs │ │ ├── DiagnosticListViewItem.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ServerCapabilitesDlg.Designer.cs │ │ ├── ServerCapabilitesDlg.cs │ │ ├── ServerCapabilitesDlg.resx │ │ ├── ServerDiagnosticsDlg.Designer.cs │ │ ├── ServerDiagnosticsDlg.cs │ │ ├── ServerDiagnosticsDlg.resx │ │ ├── ServerStatusDlg.Designer.cs │ │ ├── ServerStatusDlg.cs │ │ ├── ServerStatusDlg.resx │ │ ├── SessionCtrl.Designer.cs │ │ ├── SessionCtrl.cs │ │ ├── SessionCtrl.resx │ │ ├── SessionDiagnosticsDlg.Designer.cs │ │ ├── SessionDiagnosticsDlg.cs │ │ ├── SessionDiagnosticsDlg.resx │ │ ├── SessionDlg.Designer.cs │ │ ├── SessionDlg.cs │ │ ├── SessionDlg.resx │ │ └── UA Client Diagnostic Controls.csproj │ └── UA Diagnostic Client.sln ├── Include │ ├── OpcBatchDef.h │ ├── OpcBatchError.h │ ├── OpcBatchProps.h │ ├── OpcCmd.h │ ├── OpcCmd.idl │ ├── OpcCmdError.h │ ├── OpcCmd_i.c │ ├── OpcDx.h │ ├── OpcDx.idl │ ├── OpcDxError.h │ ├── OpcDx_i.c │ ├── OpcEnum.h │ ├── OpcEnum.idl │ ├── OpcEnum_i.c │ ├── OpcErrSec.h │ ├── OpcHda_Error.h │ ├── Version.h │ ├── opcSec.h │ ├── opcSec.idl │ ├── opcSec_i.c │ ├── opc_ae.h │ ├── opc_ae.idl │ ├── opc_ae_i.c │ ├── opcae_er.h │ ├── opcaedef.h │ ├── opcbc.h │ ├── opcbc.idl │ ├── opcbc_i.c │ ├── opccomn.h │ ├── opccomn.idl │ ├── opccomn_i.c │ ├── opcda.h │ ├── opcda.idl │ ├── opcda_i.c │ ├── opcerror.h │ ├── opchda.h │ ├── opchda.idl │ ├── opchda_i.c │ ├── opcua.h │ ├── opcua_attributes.h │ ├── opcua_base64.h │ ├── opcua_binaryencoder.h │ ├── opcua_browsenames.h │ ├── opcua_buffer.h │ ├── opcua_builtintypes.h │ ├── opcua_certificates.h │ ├── opcua_channel.h │ ├── opcua_clientapi.h │ ├── opcua_clientproxy.h │ ├── opcua_config.h │ ├── opcua_connection.h │ ├── opcua_core.h │ ├── opcua_credentials.h │ ├── opcua_crypto.h │ ├── opcua_datetime.h │ ├── opcua_decoder.h │ ├── opcua_encodeableobject.h │ ├── opcua_encoder.h │ ├── opcua_endpoint.h │ ├── opcua_enumeratedtype.h │ ├── opcua_errorhandling.h │ ├── opcua_exclusions.h │ ├── opcua_extensionobject.h │ ├── opcua_guid.h │ ├── opcua_httpconnection_securityproxy.h │ ├── opcua_httplistener_securitystub.h │ ├── opcua_identifiers.h │ ├── opcua_list.h │ ├── opcua_listener.h │ ├── opcua_memory.h │ ├── opcua_messagecontext.h │ ├── opcua_p_compilerinfo.h │ ├── opcua_p_crypto.h │ ├── opcua_p_interface.h │ ├── opcua_p_pki.h │ ├── opcua_p_types.h │ ├── opcua_pki.h │ ├── opcua_platformdefs.h │ ├── opcua_proxystub.h │ ├── opcua_securechannel.h │ ├── opcua_serverapi.h │ ├── opcua_serverstub.h │ ├── opcua_servicetable.h │ ├── opcua_socket.h │ ├── opcua_stackstatuscodes.h │ ├── opcua_statuscodes.h │ ├── opcua_stream.h │ ├── opcua_string.h │ ├── opcua_stringtable.h │ ├── opcua_thread.h │ ├── opcua_threadpool.h │ ├── opcua_timer.h │ ├── opcua_trace.h │ ├── opcua_types.h │ ├── opcua_utilities.h │ ├── opcua_xmldefs.h │ ├── opcua_xmlreader.h │ └── opcua_xmlwriter.h ├── SampleLibraries │ ├── Aggregators │ │ ├── Aggregators.sln │ │ ├── Aggregators │ │ │ ├── AggregateState.cs │ │ │ ├── Aggregators.cs │ │ │ ├── AnnotationCountAggregate.cs │ │ │ ├── AverageAggregate.cs │ │ │ ├── CountAggregate.cs │ │ │ ├── DeltaAggregate.cs │ │ │ ├── DurationBadAggregate.cs │ │ │ ├── DurationGoodAggregate.cs │ │ │ ├── DurationInState0Aggregate.cs │ │ │ ├── DurationInState1Aggregate.cs │ │ │ ├── EndAggregate.cs │ │ │ ├── InterpolativeAggregate.cs │ │ │ ├── LocalTestRun.testrunconfig │ │ │ ├── MaximumActualTimeAggregate.cs │ │ │ ├── MaximumAggregate.cs │ │ │ ├── MinimumActualTimeAggregate.cs │ │ │ ├── MinimumAggregate.cs │ │ │ ├── NewAggregateCalculator.cs │ │ │ ├── NewAggregateFilter.cs │ │ │ ├── NumberOfTransitionsAggregate.cs │ │ │ ├── PercentBadAggregate.cs │ │ │ ├── PercentGoodAggregate.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── AssemblyVersionInfo.cs │ │ │ ├── RangeAggregate.cs │ │ │ ├── StartAggregate.cs │ │ │ ├── TimeAverageAggregate.cs │ │ │ ├── TimeSlice.cs │ │ │ ├── TotalAggregate.cs │ │ │ ├── TotalizeAverageAggregate.cs │ │ │ ├── UA Aggregators Library.csproj │ │ │ └── WorstQualityAggregate.cs │ │ └── UnitTest │ │ │ ├── AggregateUnitTest.cs │ │ │ ├── AuthoringTests.txt │ │ │ ├── Helper.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── TestData.xml │ │ │ ├── TestDataConfiguration.cs │ │ │ ├── TestResults │ │ │ ├── AnnotationCountTestResult.xml │ │ │ ├── AverageTestResult.xml │ │ │ ├── BoundingValueTestResult.xml │ │ │ ├── CountTestResult.xml │ │ │ ├── DeltaTestResult.xml │ │ │ ├── DurationBadTestResult.xml │ │ │ ├── DurationGoodTestResult.xml │ │ │ ├── DurationInState0TestResult.xml │ │ │ ├── DurationInState1TestResult.xml │ │ │ ├── EndTestResult.xml │ │ │ ├── InterpolativeTestResult.xml │ │ │ ├── MaxActualTimeTestResult.xml │ │ │ ├── MaxTestResult.xml │ │ │ ├── MinActualTimeTestResult.xml │ │ │ ├── MinTestResult.xml │ │ │ ├── NumberOfTransitionsTestResult.xml │ │ │ ├── PercentBadTestResult.xml │ │ │ ├── PercentGoodTestResult.xml │ │ │ ├── RangeTestResult.xml │ │ │ ├── StartTestResult.xml │ │ │ ├── TimeAverageTestResult.xml │ │ │ ├── TotalTestResult.xml │ │ │ ├── TotalizeAverageTestResult.xml │ │ │ └── WorstQualityTestResult.xml │ │ │ ├── UnitTest.csproj │ │ │ └── app.config │ ├── Client │ │ ├── Browser.cs │ │ ├── DataDictionary.cs │ │ ├── Documentation │ │ │ └── Opc.Ua.Client.cs │ │ ├── GlobalSuppressions.cs │ │ ├── MonitoredItem.cs │ │ ├── MonitoredItemStatus.cs │ │ ├── NodeCache.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyVersionInfo.cs │ │ ├── Session.cs │ │ ├── SessionReconnectHandler.cs │ │ ├── Subscription.cs │ │ └── UA Client Library.csproj │ ├── Configuration │ │ ├── AccountInfo.cs │ │ ├── ApplicationInstance.cs │ │ ├── ConfigUtils.cs │ │ ├── Enum.cs │ │ ├── ExceptionDlg.Designer.cs │ │ ├── ExceptionDlg.cs │ │ ├── ExceptionDlg.resx │ │ ├── HostEnumerator.cs │ │ ├── LocalSecurityPolicy.cs │ │ ├── ManagedApplication.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyVersionInfo.cs │ │ ├── PseudoComServer.cs │ │ ├── Schema │ │ │ ├── InstalledApplication.cs │ │ │ ├── InstalledApplication.xsd │ │ │ └── InstalledApplicationHelper.cs │ │ ├── Service.cs │ │ ├── ServiceInstaller.cs │ │ ├── ServiceManager.cs │ │ ├── UA Configuration Library.csproj │ │ └── UserNameCreator.cs │ ├── Controls │ │ ├── Browse │ │ │ ├── AttrbuteListCtrl.Designer.cs │ │ │ ├── AttributeListCtrl.cs │ │ │ ├── BrowseListCtrl.Designer.cs │ │ │ ├── BrowseListCtrl.cs │ │ │ ├── BrowseTreeCtrl.Designer.cs │ │ │ ├── BrowseTreeCtrl.cs │ │ │ ├── BrowseTreeCtrl.resx │ │ │ ├── NodeListCtrl.Designer.cs │ │ │ ├── NodeListCtrl.cs │ │ │ ├── NodeListCtrl.resx │ │ │ ├── SelectNodesDlg.Designer.cs │ │ │ ├── SelectNodesDlg.cs │ │ │ └── SelectNodesDlg.resx │ │ ├── ClientHeaderBranding.Designer.cs │ │ ├── ClientHeaderBranding.cs │ │ ├── ClientHeaderBranding.resx │ │ ├── ClientUtils.cs │ │ ├── Common (OLD) │ │ │ ├── BaseListCtrl.Designer.cs │ │ │ ├── BaseListCtrl.cs │ │ │ ├── BaseListCtrl.resx │ │ │ ├── BaseTreeCtrl.Designer.cs │ │ │ ├── BaseTreeCtrl.cs │ │ │ ├── BaseTreeCtrl.resx │ │ │ ├── ClipboardHack.cs │ │ │ ├── ComplexValueEditDlg.Designer.cs │ │ │ ├── ComplexValueEditDlg.cs │ │ │ ├── ComplexValueEditDlg.resx │ │ │ ├── DataListCtrl.Designer.cs │ │ │ ├── DataListCtrl.cs │ │ │ ├── DataListCtrl.resx │ │ │ ├── DateTimeValueEditDlg.Designer.cs │ │ │ ├── DateTimeValueEditDlg.cs │ │ │ ├── DateTimeValueEditDlg.resx │ │ │ ├── ExceptionDlg.Designer.cs │ │ │ ├── ExceptionDlg.cs │ │ │ ├── ExceptionDlg.resx │ │ │ ├── GuiUtils.Designer.cs │ │ │ ├── GuiUtils.cs │ │ │ ├── GuiUtils.resx │ │ │ ├── NodeIdCtrl.Designer.cs │ │ │ ├── NodeIdCtrl.cs │ │ │ ├── NodeIdCtrl.resx │ │ │ ├── NodeIdValueEditDlg.Designer.cs │ │ │ ├── NodeIdValueEditDlg.cs │ │ │ ├── NodeIdValueEditDlg.resx │ │ │ ├── NumericValueEditDlg.Designer.cs │ │ │ ├── NumericValueEditDlg.cs │ │ │ ├── NumericValueEditDlg.resx │ │ │ ├── ReferenceTypeCtrl.Designer.cs │ │ │ ├── ReferenceTypeCtrl.cs │ │ │ ├── ReferenceTypeCtrl.resx │ │ │ ├── StringValueEditDlg.Designer.cs │ │ │ ├── StringValueEditDlg.cs │ │ │ └── StringValueEditDlg.resx │ │ ├── Common │ │ │ ├── BrowseNodeCtrl.Designer.cs │ │ │ ├── BrowseNodeCtrl.cs │ │ │ ├── BrowseNodeCtrl.resx │ │ │ ├── Client │ │ │ │ ├── AttrributesListViewCtrl.Designer.cs │ │ │ │ ├── AttrributesListViewCtrl.cs │ │ │ │ ├── AttrributesListViewCtrl.resx │ │ │ │ ├── BrowseNodeCtrl.Designer.cs │ │ │ │ ├── BrowseNodeCtrl.cs │ │ │ │ ├── BrowseNodeCtrl.resx │ │ │ │ ├── BrowseTreeViewCtrl.Designer.cs │ │ │ │ ├── BrowseTreeViewCtrl.cs │ │ │ │ ├── BrowseTreeViewCtrl.resx │ │ │ │ ├── CallRequestDlg.Designer.cs │ │ │ │ ├── CallRequestDlg.cs │ │ │ │ ├── CallRequestDlg.resx │ │ │ │ ├── CallRequestListViewCtrl.Designer.cs │ │ │ │ ├── CallRequestListViewCtrl.cs │ │ │ │ ├── CallRequestListViewCtrl.resx │ │ │ │ ├── ConnectServerCtrl.Designer.cs │ │ │ │ ├── ConnectServerCtrl.cs │ │ │ │ ├── ConnectServerCtrl.resx │ │ │ │ ├── EditAnnotationDlg.Designer.cs │ │ │ │ ├── EditAnnotationDlg.cs │ │ │ │ ├── EditAnnotationDlg.resx │ │ │ │ ├── EditComplexValue2Dlg.Designer.cs │ │ │ │ ├── EditComplexValue2Dlg.cs │ │ │ │ ├── EditComplexValue2Dlg.resx │ │ │ │ ├── EditComplexValueCtrl.Designer.cs │ │ │ │ ├── EditComplexValueCtrl.cs │ │ │ │ ├── EditComplexValueCtrl.resx │ │ │ │ ├── EditComplexValueDlg.Designer.cs │ │ │ │ ├── EditComplexValueDlg.cs │ │ │ │ ├── EditComplexValueDlg.resx │ │ │ │ ├── EditMonitoredItemDlg.Designer.cs │ │ │ │ ├── EditMonitoredItemDlg.cs │ │ │ │ ├── EditMonitoredItemDlg.resx │ │ │ │ ├── EditReadValueIdDlg.Designer.cs │ │ │ │ ├── EditReadValueIdDlg.cs │ │ │ │ ├── EditReadValueIdDlg.resx │ │ │ │ ├── EditSubscriptionDlg.Designer.cs │ │ │ │ ├── EditSubscriptionDlg.cs │ │ │ │ ├── EditSubscriptionDlg.resx │ │ │ │ ├── EditValueCtrl.Designer.cs │ │ │ │ ├── EditValueCtrl.cs │ │ │ │ ├── EditValueCtrl.resx │ │ │ │ ├── EditWriteValueDlg.Designer.cs │ │ │ │ ├── EditWriteValueDlg.cs │ │ │ │ ├── EditWriteValueDlg.resx │ │ │ │ ├── EventFilterListViewCtrl.Designer.cs │ │ │ │ ├── EventFilterListViewCtrl.cs │ │ │ │ ├── EventFilterListViewCtrl.resx │ │ │ │ ├── EventListViewCtrl.Designer.cs │ │ │ │ ├── EventListViewCtrl.cs │ │ │ │ ├── EventListViewCtrl.resx │ │ │ │ ├── GdsDiscoverServersDlg.Designer.cs │ │ │ │ ├── GdsDiscoverServersDlg.cs │ │ │ │ ├── GdsDiscoverServersDlg.resx │ │ │ │ ├── HistoryDataDlg.Designer.cs │ │ │ │ ├── HistoryDataDlg.cs │ │ │ │ ├── HistoryDataDlg.resx │ │ │ │ ├── HistoryDataListView.Designer.cs │ │ │ │ ├── HistoryDataListView.cs │ │ │ │ ├── HistoryDataListView.resx │ │ │ │ ├── HistoryEventCtrl.Designer.cs │ │ │ │ ├── HistoryEventCtrl.cs │ │ │ │ ├── HistoryEventCtrl.resx │ │ │ │ ├── ISessionForm.cs │ │ │ │ ├── ReadRequestDlg.Designer.cs │ │ │ │ ├── ReadRequestDlg.cs │ │ │ │ ├── ReadRequestDlg.resx │ │ │ │ ├── ReadRequestListViewCtrl.Designer.cs │ │ │ │ ├── ReadRequestListViewCtrl.cs │ │ │ │ ├── ReadRequestListViewCtrl.resx │ │ │ │ ├── SelectLocaleDlg.Designer.cs │ │ │ │ ├── SelectLocaleDlg.cs │ │ │ │ ├── SelectLocaleDlg.resx │ │ │ │ ├── SelectNodeCtrl.Designer.cs │ │ │ │ ├── SelectNodeCtrl.cs │ │ │ │ ├── SelectNodeCtrl.resx │ │ │ │ ├── SelectNodeDlg.Designer.cs │ │ │ │ ├── SelectNodeDlg.cs │ │ │ │ ├── SelectNodeDlg.resx │ │ │ │ ├── SetFilterOperatorDlg.Designer.cs │ │ │ │ ├── SetFilterOperatorDlg.cs │ │ │ │ ├── SetFilterOperatorDlg.resx │ │ │ │ ├── SetTypeDlg.Designer.cs │ │ │ │ ├── SetTypeDlg.cs │ │ │ │ ├── SetTypeDlg.resx │ │ │ │ ├── SubscribeDataDlg.Designer.cs │ │ │ │ ├── SubscribeDataDlg.cs │ │ │ │ ├── SubscribeDataDlg.resx │ │ │ │ ├── SubscribeDataListViewCtrl.Designer.cs │ │ │ │ ├── SubscribeDataListViewCtrl.cs │ │ │ │ ├── SubscribeDataListViewCtrl.resx │ │ │ │ ├── SubscribeEventsDlg.Designer.cs │ │ │ │ ├── SubscribeEventsDlg.cs │ │ │ │ ├── SubscribeEventsDlg.resx │ │ │ │ ├── TypeFieldsListViewCtrl.Designer.cs │ │ │ │ ├── TypeFieldsListViewCtrl.cs │ │ │ │ ├── TypeFieldsListViewCtrl.resx │ │ │ │ ├── UserNamePasswordDlg.Designer.cs │ │ │ │ ├── UserNamePasswordDlg.cs │ │ │ │ ├── UserNamePasswordDlg.resx │ │ │ │ ├── ViewEventDetailsDlg.Designer.cs │ │ │ │ ├── ViewEventDetailsDlg.cs │ │ │ │ ├── ViewEventDetailsDlg.resx │ │ │ │ ├── WriteRequestDlg.Designer.cs │ │ │ │ ├── WriteRequestDlg.cs │ │ │ │ ├── WriteRequestDlg.resx │ │ │ │ ├── WriteRequestListViewCtrl.Designer.cs │ │ │ │ ├── WriteRequestListViewCtrl.cs │ │ │ │ └── WriteRequestListViewCtrl.resx │ │ │ ├── ClientUtils.Designer.cs │ │ │ ├── ClientUtils.cs │ │ │ ├── ClientUtils.resx │ │ │ ├── ConnectServerCtrl.Designer.cs │ │ │ ├── ConnectServerCtrl.cs │ │ │ ├── ConnectServerCtrl.resx │ │ │ ├── DiscoverServerDlg.Designer.cs │ │ │ ├── DiscoverServerDlg.cs │ │ │ ├── DiscoverServerDlg.resx │ │ │ ├── DiscoveredServerListCtrl.Designer.cs │ │ │ ├── DiscoveredServerListCtrl.cs │ │ │ ├── DiscoveredServerListCtrl.resx │ │ │ ├── DiscoveredServerListDlg.Designer.cs │ │ │ ├── DiscoveredServerListDlg.cs │ │ │ ├── DiscoveredServerListDlg.resx │ │ │ ├── DiscoveredServerOnNetworkListCtrl.Designer.cs │ │ │ ├── DiscoveredServerOnNetworkListCtrl.cs │ │ │ ├── DiscoveredServerOnNetworkListCtrl.resx │ │ │ ├── DiscoveredServerOnNetworkListDlg.Designer.cs │ │ │ ├── DiscoveredServerOnNetworkListDlg.cs │ │ │ ├── DiscoveredServerOnNetworkListDlg.resx │ │ │ ├── EditAnnotationDlg.Designer.cs │ │ │ ├── EditAnnotationDlg.cs │ │ │ ├── EditAnnotationDlg.resx │ │ │ ├── EditArrayDlg.Designer.cs │ │ │ ├── EditArrayDlg.cs │ │ │ ├── EditArrayDlg.resx │ │ │ ├── EditComplexValueDlg.Designer.cs │ │ │ ├── EditComplexValueDlg.cs │ │ │ ├── EditComplexValueDlg.resx │ │ │ ├── EditDataValueCtrl.Designer.cs │ │ │ ├── EditDataValueCtrl.cs │ │ │ ├── EditDataValueCtrl.resx │ │ │ ├── EditDataValueDlg.Designer.cs │ │ │ ├── EditDataValueDlg.cs │ │ │ ├── EditDataValueDlg.resx │ │ │ ├── EditValueCtrl.Designer.cs │ │ │ ├── EditValueCtrl.cs │ │ │ ├── EditValueCtrl.resx │ │ │ ├── EventListView.Designer.cs │ │ │ ├── EventListView.cs │ │ │ ├── EventListView.resx │ │ │ ├── FilterDeclaration.cs │ │ │ ├── HistoryDataListView.Designer.cs │ │ │ ├── HistoryDataListView.cs │ │ │ ├── HistoryDataListView.resx │ │ │ ├── HostListCtrl.Designer.cs │ │ │ ├── HostListCtrl.cs │ │ │ ├── HostListCtrl.resx │ │ │ ├── HostListDlg.Designer.cs │ │ │ ├── HostListDlg.cs │ │ │ ├── HostListDlg.resx │ │ │ ├── ReferenceListCtrl.Designer.cs │ │ │ ├── ReferenceListCtrl.cs │ │ │ ├── ReferenceListCtrl.resx │ │ │ ├── SelectHostCtrl.Designer.cs │ │ │ ├── SelectHostCtrl.cs │ │ │ ├── SelectHostCtrl.resx │ │ │ ├── SelectLocaleDlg.Designer.cs │ │ │ ├── SelectLocaleDlg.cs │ │ │ ├── SelectLocaleDlg.resx │ │ │ ├── SelectNodeCtrl.Designer.cs │ │ │ ├── SelectNodeCtrl.cs │ │ │ ├── SelectNodeCtrl.resx │ │ │ ├── SelectNodeDlg.Designer.cs │ │ │ ├── SelectNodeDlg.cs │ │ │ ├── SelectNodeDlg.resx │ │ │ ├── ViewEventDetailsDlg.Designer.cs │ │ │ ├── ViewEventDetailsDlg.cs │ │ │ ├── ViewEventDetailsDlg.resx │ │ │ ├── ViewNodeStateDlg.Designer.cs │ │ │ ├── ViewNodeStateDlg.cs │ │ │ └── ViewNodeStateDlg.resx │ │ ├── Configuration │ │ │ ├── CertificateDlg.Designer.cs │ │ │ ├── CertificateDlg.cs │ │ │ ├── CertificateDlg.resx │ │ │ ├── CertificateListCtrl.Designer.cs │ │ │ ├── CertificateListCtrl.cs │ │ │ ├── CertificateListCtrl.resx │ │ │ ├── CertificateListDlg.Designer.cs │ │ │ ├── CertificateListDlg.cs │ │ │ ├── CertificateListDlg.resx │ │ │ ├── CertificateListFilter.cs │ │ │ ├── CertificatePropertiesListCtrl.Designer.cs │ │ │ ├── CertificatePropertiesListCtrl.cs │ │ │ ├── CertificateStoreCtrl.Designer.cs │ │ │ ├── CertificateStoreCtrl.cs │ │ │ ├── CertificateStoreCtrl.resx │ │ │ ├── CertificateStoreDlg.Designer.cs │ │ │ ├── CertificateStoreDlg.cs │ │ │ ├── CertificateStoreDlg.resx │ │ │ ├── CertificateStoreTreeCtrl.Designer.cs │ │ │ ├── CertificateStoreTreeCtrl.cs │ │ │ ├── CertificateStoreTreeCtrl.resx │ │ │ ├── CertificateStoreTreeDlg.Designer.cs │ │ │ ├── CertificateStoreTreeDlg.cs │ │ │ ├── CertificateStoreTreeDlg.resx │ │ │ ├── Common (OLD) │ │ │ │ ├── BaseListCtrl.Designer.cs │ │ │ │ ├── BaseListCtrl.cs │ │ │ │ ├── BaseListCtrl.resx │ │ │ │ ├── BaseTreeCtrl.Designer.cs │ │ │ │ ├── BaseTreeCtrl.cs │ │ │ │ ├── BaseTreeCtrl.resx │ │ │ │ ├── ClipboardHack.cs │ │ │ │ ├── ComplexValueEditDlg.Designer.cs │ │ │ │ ├── ComplexValueEditDlg.cs │ │ │ │ ├── ComplexValueEditDlg.resx │ │ │ │ ├── DataListCtrl.Designer.cs │ │ │ │ ├── DataListCtrl.cs │ │ │ │ ├── DataListCtrl.resx │ │ │ │ ├── DateTimeValueEditDlg.Designer.cs │ │ │ │ ├── DateTimeValueEditDlg.cs │ │ │ │ ├── DateTimeValueEditDlg.resx │ │ │ │ ├── ExceptionDlg.Designer.cs │ │ │ │ ├── ExceptionDlg.cs │ │ │ │ ├── ExceptionDlg.resx │ │ │ │ ├── GuiUtils.Designer.cs │ │ │ │ ├── GuiUtils.cs │ │ │ │ ├── GuiUtils.resx │ │ │ │ ├── NodeIdCtrl.Designer.cs │ │ │ │ ├── NodeIdCtrl.cs │ │ │ │ ├── NodeIdCtrl.resx │ │ │ │ ├── NodeIdValueEditDlg.Designer.cs │ │ │ │ ├── NodeIdValueEditDlg.cs │ │ │ │ ├── NodeIdValueEditDlg.resx │ │ │ │ ├── NumericValueEditDlg.Designer.cs │ │ │ │ ├── NumericValueEditDlg.cs │ │ │ │ ├── NumericValueEditDlg.resx │ │ │ │ ├── ReferenceTypeCtrl.Designer.cs │ │ │ │ ├── ReferenceTypeCtrl.cs │ │ │ │ ├── ReferenceTypeCtrl.resx │ │ │ │ ├── SimpleValueEditDlg.Designer.cs │ │ │ │ ├── SimpleValueEditDlg.cs │ │ │ │ ├── SimpleValueEditDlg.resx │ │ │ │ ├── StringValueEditDlg.Designer.cs │ │ │ │ ├── StringValueEditDlg.cs │ │ │ │ └── StringValueEditDlg.resx │ │ │ ├── SelectCertificateStoreCtrl.Designer.cs │ │ │ ├── SelectCertificateStoreCtrl.cs │ │ │ ├── SelectCertificateStoreCtrl.resx │ │ │ ├── SelectFileCtrl.Designer.cs │ │ │ ├── SelectFileCtrl.cs │ │ │ ├── SelectFileCtrl.resx │ │ │ ├── SelectProfileCtrl.Designer.cs │ │ │ ├── SelectProfileCtrl.cs │ │ │ ├── SelectProfileCtrl.resx │ │ │ ├── SelectProfileDlg.Designer.cs │ │ │ ├── SelectProfileDlg.cs │ │ │ ├── SelectProfileDlg.resx │ │ │ ├── SelectUrlsCtrl.Designer.cs │ │ │ ├── SelectUrlsCtrl.cs │ │ │ ├── SelectUrlsCtrl.resx │ │ │ ├── UserNamePasswordDlg.Designer.cs │ │ │ ├── UserNamePasswordDlg.cs │ │ │ ├── UserNamePasswordDlg.resx │ │ │ ├── ViewCertificateDlg.Designer.cs │ │ │ ├── ViewCertificateDlg.cs │ │ │ ├── ViewCertificateDlg.resx │ │ │ ├── YesNoDlg.Designer.cs │ │ │ ├── YesNoDlg.cs │ │ │ └── YesNoDlg.resx │ │ ├── Endpoints │ │ │ ├── ConfiguredServerDlg.Designer.cs │ │ │ ├── ConfiguredServerDlg.cs │ │ │ ├── ConfiguredServerDlg.resx │ │ │ ├── ConfiguredServerListCtrl.Designer.cs │ │ │ ├── ConfiguredServerListCtrl.cs │ │ │ ├── ConfiguredServerListCtrl.resx │ │ │ ├── ConfiguredServerListDlg.Designer.cs │ │ │ ├── ConfiguredServerListDlg.cs │ │ │ ├── ConfiguredServerListDlg.resx │ │ │ ├── DiscoveredServerListCtrl.Designer.cs │ │ │ ├── DiscoveredServerListCtrl.cs │ │ │ ├── DiscoveredServerListCtrl.resx │ │ │ ├── DiscoveredServerListDlg.Designer.cs │ │ │ ├── DiscoveredServerListDlg.cs │ │ │ ├── DiscoveredServerListDlg.resx │ │ │ ├── EndpointSelectorCtrl.Designer.cs │ │ │ ├── EndpointSelectorCtrl.cs │ │ │ ├── EndpointSelectorCtrl.resx │ │ │ ├── HostListCtrl.Designer.cs │ │ │ ├── HostListCtrl.cs │ │ │ ├── HostListCtrl.resx │ │ │ ├── HostListDlg.Designer.cs │ │ │ ├── HostListDlg.cs │ │ │ ├── HostListDlg.resx │ │ │ ├── PseudoComServerDlg.Designer.cs │ │ │ ├── PseudoComServerDlg.cs │ │ │ ├── PseudoComServerDlg.resx │ │ │ ├── PseudoComServerListCtrl.Designer.cs │ │ │ ├── PseudoComServerListCtrl.cs │ │ │ ├── PseudoComServerListCtrl.resx │ │ │ ├── PseudoComServerListDlg.Designer.cs │ │ │ ├── PseudoComServerListDlg.cs │ │ │ ├── PseudoComServerListDlg.resx │ │ │ ├── SelectHostCtrl.Designer.cs │ │ │ ├── SelectHostCtrl.cs │ │ │ ├── SelectHostCtrl.resx │ │ │ ├── UsernameTokenDlg.Designer.cs │ │ │ ├── UsernameTokenDlg.cs │ │ │ └── UsernameTokenDlg.resx │ │ ├── Icons │ │ │ ├── Array.bmp │ │ │ ├── Attribute.bmp │ │ │ ├── ByteString.bmp │ │ │ ├── ClosedFolder.bmp │ │ │ ├── Constant.bmp │ │ │ ├── InputArgument.bmp │ │ │ ├── Method.bmp │ │ │ ├── Number.bmp │ │ │ ├── Object.bmp │ │ │ ├── Object2.bmp │ │ │ ├── ObjectType.bmp │ │ │ ├── OpenFolder.bmp │ │ │ ├── OutputArgument.bmp │ │ │ ├── Property.bmp │ │ │ ├── Reference.bmp │ │ │ ├── String.bmp │ │ │ ├── Structure.bmp │ │ │ ├── Value.bmp │ │ │ ├── Variable.bmp │ │ │ ├── Varible.bmp │ │ │ └── View.bmp │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyVersionInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── UA Client Controls.csproj │ ├── Server │ │ ├── AddressSpace │ │ │ ├── BaseEvent.cs │ │ │ ├── DataTypeDictionary.cs │ │ │ ├── MethodSource.cs │ │ │ ├── Model │ │ │ │ ├── ModelImplementation.cs │ │ │ │ └── Opc.Ua.NodeSet.xml │ │ │ ├── NodeSource.cs │ │ │ ├── ObjectSource.cs │ │ │ ├── ObjectTypeSource.cs │ │ │ ├── StateMachine.cs │ │ │ ├── VariableSource.cs │ │ │ └── VariableTypeSource.cs │ │ ├── Aggregates │ │ │ ├── AggregateCalculator.cs │ │ │ ├── AggregateManager.cs │ │ │ ├── Aggregators.cs │ │ │ ├── AverageAggregateCalculator.cs │ │ │ ├── CountAggregateCalculator.cs │ │ │ ├── IAggregateCalculator.cs │ │ │ ├── MinMaxAggregateCalculator.cs │ │ │ ├── ServerAggregateFilter.cs │ │ │ ├── StartEndAggregateCalculator.cs │ │ │ ├── StatusAggregateCalculator.cs │ │ │ └── StdDevAggregateCalculator.cs │ │ ├── Diagnostics │ │ │ ├── CustomNodeManager.cs │ │ │ ├── DiagnosticsNodeManager.cs │ │ │ ├── MonitoredItemQueue.cs │ │ │ ├── MonitoredNode.cs │ │ │ ├── NodeHandle.cs │ │ │ ├── ParsedNodeId.cs │ │ │ └── v10 │ │ │ │ ├── CustomNodeManager.cs │ │ │ │ ├── DataChangeMonitoredItem.cs │ │ │ │ └── MonitoredNode.cs │ │ ├── Documentation │ │ │ └── Opc.Ua.Server.cs │ │ ├── NodeManager │ │ │ ├── ContinuationPoint.cs │ │ │ ├── CoreNodeManager.cs │ │ │ ├── EventManager.cs │ │ │ ├── ICallable.cs │ │ │ ├── IDataProducer.cs │ │ │ ├── IDataSource.cs │ │ │ ├── IEventHistoryProducer.cs │ │ │ ├── IEventSource.cs │ │ │ ├── INodeManager.cs │ │ │ ├── IViewManager.cs │ │ │ ├── MasterNodeManager.cs │ │ │ ├── ResourceManager.cs │ │ │ ├── SamplingGroup.cs │ │ │ ├── SamplingGroupManager.cs │ │ │ └── ServerSystemContext.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyVersionInfo.cs │ │ ├── Server │ │ │ ├── IServerInternal.cs │ │ │ ├── OperationContext.cs │ │ │ ├── RequestManager.cs │ │ │ ├── ServerInternalData.cs │ │ │ └── StandardServer.cs │ │ ├── ServerUtils.cs │ │ ├── Session │ │ │ ├── RequestType.cs │ │ │ ├── Session.cs │ │ │ └── SessionManager.cs │ │ ├── Subscription │ │ │ ├── AggregateCalculator.cs │ │ │ ├── AsyncPublishOperation.cs │ │ │ ├── IMonitoredItem.cs │ │ │ ├── MonitoredItem.cs │ │ │ ├── MultimediaTimer.cs │ │ │ ├── PublishingState.cs │ │ │ ├── SessionPublishQueue.cs │ │ │ ├── Subscription.cs │ │ │ └── SubscriptionManager.cs │ │ └── UA Server Library.csproj │ └── ServerControls │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyVersionInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ │ ├── ServerDiagnosticsCtrl.Designer.cs │ │ ├── ServerDiagnosticsCtrl.cs │ │ ├── ServerDiagnosticsCtrl.resx │ │ ├── ServerForm.Designer.cs │ │ ├── ServerForm.cs │ │ ├── ServerForm.resx │ │ ├── ServerHeaderBranding.Designer.cs │ │ ├── ServerHeaderBranding.cs │ │ ├── ServerHeaderBranding.resx │ │ └── UA Server Controls.csproj ├── Samples │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── Opc.Ua.SampleClient.Config.xml │ │ ├── Opc.Ua.SampleClient.Endpoints.xml │ │ ├── Opc.Ua.SampleClient.exe.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyVersionInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── SampleClientForm.Designer.cs │ │ ├── SampleClientForm.cs │ │ ├── SampleClientForm.resx │ │ ├── UA Sample Client.csproj │ │ └── app.manifest │ ├── Common │ │ ├── Base │ │ │ ├── CustomNodeManager.cs │ │ │ ├── DataChangeMonitoredItem.cs │ │ │ ├── MonitoredItemQueue.cs │ │ │ ├── MonitoredNode.cs │ │ │ └── SampleNodeManager.cs │ │ ├── Boiler │ │ │ ├── Boiler.Classes.cs │ │ │ ├── Boiler.Constants.cs │ │ │ ├── Boiler.DataTypes.cs │ │ │ ├── Boiler.NodeSet.xml │ │ │ ├── Boiler.NodeSet2.xml │ │ │ ├── Boiler.PredefinedNodes.uanodes │ │ │ ├── Boiler.PredefinedNodes.xml │ │ │ ├── Boiler.Types.bsd │ │ │ ├── Boiler.Types.xsd │ │ │ ├── BoilerDesign.csv │ │ │ ├── BoilerDesign.xml │ │ │ ├── BoilerNodeManager.cs │ │ │ ├── BoilerState.cs │ │ │ └── GenericController.cs │ │ ├── BuildDesign.bat │ │ ├── FileSystem │ │ │ ├── AreaBrowser.cs │ │ │ ├── AreaState.cs │ │ │ ├── ControllerState.cs │ │ │ ├── CsvFile.cs │ │ │ ├── FileSystem.Classes.cs │ │ │ ├── FileSystem.NodeSet.xml │ │ │ ├── FileSystem.NodeSet2.xml │ │ │ ├── FileSystem.PredefinedNodes.uanodes │ │ │ ├── FileSystem.PredefinedNodes.xml │ │ │ ├── FileSystem.Types.bsd │ │ │ ├── FileSystem.Types.xsd │ │ │ ├── FileSystemDesign.csv │ │ │ ├── FileSystemDesign.xml │ │ │ ├── FileSystemMonitor.cs │ │ │ └── FileSystemNodeManager.cs │ │ ├── MemoryBuffer │ │ │ ├── MemoryBuffer.Classes.cs │ │ │ ├── MemoryBuffer.NodeSet.xml │ │ │ ├── MemoryBuffer.NodeSet2.xml │ │ │ ├── MemoryBuffer.PredefinedNodes.uanodes │ │ │ ├── MemoryBuffer.PredefinedNodes.xml │ │ │ ├── MemoryBuffer.Types.bsd │ │ │ ├── MemoryBuffer.Types.xsd │ │ │ ├── MemoryBufferBrowser.cs │ │ │ ├── MemoryBufferConfiguration.cs │ │ │ ├── MemoryBufferDesign.csv │ │ │ ├── MemoryBufferDesign.xml │ │ │ ├── MemoryBufferMonitoredItem.cs │ │ │ ├── MemoryBufferNodeManager.cs │ │ │ ├── MemoryBufferState.cs │ │ │ ├── MemoryTagState.cs │ │ │ └── MultimediaTimer.cs │ │ ├── ModelDesignerV1 │ │ │ ├── DataTypeDictionary.cs │ │ │ ├── ModelImplementation.cs │ │ │ └── Opc.Ua.NodeSet.xml │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyVersionInfo.cs │ │ ├── Sample │ │ │ ├── Boiler.cs │ │ │ ├── GenericController.cs │ │ │ ├── GenericSensor.cs │ │ │ ├── ModelDeclarations.cs │ │ │ ├── ModelDocumentation.html │ │ │ ├── ModelImplementation.cs │ │ │ ├── Opc.Ua.Sample.NodeSet.xml │ │ │ ├── Opc.Ua.Sample.Types.bsd │ │ │ ├── Opc.Ua.Sample.Types.xsd │ │ │ ├── SampleDesign.csv │ │ │ └── SampleDesign.xml │ │ ├── SampleServer.SampleModel.cs │ │ ├── SampleServer.UserAuthentication.cs │ │ ├── SampleServer.cs │ │ ├── TestData │ │ │ ├── AnalogArrayValueObjectState.cs │ │ │ ├── AnalogScalarValueObjectState.cs │ │ │ ├── ArrayValueObjectState.cs │ │ │ ├── HistoryArchive.cs │ │ │ ├── HistoryDataReader.cs │ │ │ ├── HistoryFile.cs │ │ │ ├── IHistoryDataSource.cs │ │ │ ├── MethodTestState.cs │ │ │ ├── ScalarValueObjectState.cs │ │ │ ├── TestData.Classes.cs │ │ │ ├── TestData.Constants.cs │ │ │ ├── TestData.DataTypes.cs │ │ │ ├── TestData.NodeSet.xml │ │ │ ├── TestData.NodeSet2.xml │ │ │ ├── TestData.PredefinedNodes.uanodes │ │ │ ├── TestData.PredefinedNodes.xml │ │ │ ├── TestData.Types.bsd │ │ │ ├── TestData.Types.xsd │ │ │ ├── TestDataDesign.csv │ │ │ ├── TestDataDesign.xml │ │ │ ├── TestDataNodeManager.cs │ │ │ ├── TestDataNodeManagerConfiguration.cs │ │ │ ├── TestDataObjectState.cs │ │ │ ├── TestDataSystem.cs │ │ │ ├── TestSystemConditionState.cs │ │ │ ├── UserArrayValueObjectState.cs │ │ │ └── UserScalarValueObjectState.cs │ │ ├── UA Sample Library (SDK).csproj │ │ ├── UA Sample Library.csproj │ │ └── UaBasicHttpBinding.cs │ ├── Controls │ │ ├── ClientForm.Designer.cs │ │ ├── ClientForm.cs │ │ ├── ClientForm.resx │ │ ├── Common │ │ │ ├── ArgumentListCtrl.Designer.cs │ │ │ ├── ArgumentListCtrl.cs │ │ │ ├── ArgumentListCtrl.resx │ │ │ ├── AttributeListCtrl.Designer.cs │ │ │ ├── AttributeListCtrl.cs │ │ │ ├── AttributeListCtrl.resx │ │ │ ├── BackgroundTaskDlg.Designer.cs │ │ │ ├── BackgroundTaskDlg.cs │ │ │ ├── BackgroundTaskDlg.resx │ │ │ ├── CallMethodDlg.Designer.cs │ │ │ ├── CallMethodDlg.cs │ │ │ ├── CallMethodDlg.resx │ │ │ ├── DataEncodingDlg.Designer.cs │ │ │ ├── DataEncodingDlg.cs │ │ │ ├── DataEncodingDlg.resx │ │ │ ├── DataListCtrl.Designer.cs │ │ │ ├── DataListCtrl.cs │ │ │ ├── DataListCtrl.resx │ │ │ ├── DataValueListCtrl.Designer.cs │ │ │ ├── DataValueListCtrl.cs │ │ │ ├── DataValueListCtrl.resx │ │ │ ├── FindNodeDlg.Designer.cs │ │ │ ├── FindNodeDlg.cs │ │ │ ├── FindNodeDlg.resx │ │ │ ├── GuiUtils2.Designer.cs │ │ │ ├── GuiUtils2.cs │ │ │ ├── GuiUtils2.resx │ │ │ ├── NodeIdValueEditDlg.Designer.cs │ │ │ ├── NodeIdValueEditDlg.cs │ │ │ ├── NodeIdValueEditDlg.resx │ │ │ ├── NodeListCtrl.Designer.cs │ │ │ ├── NodeListCtrl.cs │ │ │ ├── NodeListCtrl.resx │ │ │ ├── PerformanceResultsListCtrl.Designer.cs │ │ │ ├── PerformanceResultsListCtrl.cs │ │ │ ├── PerformanceResultsListCtrl.resx │ │ │ ├── PerformanceTestDlg.Designer.cs │ │ │ ├── PerformanceTestDlg.cs │ │ │ ├── PerformanceTestDlg.resx │ │ │ ├── PropertyListCtrl.Designer.cs │ │ │ ├── PropertyListCtrl.cs │ │ │ ├── PropertyListCtrl.resx │ │ │ ├── ReferenceTypeCtrl.Designer.cs │ │ │ ├── ReferenceTypeCtrl.cs │ │ │ ├── ReferenceTypeCtrl.resx │ │ │ ├── SelectNodesDlg.Designer.cs │ │ │ ├── SelectNodesDlg.cs │ │ │ ├── SelectNodesDlg.resx │ │ │ ├── SimpleValueEditDlg.Designer.cs │ │ │ ├── SimpleValueEditDlg.cs │ │ │ └── SimpleValueEditDlg.resx │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyVersionInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── SelectLocaleDlg.Designer.cs │ │ ├── SelectLocaleDlg.cs │ │ ├── SelectLocaleDlg.resx │ │ ├── ServerForm.Designer.cs │ │ ├── ServerForm.cs │ │ ├── ServerForm.resx │ │ ├── ServerHeaderBranding.Designer.cs │ │ ├── ServerHeaderBranding.cs │ │ ├── ServerHeaderBranding.resx │ │ ├── Sessions │ │ │ ├── AddressSpaceDlg.Designer.cs │ │ │ ├── AddressSpaceDlg.cs │ │ │ ├── AddressSpaceDlg.resx │ │ │ ├── BrowseDlg.Designer.cs │ │ │ ├── BrowseDlg.cs │ │ │ ├── BrowseDlg.resx │ │ │ ├── BrowseListCtrl.Designer.cs │ │ │ ├── BrowseListCtrl.cs │ │ │ ├── BrowseListCtrl.resx │ │ │ ├── BrowseOptionsDlg.Designer.cs │ │ │ ├── BrowseOptionsDlg.cs │ │ │ ├── BrowseOptionsDlg.resx │ │ │ ├── BrowseTreeCtrl.Designer.cs │ │ │ ├── BrowseTreeCtrl.cs │ │ │ ├── BrowseTreeCtrl.resx │ │ │ ├── BrowseTypesDlg.Designer.cs │ │ │ ├── BrowseTypesDlg.cs │ │ │ ├── BrowseTypesDlg.resx │ │ │ ├── CreateSecureChannelDlg.Designer.cs │ │ │ ├── CreateSecureChannelDlg.cs │ │ │ ├── CreateSecureChannelDlg.resx │ │ │ ├── EndpointViewDlg.Designer.cs │ │ │ ├── EndpointViewDlg.cs │ │ │ ├── EndpointViewDlg.resx │ │ │ ├── NodeAttributesDlg.Designer.cs │ │ │ ├── NodeAttributesDlg.cs │ │ │ ├── NodeAttributesDlg.resx │ │ │ ├── ReadHistoryDlg.Designer.cs │ │ │ ├── ReadHistoryDlg.cs │ │ │ ├── ReadHistoryDlg.resx │ │ │ ├── SecuritySettingsDlg.Designer.cs │ │ │ ├── SecuritySettingsDlg.cs │ │ │ ├── SecuritySettingsDlg.resx │ │ │ ├── SelectNodeDlg.Designer.cs │ │ │ ├── SelectNodeDlg.cs │ │ │ ├── SelectNodeDlg.resx │ │ │ ├── SessionOpenDlg.Designer.cs │ │ │ ├── SessionOpenDlg.cs │ │ │ ├── SessionOpenDlg.resx │ │ │ ├── SessionTreeCtrl.Designer.cs │ │ │ ├── SessionTreeCtrl.cs │ │ │ ├── SessionTreeCtrl.resx │ │ │ ├── TypeHierarchyListCtrl.Designer.cs │ │ │ ├── TypeHierarchyListCtrl.cs │ │ │ ├── TypeNavigatorCtrl.Designer.cs │ │ │ ├── TypeNavigatorCtrl.cs │ │ │ └── TypeNavigatorCtrl.resx │ │ ├── Subscriptions │ │ │ ├── ContentFilterElementListCtrl.Designer.cs │ │ │ ├── ContentFilterElementListCtrl.cs │ │ │ ├── ContentFilterElementListCtrl.resx │ │ │ ├── CreateMonitoredItemsDlg.Designer.cs │ │ │ ├── CreateMonitoredItemsDlg.cs │ │ │ ├── CreateMonitoredItemsDlg.resx │ │ │ ├── DataChangeFilterEditDlg.Designer.cs │ │ │ ├── DataChangeFilterEditDlg.cs │ │ │ ├── DataChangeFilterEditDlg.resx │ │ │ ├── DataChangeNotificationListCtrl.Designer.cs │ │ │ ├── DataChangeNotificationListCtrl.cs │ │ │ ├── DataChangeNotificationListCtrl.resx │ │ │ ├── EventFilterDlg.Designer.cs │ │ │ ├── EventFilterDlg.cs │ │ │ ├── EventFilterDlg.resx │ │ │ ├── EventNotificationListCtrl.Designer.cs │ │ │ ├── EventNotificationListCtrl.cs │ │ │ ├── EventNotificationListCtrl.resx │ │ │ ├── FilterOperandEditDlg.Designer.cs │ │ │ ├── FilterOperandEditDlg.cs │ │ │ ├── FilterOperandEditDlg.resx │ │ │ ├── FilterOperandListCtrl.Designer.cs │ │ │ ├── FilterOperandListCtrl.cs │ │ │ ├── FilterOperandListCtrl.resx │ │ │ ├── FilterOperatorEditDlg.Designer.cs │ │ │ ├── FilterOperatorEditDlg.cs │ │ │ ├── FilterOperatorEditDlg.resx │ │ │ ├── HistoryReadDetails.Designer.cs │ │ │ ├── HistoryReadDetails.cs │ │ │ ├── HistoryReadDetails.resx │ │ │ ├── HistoryReadDetailsCtrl.resx │ │ │ ├── HistoryReadDlg.Designer.cs │ │ │ ├── HistoryReadDlg.cs │ │ │ ├── HistoryReadDlg.resx │ │ │ ├── MonitoredItemConfigCtrl.Designer.cs │ │ │ ├── MonitoredItemConfigCtrl.cs │ │ │ ├── MonitoredItemConfigCtrl.resx │ │ │ ├── MonitoredItemDlg.Designer.cs │ │ │ ├── MonitoredItemDlg.cs │ │ │ ├── MonitoredItemDlg.resx │ │ │ ├── MonitoredItemEditDlg.Designer.cs │ │ │ ├── MonitoredItemEditDlg.cs │ │ │ ├── MonitoredItemEditDlg.resx │ │ │ ├── MonitoredItemStatusCtrl.Designer.cs │ │ │ ├── MonitoredItemStatusCtrl.cs │ │ │ ├── MonitoredItemStatusCtrl.resx │ │ │ ├── NotificationMessageListCtrl.Designer.cs │ │ │ ├── NotificationMessageListCtrl.cs │ │ │ ├── NotificationMessageListCtrl.resx │ │ │ ├── ReadDlg.Designer.cs │ │ │ ├── ReadDlg.cs │ │ │ ├── ReadDlg.resx │ │ │ ├── ReadValueEditDlg.Designer.cs │ │ │ ├── ReadValueEditDlg.cs │ │ │ ├── ReadValueEditDlg.resx │ │ │ ├── ReadValueListCtrl.Designer.cs │ │ │ ├── ReadValueListCtrl.cs │ │ │ ├── ReadValueListCtrl.resx │ │ │ ├── RepublishNotificationMessageDlg.Designer.cs │ │ │ ├── RepublishNotificationMessageDlg.cs │ │ │ ├── RepublishNotificationMessageDlg.resx │ │ │ ├── SelectClauseListCtrl.Designer.cs │ │ │ ├── SelectClauseListCtrl.cs │ │ │ ├── SelectClauseListCtrl.resx │ │ │ ├── SetMonitoringModeDlg.Designer.cs │ │ │ ├── SetMonitoringModeDlg.cs │ │ │ ├── SetMonitoringModeDlg.resx │ │ │ ├── SubscriptionDlg.Designer.cs │ │ │ ├── SubscriptionDlg.cs │ │ │ ├── SubscriptionDlg.resx │ │ │ ├── SubscriptionEditDlg.Designer.cs │ │ │ ├── SubscriptionEditDlg.cs │ │ │ ├── SubscriptionEditDlg.resx │ │ │ ├── WriteDlg.Designer.cs │ │ │ ├── WriteDlg.cs │ │ │ ├── WriteDlg.resx │ │ │ ├── WriteValueEditDlg.Designer.cs │ │ │ ├── WriteValueEditDlg.cs │ │ │ ├── WriteValueEditDlg.resx │ │ │ ├── WriteValueListCtrl.Designer.cs │ │ │ ├── WriteValueListCtrl.cs │ │ │ └── WriteValueListCtrl.resx │ │ ├── UA Sample Controls (SDK).csproj │ │ └── UA Sample Controls.csproj │ ├── HistoryClient │ │ ├── Helpers.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── UA History Client.csproj │ ├── NetworkTester │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── UA Network Tester.csproj │ ├── Publisher │ │ ├── AmqpConnection.cs │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── JsonEncoder.cs │ │ ├── Opc.Ua.Publisher.Endpoints.xml │ │ ├── Opc.Ua.Publisher.config.xml │ │ ├── Opc.Ua.Publisher.csproj │ │ ├── Opc.Ua.Publisher.exe.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyVersionInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── PublisherForm.Designer.cs │ │ ├── PublisherForm.cs │ │ ├── PublisherForm.resx │ │ ├── SamplePublisherForm.Designer.cs │ │ ├── SamplePublisherForm.cs │ │ ├── SamplePublisherForm.resx │ │ ├── app.manifest │ │ └── packages.config │ ├── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── Opc.Ua.SampleServer.Config.xml │ │ ├── Opc.Ua.SampleServer.exe.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyVersionInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── ServerDiagnosticsCtrl.Designer.cs │ │ ├── ServerDiagnosticsCtrl.cs │ │ ├── ServerDiagnosticsCtrl.resx │ │ ├── ServerForm.Designer.cs │ │ ├── ServerForm.cs │ │ ├── ServerForm.resx │ │ ├── UA Sample Server.csproj │ │ └── app.manifest │ ├── ServerTest │ │ ├── App.config │ │ ├── App.ico │ │ ├── GuiUtils.cs │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Opc.Ua.ServerTestTool.Config.xml │ │ ├── Opc.Ua.ServerTestTool.Endpoints.xml │ │ ├── Opc.Ua.ServerTestTool.exe.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyVersionInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── ServerTestClient.cs │ │ ├── ServerTestConfiguration.Extras.cs │ │ ├── ServerTestConfiguration.cs │ │ ├── ServerTestConfiguration.xsd │ │ ├── TestCaseTreeCtrl.Designer.cs │ │ ├── TestCaseTreeCtrl.cs │ │ ├── TestCaseTreeCtrl.resx │ │ ├── Tests │ │ │ ├── BrowseTest.cs │ │ │ ├── CallTest.cs │ │ │ ├── MonitoredItemTest.cs │ │ │ ├── ReadTest.cs │ │ │ ├── SessionTest.cs │ │ │ ├── SubscribeTest.cs │ │ │ ├── TestBase.cs │ │ │ ├── TranslatePathTest.cs │ │ │ └── WriteTest.cs │ │ └── UA Server Test Tool.csproj │ └── WebService │ │ ├── App_Code │ │ └── ServiceHost.cs │ │ ├── Service.svc │ │ └── Web.config ├── Stack Test │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── Data │ │ │ └── Endpoints.cache.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Opc.Ua.StackTestClient.Config.xml │ │ ├── Opc.Ua.StackTestClient.Endpoints.xml │ │ ├── Opc.Ua.StackTestClient.exe.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyVersionInfo.cs │ │ ├── UA Stack Test Client.csproj │ │ └── app.manifest │ ├── Common │ │ ├── ArrayValueTest.cs │ │ ├── AutoReconnect.cs │ │ ├── BuiltInTypesTest.cs │ │ ├── Compare.cs │ │ ├── Context.cs │ │ ├── Data │ │ │ ├── Random.bin │ │ │ └── TestCases.xml │ │ ├── ExtensionObjectTest.cs │ │ ├── IStackControl.cs │ │ ├── LargeMessageTest.cs │ │ ├── Logger.cs │ │ ├── MultipleChannelsTest.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyVersionInfo.cs │ │ ├── PseudoRandom.cs │ │ ├── Readme.txt │ │ ├── SampleXmlData.xml │ │ ├── ScalarValueTest.cs │ │ ├── SerializerDirectTest.cs │ │ ├── ServerFaultTest.cs │ │ ├── ServerTimoutTest.cs │ │ ├── TestCases.cs │ │ ├── TestClient.cs │ │ ├── TestConfiguration.cs │ │ ├── TestConfiguration.xml │ │ ├── TestSequence.cs │ │ ├── TestServer.cs │ │ ├── TestUtils.cs │ │ ├── UA Stack Test Library.csproj │ │ ├── UA Test Definition.cs │ │ ├── UA Test Definition.xsd │ │ └── VendorTypes.cs │ ├── Controls │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyVersionInfo.cs │ │ ├── TestCasesCtrl.Designer.cs │ │ ├── TestCasesCtrl.cs │ │ ├── TestCasesCtrl.resx │ │ ├── TestEventsCtrl.Designer.cs │ │ ├── TestEventsCtrl.cs │ │ ├── TestParametersCtrl.Designer.cs │ │ ├── TestParametersCtrl.cs │ │ └── UA Stack Test Controls.csproj │ ├── Random │ │ └── Library │ │ │ ├── RandomGenerator.c │ │ │ ├── RandomGenerator.h │ │ │ ├── UA Random Library (VC8).vcproj │ │ │ ├── UA Random Library.aps │ │ │ ├── UA Random Library.rc │ │ │ ├── UA Random Library.vcproj │ │ │ ├── UA Random Library.vcproj.SRO.gcr.user │ │ │ ├── UA Random Library.vcxproj │ │ │ ├── UA Random Library.vcxproj.filters │ │ │ └── resource.h │ ├── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Opc.Ua.StackTestServer.Config.xml │ │ ├── Opc.Ua.StackTestServer.exe.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyVersionInfo.cs │ │ ├── UA Stack Test Server.csproj │ │ └── app.manifest │ └── UA Stack Test.sln ├── WCF │ ├── Client │ │ ├── App.config │ │ ├── Client.csproj │ │ ├── ClientForm.Designer.cs │ │ ├── ClientForm.cs │ │ ├── ClientForm.resx │ │ ├── My Client Certificate.pfx │ │ ├── MyClient.cs │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── Common │ │ ├── Common.csproj │ │ ├── Generated │ │ │ ├── Opc.Ua.Attributes.cs │ │ │ ├── Opc.Ua.Enumerations.cs │ │ │ ├── Opc.Ua.Identifiers.cs │ │ │ ├── Opc.Ua.NodeSet.xml │ │ │ └── Opc.Ua.StatusCodes.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Schemas │ │ │ ├── AttributeIds.csv │ │ │ ├── NodeIds.csv │ │ │ ├── Opc.Ua.PortTypes.wsdl │ │ │ ├── Opc.Ua.Services.cs │ │ │ ├── Opc.Ua.Services.wsdl │ │ │ ├── Opc.Ua.Types.bsd │ │ │ ├── Opc.Ua.Types.cs │ │ │ ├── Opc.Ua.Types.xsd │ │ │ ├── SessionEndpoint.cs │ │ │ └── StatusCodes.csv │ │ └── Types │ │ │ ├── BuiltInType.cs │ │ │ ├── DataValue.cs │ │ │ ├── ExpandedNodeId.cs │ │ │ ├── ExtensionObject.cs │ │ │ ├── Helpers.cs │ │ │ ├── LocalizedText.cs │ │ │ ├── NamespaceTable.cs │ │ │ ├── Namespaces.cs │ │ │ ├── NodeId.cs │ │ │ ├── NodeSet.cs │ │ │ ├── QualifiedName.cs │ │ │ ├── SecurityPolicies.cs │ │ │ ├── SecurityUtils.cs │ │ │ ├── StatusCode.cs │ │ │ └── Variant.cs │ ├── Server │ │ ├── App.config │ │ ├── My Server Certificate.pfx │ │ ├── MyServer.cs │ │ ├── NodeManager.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Server.csproj │ │ ├── ServerForm.Designer.cs │ │ ├── ServerForm.cs │ │ ├── ServerForm.resx │ │ ├── ServerObject.cs │ │ ├── Session.cs │ │ └── Subscription.cs │ ├── Simple WCF Applications.sln │ └── UA Simple WCF Applications Readme.htm └── Workshop │ ├── Aggregation │ ├── Client │ │ ├── Aggregation Client.csproj │ │ ├── AggregationClient.exe.config │ │ ├── AggregationModel.Constants.cs │ │ ├── AggregationModel.DataTypes.cs │ │ ├── App.config │ │ ├── App.ico │ │ ├── CallMethodDlg.Designer.cs │ │ ├── CallMethodDlg.cs │ │ ├── CallMethodDlg.resx │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.AggregationClient.Config.xml │ │ ├── SetUserAndLocaleDlg.Designer.cs │ │ ├── SetUserAndLocaleDlg.cs │ │ ├── SetUserAndLocaleDlg.resx │ │ ├── ShowReferencesDlg.Designer.cs │ │ ├── ShowReferencesDlg.cs │ │ ├── ShowReferencesDlg.resx │ │ ├── SubscribeDataDlg.Designer.cs │ │ ├── SubscribeDataDlg.cs │ │ ├── SubscribeDataDlg.resx │ │ ├── SubscribeDlg.Designer.cs │ │ ├── SubscribeDlg.cs │ │ ├── SubscribeDlg.resx │ │ ├── TutorialModel.Constants.cs │ │ ├── TutorialModel.DataTypes.cs │ │ ├── WriteValueDlg.Designer.cs │ │ ├── WriteValueDlg.cs │ │ └── WriteValueDlg.resx │ └── Server │ │ ├── AggregatedTypeCache.cs │ │ ├── Aggregation Server.csproj │ │ ├── AggregationNodeManager.cs │ │ ├── AggregationServer.cs │ │ ├── AggregationServer.exe.config │ │ ├── AggregationServerConfiguration.cs │ │ ├── App.config │ │ ├── App.ico │ │ ├── Browser.cs │ │ ├── BuildDesign.bat │ │ ├── InstallConfig.xml │ │ ├── Model │ │ ├── AggregationModel.Classes.cs │ │ ├── AggregationModel.Constants.cs │ │ ├── AggregationModel.DataTypes.cs │ │ ├── AggregationModel.NodeSet.xml │ │ ├── AggregationModel.NodeSet2.xml │ │ ├── AggregationModel.PredefinedNodes.uanodes │ │ ├── AggregationModel.PredefinedNodes.xml │ │ ├── AggregationModel.Types.bsd │ │ ├── AggregationModel.Types.xsd │ │ ├── ModelDesign.csv │ │ └── ModelDesign.xml │ │ ├── NamespaceMapper.cs │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.AggregationServer.Config.xml │ │ └── app.manifest │ ├── AlarmCondition │ ├── Client │ │ ├── AddCommentDlg.Designer.cs │ │ ├── AddCommentDlg.cs │ │ ├── AddCommentDlg.resx │ │ ├── AlarmCondition Client.csproj │ │ ├── App.config │ │ ├── App.ico │ │ ├── AuditEventForm.Designer.cs │ │ ├── AuditEventForm.cs │ │ ├── AuditEventForm.resx │ │ ├── DialogResponseDlg.Designer.cs │ │ ├── DialogResponseDlg.cs │ │ ├── DialogResponseDlg.resx │ │ ├── EventFieldDefinition.cs │ │ ├── FilterDefinition.cs │ │ ├── FormUtils.cs │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.AlarmConditionClient.Config.xml │ │ ├── Quickstarts.AlarmConditionClient.exe.config │ │ ├── SetAreaFilterDlg.Designer.cs │ │ ├── SetAreaFilterDlg.cs │ │ ├── SetAreaFilterDlg.resx │ │ ├── ViewEventDetailsDlg.Designer.cs │ │ ├── ViewEventDetailsDlg.cs │ │ └── ViewEventDetailsDlg.resx │ ├── Help │ │ ├── AlarmConditionContentLayout.content │ │ ├── AlarmConditionDiagrams.vsd │ │ ├── AlarmConditionQuickstart.shfbproj │ │ ├── Content.maml │ │ │ ├── Archtecture.aml │ │ │ └── Overview.aml │ │ ├── Graphics │ │ │ ├── AlarmConditionClientClasses.jpg │ │ │ └── AlarmConditionServerClasses.jpg │ │ └── Help │ │ │ └── OPC UA Alarms and Conditions Quickstart.chm │ └── Server │ │ ├── AlarmCondition Server.csproj │ │ ├── AlarmConditionNodeManager.cs │ │ ├── AlarmConditionServer.cs │ │ ├── AlarmConditionServerConfiguration.cs │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── Model │ │ ├── AreaState.cs │ │ ├── ModelUtils.cs │ │ ├── Namespaces.cs │ │ └── SourceState.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.AlarmConditionServer.Config.xml │ │ ├── Quickstarts.AlarmConditionServer.exe.config │ │ ├── UnderlyingSystem │ │ ├── UnderlyingSystem.cs │ │ ├── UnderlyingSystemAlarm.cs │ │ ├── UnderlyingSystemAlarmStates.cs │ │ └── UnderlyingSystemSource.cs │ │ └── app.manifest │ ├── Boiler │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── Boiler Client.csproj │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.Boiler.Constants.cs │ │ ├── Quickstarts.Boiler.DataTypes.cs │ │ ├── Quickstarts.BoilerClient.Config.xml │ │ └── Quickstarts.BoilerClient.exe.config │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── Boiler Server.csproj │ │ ├── BoilerNodeManager.cs │ │ ├── BoilerServer.cs │ │ ├── BoilerServerConfiguration.cs │ │ ├── BuildDesign.bat │ │ ├── InstallConfig.xml │ │ ├── ModelDesign.csv │ │ ├── ModelDesign.xml │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.Boiler.Classes.cs │ │ ├── Quickstarts.Boiler.Constants.cs │ │ ├── Quickstarts.Boiler.DataTypes.cs │ │ ├── Quickstarts.Boiler.NodeSet.xml │ │ ├── Quickstarts.Boiler.NodeSet2.xml │ │ ├── Quickstarts.Boiler.PredefinedNodes.uanodes │ │ ├── Quickstarts.Boiler.PredefinedNodes.xml │ │ ├── Quickstarts.Boiler.Types.bsd │ │ ├── Quickstarts.Boiler.Types.xsd │ │ ├── Quickstarts.BoilerServer.Config.xml │ │ └── Quickstarts.BoilerServer.exe.config │ ├── ComDa │ ├── Client │ │ ├── App.config │ │ ├── COM UA Test Client.csproj │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resX │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.UaTestClient.Config.xml │ │ └── app.ico │ ├── ComClient │ │ ├── AssemblyInfo.cpp │ │ ├── COM Test Client.vcproj │ │ ├── COM Test Client.vcxproj │ │ ├── Client.cpp │ │ ├── ComDaClientUtils.cpp │ │ ├── ComDaClientUtils.h │ │ ├── ComDaDataCallback.cpp │ │ ├── ComDaDataCallback.h │ │ ├── ComDaTester.cpp │ │ ├── ComDaTester.h │ │ ├── CreateServerDlg.cpp │ │ ├── CreateServerDlg.h │ │ ├── CreateServerDlg.resx │ │ ├── EnterEndpointUrlDlg.cpp │ │ ├── EnterEndpointUrlDlg.h │ │ ├── EnterEndpointUrlDlg.resx │ │ ├── MainForm.cpp │ │ ├── MainForm.h │ │ ├── MainForm.resX │ │ ├── ReadMe.txt │ │ ├── Simple Client.cpp │ │ ├── app.aps │ │ ├── app.ico │ │ ├── app.rc │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── Help │ │ ├── ComDataAccessContentLayout.content │ │ ├── ComDataAccessQuickstart.shfbproj │ │ ├── Content.maml │ │ │ └── Overview.aml │ │ └── Help │ │ │ └── OPC UA COM Data Access Quickstart.chm │ └── Server │ │ ├── AcceptCertificateDlg.Designer.cs │ │ ├── AcceptCertificateDlg.cs │ │ ├── AcceptCertificateDlg.resx │ │ ├── App.config │ │ ├── App.ico │ │ ├── COM DataAccess Server Wrapper.csproj │ │ ├── ComClient │ │ ├── ComClientManager.cs │ │ ├── ComDaClient.cs │ │ ├── ComDaClientManager.cs │ │ ├── ComDaDataCallback.cs │ │ ├── ComDaGroup.cs │ │ ├── DaElement.cs │ │ ├── DaProperty.cs │ │ ├── DaValue.cs │ │ ├── ReadRequest.cs │ │ ├── SubscribeRequest.cs │ │ └── WriteRequest.cs │ │ ├── ComDaServerWrapper.cs │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Model │ │ ├── ComDataAccessServer.Classes.cs │ │ ├── ComDataAccessServer.NodeSet.xml │ │ ├── ComDataAccessServer.PredefinedNodes.uanodes │ │ ├── ComDataAccessServer.PredefinedNodes.xml │ │ ├── ComDataAccessServer.Types.bsd │ │ ├── ComDataAccessServer.Types.xsd │ │ ├── DaBranchState.cs │ │ ├── DaElementBrowser.cs │ │ ├── DaItemState.cs │ │ ├── DaPropertyState.cs │ │ ├── ModelDesign.csv │ │ ├── ModelDesign.xml │ │ └── ModelUtils.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.ComDaServerWrapper.Config.xml │ │ ├── Reuseable │ │ ├── ComClient.cs │ │ ├── ComClientConfiguration.cs │ │ ├── ComObject.cs │ │ ├── ComWrapperNodeManager.cs │ │ ├── ComWrapperServerConfiguration.cs │ │ └── Namespaces.cs │ │ ├── SelectComServerDlg.Designer.cs │ │ ├── SelectComServerDlg.cs │ │ └── SelectComServerDlg.resx │ ├── Common │ ├── BackwardCompatibility.cs │ ├── Data.txt │ ├── FilterDefinition.cs │ ├── FormUtils.cs │ ├── ModelUtils.cs │ ├── MonitoredNode.cs │ ├── NodeHandle.cs │ ├── ParsedNodeId.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Quickstart Library.csproj │ ├── QuickstartNodeManager.cs │ ├── SelectLocaleDlg.Designer.cs │ ├── SelectLocaleDlg.cs │ └── SelectLocaleDlg.resx │ ├── DSATS │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── DSATS Demo Client.csproj │ │ ├── DsatsDemo.Constants.cs │ │ ├── DsatsDemoClient.Config.xml │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── DSATS Demo Readme.docx │ ├── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── BuildDesign.bat │ │ ├── DSATS Demo Server.csproj │ │ ├── DataSourceClient.cs │ │ ├── DsatsDemoAccessControl.txt │ │ ├── DsatsDemoNodeManager.cs │ │ ├── DsatsDemoServer.Config.xml │ │ ├── DsatsDemoServer.cs │ │ ├── DsatsDemoServerConfiguration.cs │ │ ├── InstallConfig.xml │ │ ├── Model │ │ │ ├── DsatsDemo.Classes.cs │ │ │ ├── DsatsDemo.Constants.cs │ │ │ ├── DsatsDemo.DataTypes.cs │ │ │ ├── DsatsDemo.NodeSet.xml │ │ │ ├── DsatsDemo.NodeSet2.xml │ │ │ ├── DsatsDemo.PredefinedNodes.uanodes │ │ │ ├── DsatsDemo.PredefinedNodes.xml │ │ │ ├── DsatsDemo.Types.bsd │ │ │ ├── DsatsDemo.Types.xsd │ │ │ ├── LockConditionState.cs │ │ │ ├── ModelDesign.csv │ │ │ ├── ModelDesign.xml │ │ │ ├── RigState.cs │ │ │ └── ToolState.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Schema │ │ │ ├── DataSource.cs │ │ │ ├── DataSource.xml │ │ │ ├── DataSource.xsd │ │ │ ├── DataSource_UANodeSet_UAVariant.cs │ │ │ ├── UANodeSet.xsd │ │ │ └── UAVariant.xsd │ │ └── app.manifest │ └── Setup │ │ └── Setup.vdproj │ ├── DataAccess │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── DataAccess Client.csproj │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.DataAccessClient.Config.xml │ │ ├── Quickstarts.DataAccessClient.exe.config │ │ ├── ReadHistoryDlg.Designer.cs │ │ ├── ReadHistoryDlg.cs │ │ ├── ReadHistoryDlg.resx │ │ ├── WriteValueDlg.Designer.cs │ │ ├── WriteValueDlg.cs │ │ └── WriteValueDlg.resx │ ├── Help │ │ ├── Content.maml │ │ │ ├── Archtecture.aml │ │ │ └── Overview.aml │ │ ├── DataAccessContentLayout.content │ │ ├── DataAccessQuickstart.shfbproj │ │ └── Help │ │ │ └── OPC UA Data Access Quickstart.chm │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── DataAccess Server.csproj │ │ ├── DataAccessNodeManager.cs │ │ ├── DataAccessServer.cs │ │ ├── DataAccessServerConfiguration.cs │ │ ├── InstallConfig.xml │ │ ├── Model │ │ ├── BlockState.cs │ │ ├── ModelUtils.cs │ │ ├── Namespaces.cs │ │ ├── SegmentBrowser.cs │ │ └── SegmentState.cs │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.DataAccessServer.Config.xml │ │ ├── Quickstarts.DataAccessServer.exe.config │ │ ├── UnderlyingSystem │ │ ├── UnderlyingSystem.cs │ │ ├── UnderlyingSystemBlock.cs │ │ ├── UnderlyingSystemDataType.cs │ │ ├── UnderlyingSystemSegment.cs │ │ ├── UnderlyingSystemTag.cs │ │ └── UnderlyingSystemTagType.cs │ │ └── app.manifest │ ├── DataTypes │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── CallMethodDlg.Designer.cs │ │ ├── CallMethodDlg.cs │ │ ├── CallMethodDlg.resx │ │ ├── DataTypes Client.csproj │ │ ├── DataTypesClient.exe.config │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.DataTypesClient.Config.xml │ │ ├── SubscribeDataDlg.Designer.cs │ │ ├── SubscribeDataDlg.cs │ │ ├── SubscribeDataDlg.resx │ │ ├── WriteValueDlg.Designer.cs │ │ ├── WriteValueDlg.cs │ │ └── WriteValueDlg.resx │ ├── Common │ │ ├── BuildDesign.bat │ │ ├── DataTypes Library.csproj │ │ ├── Instances │ │ │ ├── ModelDesign2.csv │ │ │ ├── ModelDesign2.xml │ │ │ ├── Quickstarts.DataTypes.Instances.Classes.cs │ │ │ ├── Quickstarts.DataTypes.Instances.Constants.cs │ │ │ ├── Quickstarts.DataTypes.Instances.DataTypes.cs │ │ │ ├── Quickstarts.DataTypes.Instances.NodeSet.xml │ │ │ ├── Quickstarts.DataTypes.Instances.PredefinedNodes.uanodes │ │ │ ├── Quickstarts.DataTypes.Instances.PredefinedNodes.xml │ │ │ ├── Quickstarts.DataTypes.Instances.Types.bsd │ │ │ └── Quickstarts.DataTypes.Instances.Types.xsd │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Types │ │ │ ├── ModelDesign1.csv │ │ │ ├── ModelDesign1.xml │ │ │ ├── Quickstarts.DataTypes.Types.Classes.cs │ │ │ ├── Quickstarts.DataTypes.Types.Constants.cs │ │ │ ├── Quickstarts.DataTypes.Types.DataTypes.cs │ │ │ ├── Quickstarts.DataTypes.Types.NodeSet.xml │ │ │ ├── Quickstarts.DataTypes.Types.NodeSet2.xml │ │ │ ├── Quickstarts.DataTypes.Types.PredefinedNodes.uanodes │ │ │ ├── Quickstarts.DataTypes.Types.PredefinedNodes.xml │ │ │ ├── Quickstarts.DataTypes.Types.Types.bsd │ │ │ └── Quickstarts.DataTypes.Types.Types.xsd │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── BuildDesign.bat │ │ ├── DataTypes Server.csproj │ │ ├── DataTypesNodeManager.cs │ │ ├── DataTypesServer.cs │ │ ├── DataTypesServer.exe.config │ │ ├── DataTypesServerConfiguration.cs │ │ ├── InstallConfig.xml │ │ ├── Instances │ │ ├── ModelDesign2.csv │ │ ├── ModelDesign2.xml │ │ ├── Quickstarts.DataTypes.Instances.Classes.cs │ │ ├── Quickstarts.DataTypes.Instances.Constants.cs │ │ ├── Quickstarts.DataTypes.Instances.DataTypes.cs │ │ ├── Quickstarts.DataTypes.Instances.NodeSet.xml │ │ ├── Quickstarts.DataTypes.Instances.NodeSet2.xml │ │ ├── Quickstarts.DataTypes.Instances.PredefinedNodes.uanodes │ │ ├── Quickstarts.DataTypes.Instances.PredefinedNodes.xml │ │ ├── Quickstarts.DataTypes.Instances.Types.bsd │ │ └── Quickstarts.DataTypes.Instances.Types.xsd │ │ ├── Model │ │ ├── ModelDesign.csv │ │ └── ModelDesign.xml │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.DataTypesServer.Config.xml │ │ └── app.manifest │ ├── Empty │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── Empty Client.csproj │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.EmptyClient.Config.xml │ │ └── Quickstarts.EmptyClient.exe.config │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── Empty Server.csproj │ │ ├── EmptyNodeManager.cs │ │ ├── EmptyServer.cs │ │ ├── EmptyServerConfiguration.cs │ │ ├── InstallConfig.xml │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.EmptyServer.Config.xml │ │ └── Quickstarts.EmptyServer.exe.config │ ├── HistoricalAccess │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── HistoricalAccess Client.csproj │ │ ├── HistoryDataListView.Designer.cs │ │ ├── HistoryDataListView.cs │ │ ├── HistoryDataListView.resx │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.HistoricalAccessClient.Config.xml │ │ ├── Quickstarts.HistoricalAccessClient.exe.config │ │ ├── ReadHistoryDlg.Designer.cs │ │ ├── ReadHistoryDlg.cs │ │ ├── ReadHistoryDlg.resx │ │ ├── WriteValueDlg.Designer.cs │ │ ├── WriteValueDlg.cs │ │ └── WriteValueDlg.resx │ ├── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── Data.txt │ │ ├── Data │ │ │ ├── Dynamic │ │ │ │ ├── Boolean.txt │ │ │ │ ├── Byte.txt │ │ │ │ ├── DateTime.txt │ │ │ │ ├── Double.txt │ │ │ │ ├── Float.txt │ │ │ │ ├── Int16.txt │ │ │ │ ├── Int32.txt │ │ │ │ ├── Int64.txt │ │ │ │ ├── SByte.txt │ │ │ │ ├── String.txt │ │ │ │ ├── UInt16.txt │ │ │ │ ├── UInt32.txt │ │ │ │ └── UInt64.txt │ │ │ └── Sample │ │ │ │ ├── Boolean.txt │ │ │ │ ├── Byte.txt │ │ │ │ ├── ByteString.txt │ │ │ │ ├── DateTime.txt │ │ │ │ ├── Double.txt │ │ │ │ ├── Float.txt │ │ │ │ ├── Historian1.xlsx │ │ │ │ ├── Historian1ExpectedData.csv │ │ │ │ ├── Historian2ExpectedData.csv │ │ │ │ ├── Historian3ExpectedData.csv │ │ │ │ ├── Int16.txt │ │ │ │ ├── Int32.txt │ │ │ │ ├── Int64.txt │ │ │ │ ├── SByte.txt │ │ │ │ ├── String.txt │ │ │ │ ├── UInt16.txt │ │ │ │ ├── UInt32.txt │ │ │ │ └── UInt64.txt │ │ ├── HistoricalAccess Server.csproj │ │ ├── HistoricalAccessNodeManager.cs │ │ ├── HistoricalAccessServer.cs │ │ ├── HistoricalAccessServerConfiguration.cs │ │ ├── InstallConfig.xml │ │ ├── Model │ │ │ ├── BlockState.cs │ │ │ ├── ModelUtils.cs │ │ │ ├── Namespaces.cs │ │ │ ├── SegmentBrowser.cs │ │ │ └── SegmentState.cs │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.HistoricalAccessServer.Config.xml │ │ ├── Quickstarts.HistoricalAccessServer.exe.config │ │ ├── UnderlyingSystem │ │ │ ├── ArchiveFolder.cs │ │ │ ├── ArchiveFolderBrowser.cs │ │ │ ├── ArchiveFolderState.cs │ │ │ ├── ArchiveItem.cs │ │ │ ├── ArchiveItemState.cs │ │ │ ├── DataFileReader.cs │ │ │ ├── NodeTypes.cs │ │ │ ├── UnderlyingSystem.cs │ │ │ ├── UnderlyingSystemBlock.cs │ │ │ ├── UnderlyingSystemDataType.cs │ │ │ ├── UnderlyingSystemSegment.cs │ │ │ ├── UnderlyingSystemTag.cs │ │ │ └── UnderlyingSystemTagType.cs │ │ └── app.manifest │ └── Tester │ │ ├── Aggregate Tester.csproj │ │ ├── App.ico │ │ ├── DefaultData.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TestData.cs │ │ ├── TestData.xml │ │ ├── TestData.xsd │ │ └── TestDataHelpers.cs │ ├── HistoricalEvents │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── EventListView.Designer.cs │ │ ├── EventListView.cs │ │ ├── EventListView.resx │ │ ├── FilterDefinition.cs │ │ ├── FilterDefinitionField.cs │ │ ├── HistoricalEvents Client.csproj │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── ModifyFilterDlg.Designer.cs │ │ ├── ModifyFilterDlg.cs │ │ ├── ModifyFilterDlg.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.HistoricalEvents.Classes.cs │ │ ├── Quickstarts.HistoricalEvents.Constants.cs │ │ ├── Quickstarts.HistoricalEvents.DataTypes.cs │ │ ├── Quickstarts.HistoricalEventsClient.Config.xml │ │ ├── Quickstarts.HistoricalEventsClient.exe.config │ │ ├── ReadEventHistoryDlg.Designer.cs │ │ ├── ReadEventHistoryDlg.cs │ │ ├── ReadEventHistoryDlg.resx │ │ ├── SelectEventTypeDlg.Designer.cs │ │ ├── SelectEventTypeDlg.cs │ │ ├── SelectEventTypeDlg.resx │ │ ├── SelectTypeDlg.Designer.cs │ │ ├── SelectTypeDlg.cs │ │ ├── SelectTypeDlg.resx │ │ ├── SetValueDlg.Designer.cs │ │ ├── SetValueDlg.cs │ │ ├── SetValueDlg.resx │ │ ├── ViewEventDetailsDlg.Designer.cs │ │ ├── ViewEventDetailsDlg.cs │ │ └── ViewEventDetailsDlg.resx │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── BuildDesign.bat │ │ ├── HistoricalEvents Server.csproj │ │ ├── HistoricalEventsNodeManager.cs │ │ ├── HistoricalEventsServer.cs │ │ ├── HistoricalEventsServerConfiguration.cs │ │ ├── InstallConfig.xml │ │ ├── Model │ │ ├── ModelDesign.csv │ │ ├── ModelDesign.xml │ │ ├── Quickstarts.HistoricalEvents.Classes.cs │ │ ├── Quickstarts.HistoricalEvents.Constants.cs │ │ ├── Quickstarts.HistoricalEvents.DataTypes.cs │ │ ├── Quickstarts.HistoricalEvents.NodeSet.xml │ │ ├── Quickstarts.HistoricalEvents.PredefinedNodes.uanodes │ │ ├── Quickstarts.HistoricalEvents.PredefinedNodes.xml │ │ ├── Quickstarts.HistoricalEvents.Types.bsd │ │ └── Quickstarts.HistoricalEvents.Types.xsd │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.BoilerServer.NodeSet.xml │ │ ├── Quickstarts.BoilerServer.PredefinedNodes.xml │ │ ├── Quickstarts.BoilerServer.Types.bsd │ │ ├── Quickstarts.BoilerServer.Types.xsd │ │ ├── Quickstarts.HistoricalEvents.NodeSet.xml │ │ ├── Quickstarts.HistoricalEvents.PredefinedNodes.xml │ │ ├── Quickstarts.HistoricalEvents.Types.bsd │ │ ├── Quickstarts.HistoricalEvents.Types.xsd │ │ ├── Quickstarts.HistoricalEventsServer.Config.xml │ │ ├── Quickstarts.HistoricalEventsServer.exe.config │ │ ├── Quickstarts.SimpleEvents.NodeSet.xml │ │ ├── Quickstarts.SimpleEvents.PredefinedNodes.xml │ │ ├── Quickstarts.SimpleEvents.Types.bsd │ │ ├── Quickstarts.SimpleEvents.Types.xsd │ │ ├── ReportGenerator.cs │ │ └── app.manifest │ ├── Methods │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Methods Client.csproj │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.MethodsClient.Config.xml │ │ └── Quickstarts.MethodsClient.exe.config │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── Methods Server.csproj │ │ ├── MethodsNodeManager.cs │ │ ├── MethodsServer.cs │ │ ├── MethodsServerConfiguration.cs │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.MethodsServer.Config.xml │ │ ├── Quickstarts.MethodsServer.exe.config │ │ └── app.manifest │ ├── PerfTest │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PerfTest Client.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.PerfTestClient.Config.xml │ │ └── Tester.cs │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── MemoryRegisterState.cs │ │ ├── Namespaces.cs │ │ ├── PerfTest Server.csproj │ │ ├── PerfTestNodeManager.cs │ │ ├── PerfTestServer.cs │ │ ├── PerfTestServerConfiguration.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.PerfTestServer.Config.xml │ │ └── UnderlyingSystem.cs │ ├── Reference │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.ReferenceClient.Config.xml │ │ ├── Quickstarts.ReferenceClient.exe.config │ │ └── Reference Client.csproj │ └── Server │ │ ├── Aggregates │ │ ├── AggregateCalculator.cs │ │ ├── AggregateCursor.cs │ │ ├── AggregateManager.cs │ │ ├── Aggregators.cs │ │ ├── BoundingValue.cs │ │ ├── Experiment.cs │ │ ├── InterpolativeAggregate.cs │ │ └── TimeSlice.cs │ │ ├── App.config │ │ ├── App.ico │ │ ├── BuildDesign.bat │ │ ├── Form2.Designer.cs │ │ ├── Form2.cs │ │ ├── Form2.resx │ │ ├── InstallConfig.xml │ │ ├── Model │ │ ├── ModelDesign.csv │ │ ├── ModelDesign.xml │ │ ├── Quickstarts.Reference.Classes.cs │ │ ├── Quickstarts.Reference.Constants.cs │ │ ├── Quickstarts.Reference.DataTypes.cs │ │ ├── Quickstarts.Reference.NodeSet.xml │ │ ├── Quickstarts.Reference.NodeSet2.xml │ │ ├── Quickstarts.Reference.PredefinedNodes.uanodes │ │ ├── Quickstarts.Reference.PredefinedNodes.xml │ │ ├── Quickstarts.Reference.Types.bsd │ │ └── Quickstarts.Reference.Types.xsd │ │ ├── MonitoredItemEventLogDlg.Designer.cs │ │ ├── MonitoredItemEventLogDlg.cs │ │ ├── MonitoredItemEventLogDlg.resx │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.ReferenceServer.Config.xml │ │ ├── Quickstarts.ReferenceServer.exe.config │ │ ├── Readme.htm │ │ ├── Reference Server.csproj │ │ ├── ReferenceNodeManager.cs │ │ ├── ReferenceServer.cs │ │ ├── ReferenceServerConfiguration.cs │ │ ├── Resources │ │ └── OPCFoundation.jpg │ │ └── app.manifest │ ├── SimpleEvents │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.SimpleEvents.Classes.cs │ │ ├── Quickstarts.SimpleEvents.Constants.cs │ │ ├── Quickstarts.SimpleEvents.DataTypes.cs │ │ ├── Quickstarts.SimpleEventsClient.Config.xml │ │ ├── Quickstarts.SimpleEventsClient.exe.config │ │ └── SimpleEvents Client.csproj │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── BuildDesign.bat │ │ ├── InstallConfig.xml │ │ ├── ModelDesign.csv │ │ ├── ModelDesign.xml │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.SimpleEvents.Classes.cs │ │ ├── Quickstarts.SimpleEvents.Constants.cs │ │ ├── Quickstarts.SimpleEvents.DataTypes.cs │ │ ├── Quickstarts.SimpleEvents.NodeSet.xml │ │ ├── Quickstarts.SimpleEvents.NodeSet2.xml │ │ ├── Quickstarts.SimpleEvents.PredefinedNodes.uanodes │ │ ├── Quickstarts.SimpleEvents.PredefinedNodes.xml │ │ ├── Quickstarts.SimpleEvents.Types.bsd │ │ ├── Quickstarts.SimpleEvents.Types.xsd │ │ ├── Quickstarts.SimpleEventsServer.Config.xml │ │ ├── Quickstarts.SimpleEventsServer.exe.config │ │ ├── SimpleEvents Server.csproj │ │ ├── SimpleEventsNodeManager.cs │ │ ├── SimpleEventsServer.cs │ │ ├── SimpleEventsServerConfiguration.cs │ │ └── app.manifest │ ├── Tutorial │ ├── Client - Final │ │ ├── App.config │ │ ├── App.ico │ │ ├── CallMethodDlg.Designer.cs │ │ ├── CallMethodDlg.cs │ │ ├── CallMethodDlg.resx │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── SetUserAndLocaleDlg.Designer.cs │ │ ├── SetUserAndLocaleDlg.cs │ │ ├── SetUserAndLocaleDlg.resx │ │ ├── ShowReferencesDlg.Designer.cs │ │ ├── ShowReferencesDlg.cs │ │ ├── ShowReferencesDlg.resx │ │ ├── SubscribeDataDlg.Designer.cs │ │ ├── SubscribeDataDlg.cs │ │ ├── SubscribeDataDlg.resx │ │ ├── Tutorial Client (Final).csproj │ │ ├── TutorialClient.Config.xml │ │ ├── TutorialClient.exe.config │ │ ├── TutorialModel.Constants.cs │ │ ├── TutorialModel.DataTypes.cs │ │ ├── WriteValueDlg.Designer.cs │ │ ├── WriteValueDlg.cs │ │ └── WriteValueDlg.resx │ ├── Client - Initial │ │ ├── App.config │ │ ├── App.ico │ │ ├── CallMethodDlg.Designer.cs │ │ ├── CallMethodDlg.cs │ │ ├── CallMethodDlg.resx │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── SetUserAndLocaleDlg.Designer.cs │ │ ├── SetUserAndLocaleDlg.cs │ │ ├── SetUserAndLocaleDlg.resx │ │ ├── ShowReferencesDlg.Designer.cs │ │ ├── ShowReferencesDlg.cs │ │ ├── ShowReferencesDlg.resx │ │ ├── SubscribeDataDlg.Designer.cs │ │ ├── SubscribeDataDlg.cs │ │ ├── SubscribeDataDlg.resx │ │ ├── SubscribeDlg.Designer.cs │ │ ├── SubscribeDlg.cs │ │ ├── SubscribeDlg.resx │ │ ├── Tutorial Client (Initial).csproj │ │ ├── TutorialClient.Config.xml │ │ ├── TutorialClient.exe.config │ │ ├── WriteValueDlg.Designer.cs │ │ ├── WriteValueDlg.cs │ │ └── WriteValueDlg.resx │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── CallMethodDlg.Designer.cs │ │ ├── CallMethodDlg.cs │ │ ├── CallMethodDlg.resx │ │ ├── ClassDiagram1.cd │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── SetUserAndLocaleDlg.Designer.cs │ │ ├── SetUserAndLocaleDlg.cs │ │ ├── SetUserAndLocaleDlg.resx │ │ ├── ShowReferencesDlg.Designer.cs │ │ ├── ShowReferencesDlg.cs │ │ ├── ShowReferencesDlg.resx │ │ ├── SubscribeDataDlg.Designer.cs │ │ ├── SubscribeDataDlg.cs │ │ ├── SubscribeDataDlg.resx │ │ ├── SubscribeDlg.Designer.cs │ │ ├── SubscribeDlg.cs │ │ ├── SubscribeDlg.resx │ │ ├── Tutorial Client.csproj │ │ ├── TutorialClient.Config.xml │ │ ├── TutorialClient.exe.config │ │ ├── TutorialModel.Constants.cs │ │ ├── TutorialModel.DataTypes.cs │ │ ├── WriteValueDlg.Designer.cs │ │ ├── WriteValueDlg.cs │ │ └── WriteValueDlg.resx │ ├── Server - Final │ │ ├── App.config │ │ ├── App.ico │ │ ├── BuildDesign.bat │ │ ├── InstallConfig.xml │ │ ├── Model │ │ │ ├── ModelDesign.csv │ │ │ ├── ModelDesign.xml │ │ │ ├── TutorialModel.Classes.cs │ │ │ ├── TutorialModel.Constants.cs │ │ │ ├── TutorialModel.DataTypes.cs │ │ │ ├── TutorialModel.NodeSet.xml │ │ │ ├── TutorialModel.NodeSet2.xml │ │ │ ├── TutorialModel.PredefinedNodes.uanodes │ │ │ ├── TutorialModel.PredefinedNodes.xml │ │ │ ├── TutorialModel.Types.bsd │ │ │ └── TutorialModel.Types.xsd │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Tutorial Server (Final).csproj │ │ ├── TutorialDaComNodeManager.cs │ │ ├── TutorialNodeManager.cs │ │ ├── TutorialServer.Config.xml │ │ ├── TutorialServer.cs │ │ ├── TutorialServer.exe.config │ │ └── TutorialServerConfiguration.cs │ ├── Server - Initial │ │ ├── App.config │ │ ├── App.ico │ │ ├── BuildDesign.bat │ │ ├── InstallConfig.xml │ │ ├── Model │ │ │ ├── ModelDesign.csv │ │ │ └── ModelDesign.xml │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Tutorial Server (Initial).csproj │ │ ├── TutorialDaComNodeManager.cs │ │ ├── TutorialNodeManager.cs │ │ ├── TutorialServer.Config.xml │ │ ├── TutorialServer.cs │ │ ├── TutorialServer.exe.config │ │ └── TutorialServerConfiguration.cs │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── BuildDesign.bat │ │ ├── InstallConfig.xml │ │ ├── Model │ │ ├── ModelDesign.csv │ │ └── ModelDesign.xml │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Tutorial Server.csproj │ │ ├── TutorialDaComNodeManager.cs │ │ ├── TutorialNodeManager.cs │ │ ├── TutorialServer.Config.xml │ │ ├── TutorialServer.cs │ │ ├── TutorialServer.exe.config │ │ └── TutorialServerConfiguration.cs │ ├── UserAuthentication │ ├── Client │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Quickstarts.UserAuthenticationClient.Config.xml │ │ ├── Quickstarts.UserAuthenticationClient.exe.config │ │ └── UserAuthentication Client.csproj │ └── Server │ │ ├── App.config │ │ ├── App.ico │ │ ├── InstallConfig.xml │ │ ├── Namespaces.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Quickstarts.UserAuthenticationServer.Config.xml │ │ ├── Quickstarts.UserAuthenticationServer.exe.config │ │ ├── UserAuthentication Server.csproj │ │ ├── UserAuthenticationNodeManager.cs │ │ ├── UserAuthenticationServer.cs │ │ ├── UserAuthenticationServerConfiguration.cs │ │ └── app.manifest │ └── Views │ ├── Client │ ├── App.config │ ├── App.ico │ ├── InstallConfig.xml │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Quickstarts.ViewsClient.Config.xml │ ├── Quickstarts.ViewsClient.exe.config │ └── Views Client.csproj │ └── Server │ ├── App.config │ ├── App.ico │ ├── BuildDesign.bat │ ├── InstallConfig.xml │ ├── Model │ ├── EngineeringDesign.csv │ ├── EngineeringDesign.xml │ ├── ModelDesign.csv │ ├── ModelDesign.xml │ ├── OperationsDesign.csv │ ├── OperationsDesign.xml │ ├── Quickstarts.Engineering.Classes.cs │ ├── Quickstarts.Engineering.Constants.cs │ ├── Quickstarts.Engineering.DataTypes.cs │ ├── Quickstarts.Engineering.NodeSet.xml │ ├── Quickstarts.Engineering.NodeSet2.xml │ ├── Quickstarts.Engineering.PredefinedNodes.uanodes │ ├── Quickstarts.Engineering.PredefinedNodes.xml │ ├── Quickstarts.Engineering.Types.bsd │ ├── Quickstarts.Engineering.Types.xsd │ ├── Quickstarts.Operations.Classes.cs │ ├── Quickstarts.Operations.Constants.cs │ ├── Quickstarts.Operations.DataTypes.cs │ ├── Quickstarts.Operations.NodeSet.xml │ ├── Quickstarts.Operations.NodeSet2.xml │ ├── Quickstarts.Operations.PredefinedNodes.uanodes │ ├── Quickstarts.Operations.PredefinedNodes.xml │ ├── Quickstarts.Operations.Types.bsd │ ├── Quickstarts.Operations.Types.xsd │ ├── Quickstarts.Views.Classes.cs │ ├── Quickstarts.Views.Constants.cs │ ├── Quickstarts.Views.DataTypes.cs │ ├── Quickstarts.Views.NodeSet.xml │ ├── Quickstarts.Views.NodeSet2.xml │ ├── Quickstarts.Views.PredefinedNodes.uanodes │ ├── Quickstarts.Views.PredefinedNodes.xml │ ├── Quickstarts.Views.Types.bsd │ └── Quickstarts.Views.Types.xsd │ ├── Namespaces.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Quickstarts.ViewsServer.Config.xml │ ├── Quickstarts.ViewsServer.exe.config │ ├── Views Server.csproj │ ├── ViewsNodeManager.cs │ ├── ViewsServer.cs │ ├── ViewsServerConfiguration.cs │ └── app.manifest ├── Stack ├── Core │ ├── Documentation │ │ ├── Opc.Ua.Bindings.cs │ │ ├── Opc.Ua.Configuration.cs │ │ ├── Opc.Ua.Schema.Binary.cs │ │ ├── Opc.Ua.Schema.Xml.cs │ │ ├── Opc.Ua.Schema.cs │ │ └── Opc.Ua.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── AssemblyVersionInfo.cs │ ├── Schema │ │ ├── ApplicationConfiguration.cs │ │ ├── ApplicationConfiguration.xsd │ │ ├── AttributeIds.csv │ │ ├── BuildSchema.bat │ │ ├── NodeIds.csv │ │ ├── Opc.Ua.Endpoints.wsdl │ │ ├── Opc.Ua.NodeSet.xml │ │ ├── Opc.Ua.NodeSet2.xml │ │ ├── Opc.Ua.Services.wsdl │ │ ├── Opc.Ua.StatusCodes.csv │ │ ├── Opc.Ua.Types.bsd │ │ ├── Opc.Ua.Types.xsd │ │ ├── SecuredApplication.cs │ │ ├── SecuredApplication.xsd │ │ ├── SecuredApplicationHelpers.cs │ │ ├── UANodeSet.cs │ │ ├── UANodeSet.xsd │ │ ├── UANodeSetHelpers.cs │ │ └── UAVariant.xsd │ ├── Security │ │ ├── AccessControl │ │ │ ├── AccessTemplateManager.cs │ │ │ ├── ApplicationAccessRule.cs │ │ │ ├── HttpAccessRule.cs │ │ │ └── UserRoleManager.cs │ │ ├── Audit.cs │ │ ├── Certificates │ │ │ ├── CertificateFactory.cs │ │ │ ├── CertificateIdentifier.cs │ │ │ ├── CertificateStoreIdentifier.cs │ │ │ ├── CertificateTrustList.cs │ │ │ ├── CertificateValidator.cs │ │ │ ├── Common │ │ │ │ ├── AsnUtils.cs │ │ │ │ ├── HashAlgorithmName.cs │ │ │ │ └── Oids.cs │ │ │ ├── DirectoryCertificateStore.cs │ │ │ ├── EncryptedData.cs │ │ │ ├── Extensions │ │ │ │ └── X509Extensions.cs │ │ │ ├── ICertificate.cs │ │ │ ├── ICertificateStore.cs │ │ │ ├── ICertificateValidator.cs │ │ │ ├── RsaUtils.cs │ │ │ ├── SecurityConfiguration.cs │ │ │ ├── Win32.cs │ │ │ ├── WindowsCertificateStore.cs │ │ │ ├── X509AuthorityKeyIdentifierExtension.cs │ │ │ ├── X509CRL.cs │ │ │ ├── X509Crl │ │ │ │ └── X509Signature.cs │ │ │ ├── X509SubjectAltNameExtension.cs │ │ │ └── X509Utils.cs │ │ └── Constants │ │ │ ├── SecurityConstants.cs │ │ │ └── SecurityPolicies.cs │ ├── SilverlightDefs.cs │ ├── Stack │ │ ├── Bindings │ │ │ ├── ArraySegmentStream.cs │ │ │ ├── BaseBinding.cs │ │ │ ├── BindingFactory.cs │ │ │ ├── BufferManager.cs │ │ │ ├── UaHttpsSoapBinding.cs │ │ │ ├── UaSoapXmlBinding.cs │ │ │ ├── UaSoapXmlOverPipeBinding.cs │ │ │ ├── UaSoapXmlOverTcpBinding.cs │ │ │ └── UaTcpBinding.cs │ │ ├── Client │ │ │ ├── ClientBase.cs │ │ │ ├── DiscoveryClient.cs │ │ │ ├── IChannelBase.cs │ │ │ ├── IServiceRequest.cs │ │ │ ├── IUserIdentity.cs │ │ │ ├── InvokeServiceMessage.cs │ │ │ ├── RegistrationClient.cs │ │ │ ├── SessionChannel.cs │ │ │ ├── UserIdentity.cs │ │ │ └── WcfChannelBase.cs │ │ ├── Configuration │ │ │ ├── ApplicationConfiguration.cs │ │ │ ├── ConfigurationWatcher.cs │ │ │ ├── ConfiguredEndpoints.cs │ │ │ ├── EndpointConfiguration.cs │ │ │ ├── EndpointDescription.cs │ │ │ ├── ISecurityConfigurationManager.cs │ │ │ ├── SecurityConfigurationManager.cs │ │ │ └── ServerProperties.cs │ │ ├── Constants │ │ │ ├── ConditionStateNames.cs │ │ │ ├── DataTypes.Helpers.cs │ │ │ ├── Namespaces.cs │ │ │ └── ReferenceTypes.Helpers.cs │ │ ├── Generated │ │ │ ├── Opc.Ua.Channels.cs │ │ │ ├── Opc.Ua.Classes.cs │ │ │ ├── Opc.Ua.Client.cs │ │ │ ├── Opc.Ua.Constants.cs │ │ │ ├── Opc.Ua.DataTypes.cs │ │ │ ├── Opc.Ua.Endpoints.cs │ │ │ ├── Opc.Ua.Interfaces.cs │ │ │ ├── Opc.Ua.Messages.cs │ │ │ ├── Opc.Ua.NodeSet2.Part10.xml │ │ │ ├── Opc.Ua.NodeSet2.Part11.xml │ │ │ ├── Opc.Ua.NodeSet2.Part12.xml │ │ │ ├── Opc.Ua.NodeSet2.Part13.xml │ │ │ ├── Opc.Ua.NodeSet2.Part14.xml │ │ │ ├── Opc.Ua.NodeSet2.Part3.xml │ │ │ ├── Opc.Ua.NodeSet2.Part4.xml │ │ │ ├── Opc.Ua.NodeSet2.Part5.xml │ │ │ ├── Opc.Ua.NodeSet2.Part8.xml │ │ │ ├── Opc.Ua.NodeSet2.Part9.xml │ │ │ ├── Opc.Ua.NodeSet2.Part999.xml │ │ │ ├── Opc.Ua.NodeSet2.xml │ │ │ ├── Opc.Ua.PredefinedNodes.uanodes │ │ │ ├── Opc.Ua.PredefinedNodes.xml │ │ │ └── Opc.Ua.ServerBase.cs │ │ ├── Https │ │ │ ├── HttpsListener.cs │ │ │ └── HttpsTransportChannel.cs │ │ ├── Nodes │ │ │ ├── ContentFilter.cs │ │ │ ├── IFilterTarget.cs │ │ │ ├── INode.cs │ │ │ ├── IOperationContext.cs │ │ │ ├── Node.cs │ │ │ ├── NodeSet.cs │ │ │ ├── NodeTable.cs │ │ │ ├── ReferenceTable.cs │ │ │ ├── TypeTable.cs │ │ │ └── ViewTable.cs │ │ ├── Server │ │ │ ├── ClientAccessPolicy.xml │ │ │ ├── EndpointBase.cs │ │ │ ├── IEndpointBase.cs │ │ │ ├── IServerBase.cs │ │ │ ├── NonHttpEndpoint.cs │ │ │ ├── SecureChannelContext.cs │ │ │ ├── ServerBase.cs │ │ │ ├── ServiceHost.cs │ │ │ └── ServiceMessageContextBehaviorAttribute.cs │ │ ├── State │ │ │ ├── AcknowledgeableConditionState.cs │ │ │ ├── AlarmConditionState.cs │ │ │ ├── AuditEventState.cs │ │ │ ├── BaseEventState.cs │ │ │ ├── BaseInstanceState.cs │ │ │ ├── BaseInstanceStateSnapshot.cs │ │ │ ├── BaseObjectState.cs │ │ │ ├── BaseObjectTypeState.cs │ │ │ ├── BaseTypeState.cs │ │ │ ├── BaseVariableState.cs │ │ │ ├── BaseVariableTypeState.cs │ │ │ ├── ConditionState.cs │ │ │ ├── DataTypeState.cs │ │ │ ├── DialogConditionState.cs │ │ │ ├── ExclusiveLimitAlarmState.cs │ │ │ ├── ExclusiveLimitStateMachineState.cs │ │ │ ├── FiniteStateMachineState.cs │ │ │ ├── ISystemContext.cs │ │ │ ├── LimitAlarmState.cs │ │ │ ├── MethodState.cs │ │ │ ├── NodeBrowser.cs │ │ │ ├── NodeState.cs │ │ │ ├── NodeStateCollection.cs │ │ │ ├── NonExclusiveLimitAlarmState.cs │ │ │ ├── ProgramStateMachineState.cs │ │ │ ├── ReferenceTypeState.cs │ │ │ ├── ShelvedStateMachineState.cs │ │ │ └── ViewState.cs │ │ ├── Tcp │ │ │ ├── TcpAsyncOperation.cs │ │ │ ├── TcpChannel.Asymmetric.cs │ │ │ ├── TcpChannel.Rsa.cs │ │ │ ├── TcpChannel.Symmetric.cs │ │ │ ├── TcpChannel.cs │ │ │ ├── TcpChannelQuotas.cs │ │ │ ├── TcpChannelToken.cs │ │ │ ├── TcpClientChannel.cs │ │ │ ├── TcpListener.cs │ │ │ ├── TcpMessageSocket.cs │ │ │ ├── TcpMessageType.cs │ │ │ ├── TcpServerChannel.cs │ │ │ ├── TcpTransportChannel.cs │ │ │ └── Wcf │ │ │ │ ├── BinaryEncodingMessageFormatter.cs │ │ │ │ ├── IBinaryEncodingCapabilities.cs │ │ │ │ ├── IUaTcpSecureChannel.cs │ │ │ │ ├── InvokeServiceBodyWriter.cs │ │ │ │ ├── StreamSecurityBindingElement.cs │ │ │ │ ├── UaTcpChannelFactory.cs │ │ │ │ ├── UaTcpChannelListener.cs │ │ │ │ ├── UaTcpReplyChannel.cs │ │ │ │ ├── UaTcpRequestChannel.cs │ │ │ │ └── UaTcpTransportBindingElement.cs │ │ ├── Transport │ │ │ ├── AsyncResultBase.cs │ │ │ ├── ITransportChannel.cs │ │ │ ├── ITransportListener.cs │ │ │ ├── ITransportListenerCallback.cs │ │ │ ├── TransportChannelSettings.cs │ │ │ └── TransportListenerSettings.cs │ │ └── Types │ │ │ ├── Argument.cs │ │ │ ├── BrowseDescription.cs │ │ │ ├── BrowsePath.cs │ │ │ ├── CallMethodRequest.cs │ │ │ ├── ContentFilter.Evaluate.cs │ │ │ ├── EUInformation.cs │ │ │ ├── EventFieldList.cs │ │ │ ├── HistoryReadValueId.cs │ │ │ ├── HistoryUpdateDetails.cs │ │ │ ├── MonitoredItemCreateRequest.cs │ │ │ ├── MonitoredItemCreateResult.cs │ │ │ ├── MonitoredItemModifyRequest.cs │ │ │ ├── MonitoredItemNotification.cs │ │ │ ├── MonitoringFilter.cs │ │ │ ├── NotificationMessage.cs │ │ │ ├── QueryDataSet.cs │ │ │ ├── Range.cs │ │ │ ├── ReadValueId.cs │ │ │ ├── ReferenceDescription.cs │ │ │ ├── ServiceFault.cs │ │ │ ├── SoftwareCertficate.cs │ │ │ ├── StatusResult.cs │ │ │ ├── UserIdentityToken.cs │ │ │ ├── UserTokenPolicy.cs │ │ │ ├── VariableAttributes.cs │ │ │ ├── ViewDescription.cs │ │ │ └── WriteValue.cs │ ├── Types │ │ ├── BuiltIn │ │ │ ├── AttributeValues.cs │ │ │ ├── BuiltInTypeCollections.cs │ │ │ ├── DataValue.cs │ │ │ ├── DiagnosticInfo.cs │ │ │ ├── DiagnosticMasks.cs │ │ │ ├── ExpandedNodeId.cs │ │ │ ├── ExtensionObject.cs │ │ │ ├── ITranslatableObject.cs │ │ │ ├── ITypeTable.cs │ │ │ ├── LocalizedText.cs │ │ │ ├── MessageContextExtension.cs │ │ │ ├── NodeId.cs │ │ │ ├── QualifiedName.cs │ │ │ ├── StatusCode.cs │ │ │ ├── Uuid.cs │ │ │ └── Variant.cs │ │ ├── Constants │ │ │ ├── Attributes.Helpers.cs │ │ │ └── StatusCodes.Helpers.cs │ │ ├── Encoders │ │ │ ├── BinaryDecoder.cs │ │ │ ├── BinaryEncoder.cs │ │ │ ├── EncodableObject.cs │ │ │ ├── EncodeableFactory.cs │ │ │ ├── IDecoder.cs │ │ │ ├── IEncodable.cs │ │ │ ├── IEncoder.cs │ │ │ ├── XmlDecoder.cs │ │ │ └── XmlEncoder.cs │ │ ├── Generated │ │ │ ├── Opc.Ua.Attributes.cs │ │ │ └── Opc.Ua.StatusCodes.cs │ │ ├── Schemas │ │ │ ├── BinarySchema.cs │ │ │ ├── BinarySchemaValidator.cs │ │ │ ├── BuiltInTypes.bsd │ │ │ ├── BuiltInTypes.xml │ │ │ ├── OPCBinarySchema.cs │ │ │ ├── OPCBinarySchema.xsd │ │ │ ├── SchemaValidator.cs │ │ │ ├── StandardTypes.bsd │ │ │ └── XmlSchemaValidator.cs │ │ └── Utils │ │ │ ├── DataComparer.cs │ │ │ ├── DataGenerator.cs │ │ │ ├── HiResClock.cs │ │ │ ├── LocalizedData.txt │ │ │ ├── Lock.cs │ │ │ ├── NamespaceTable.cs │ │ │ ├── NumericRange.cs │ │ │ ├── ReadOnlyList.cs │ │ │ ├── RelativePath.cs │ │ │ ├── ServiceMessageContext.cs │ │ │ ├── ServiceResult.cs │ │ │ ├── ServiceResultException.cs │ │ │ ├── TypeInfo.cs │ │ │ └── Utils.cs │ ├── UA Core Library.csproj │ └── UA Silverlight Core Library.csproj └── Documentation │ └── OPC UA .NET Stack 1.02 Readme.rtf ├── UA COM Interop.sln ├── UA Configuration Tool.sln ├── UA Core Library.sln ├── UA Quickstart Applications.sln ├── UA Sample Applications.sln ├── UA Sample Libraries.sln └── WelcomeApplication.sln /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.suo 4 | *.user 5 | /packages 6 | .vs/* 7 | -------------------------------------------------------------------------------- /Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Changelog.txt -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/AeAreaBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/AeAreaBrowser.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/AeAreaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/AeAreaState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/AeConditionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/AeConditionState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/AeEventTypeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/AeEventTypeState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/AeModelUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/AeModelUtils.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/AeParseNodeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/AeParseNodeId.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/AeSourceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/AeSourceState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/AeTypeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/AeTypeCache.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Ae/ComAeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Ae/ComAeClient.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComClient.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComClientManager.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComClientNodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComClientNodeManager.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComConnectionPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComConnectionPoint.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComEnumString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComEnumString.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComItemIdParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComItemIdParser.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComObject.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComShutdownCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComShutdownCallback.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ComWrapperServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ComWrapperServer.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/ComDaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/ComDaClient.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/ComDaDataCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/ComDaDataCallback.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/ComDaGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/ComDaGroup.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/DaBranchState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/DaBranchState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/DaElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/DaElement.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/DaItemState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/DaItemState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/DaModelUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/DaModelUtils.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/DaParseNodeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/DaParseNodeId.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/DaProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/DaProperty.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/DaPropertyState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/DaPropertyState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/DaValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/DaValue.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/ReadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/ReadRequest.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Da/WriteRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Da/WriteRequest.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Hda/ComHdaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Hda/ComHdaClient.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Hda/HdaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Hda/HdaAttribute.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Hda/HdaBranchState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Hda/HdaBranchState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Hda/HdaItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Hda/HdaItem.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Hda/HdaItemState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Hda/HdaItemState.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Hda/HdaModelUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Hda/HdaModelUtils.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/Hda/HdaReadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/Hda/HdaReadRequest.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/ParsedNodeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/ParsedNodeId.cs -------------------------------------------------------------------------------- /ComIOP/Common/Client/UserNameValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Client/UserNameValidator.cs -------------------------------------------------------------------------------- /ComIOP/Common/Common/BuildDesign.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/BuildDesign.bat -------------------------------------------------------------------------------- /ComIOP/Common/Common/ComUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/ComUtils.cs -------------------------------------------------------------------------------- /ComIOP/Common/Common/ModelDesign.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/ModelDesign.csv -------------------------------------------------------------------------------- /ComIOP/Common/Common/ModelDesign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/ModelDesign.xml -------------------------------------------------------------------------------- /ComIOP/Common/Common/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/Namespaces.cs -------------------------------------------------------------------------------- /ComIOP/Common/Common/Opc.Ua.Com.Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/Opc.Ua.Com.Classes.cs -------------------------------------------------------------------------------- /ComIOP/Common/Common/Opc.Ua.Com.Types.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/Opc.Ua.Com.Types.bsd -------------------------------------------------------------------------------- /ComIOP/Common/Common/Opc.Ua.Com.Types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/Opc.Ua.Com.Types.xsd -------------------------------------------------------------------------------- /ComIOP/Common/Common/PropertyIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/PropertyIds.cs -------------------------------------------------------------------------------- /ComIOP/Common/Common/ResultIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/ResultIds.cs -------------------------------------------------------------------------------- /ComIOP/Common/Common/ServerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/ServerFactory.cs -------------------------------------------------------------------------------- /ComIOP/Common/Common/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Common/Specification.cs -------------------------------------------------------------------------------- /ComIOP/Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ComIOP/Common/Proxy/ComDaGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Proxy/ComDaGroup.cs -------------------------------------------------------------------------------- /ComIOP/Common/Proxy/ComDaProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Proxy/ComDaProxy.cs -------------------------------------------------------------------------------- /ComIOP/Common/Proxy/ComProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Proxy/ComProxy.cs -------------------------------------------------------------------------------- /ComIOP/Common/Proxy/DaElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Proxy/DaElement.cs -------------------------------------------------------------------------------- /ComIOP/Common/Proxy/DaProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Proxy/DaProperty.cs -------------------------------------------------------------------------------- /ComIOP/Common/Proxy/DaValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Proxy/DaValue.cs -------------------------------------------------------------------------------- /ComIOP/Common/Rcw/AlarmsAndEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Rcw/AlarmsAndEvents.cs -------------------------------------------------------------------------------- /ComIOP/Common/Rcw/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Rcw/Common.cs -------------------------------------------------------------------------------- /ComIOP/Common/Rcw/DataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Rcw/DataAccess.cs -------------------------------------------------------------------------------- /ComIOP/Common/Rcw/HistoricalDataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Rcw/HistoricalDataAccess.cs -------------------------------------------------------------------------------- /ComIOP/Common/Rcw/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Rcw/Security.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Ae/ComAeCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Ae/ComAeCondition.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Ae/ComAeProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Ae/ComAeProxy.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Ae/ComEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Ae/ComEnumerator.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Ae2/AeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Ae2/AeEvent.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Ae2/AeEventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Ae2/AeEventFilter.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Ae2/ComAeBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Ae2/ComAeBrowser.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Ae2/ComAeProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Ae2/ComAeProxy.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Ae2/ComAeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Ae2/ComAeUtils.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/ComNamespaceMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/ComNamespaceMapper.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/ComProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/ComProxy.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Da/Com.Da.Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Da/Com.Da.Group.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Da/Com.Da.Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Da/Com.Da.Server.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Da/ComDaGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Da/ComDaGroup.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Da/ComDaGroupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Da/ComDaGroupItem.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Da/ComDaProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Da/ComDaProxy.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Da/DaElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Da/DaElement.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Da/DaProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Da/DaProperty.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Da/DaValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Da/DaValue.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Hda/ComHdaBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Hda/ComHdaBrowser.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Hda/ComHdaProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Hda/ComHdaProxy.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Hda/HdaAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Hda/HdaAggregate.cs -------------------------------------------------------------------------------- /ComIOP/Common/Server/Hda/HdaReadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Common/Server/Hda/HdaReadRequest.cs -------------------------------------------------------------------------------- /ComIOP/Rcw/AlarmsAndEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Rcw/AlarmsAndEvents.cs -------------------------------------------------------------------------------- /ComIOP/Rcw/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Rcw/Common.cs -------------------------------------------------------------------------------- /ComIOP/Rcw/DataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Rcw/DataAccess.cs -------------------------------------------------------------------------------- /ComIOP/Rcw/HistoricalDataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Rcw/HistoricalDataAccess.cs -------------------------------------------------------------------------------- /ComIOP/Rcw/OPC COM RCW Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Rcw/OPC COM RCW Library.csproj -------------------------------------------------------------------------------- /ComIOP/Rcw/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Rcw/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcArray.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcBrowseElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcBrowseElement.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcCPContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcCPContainer.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcCPContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcCPContainer.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcClassFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcClassFactory.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcClassFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcClassFactory.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcComModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcComModule.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcComModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcComModule.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcComObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcComObject.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcCommon.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcCommon.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcEnumCPs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcEnumCPs.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcEnumCPs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcEnumCPs.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcEnumString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcEnumString.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcEnumString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcEnumString.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcEnumUnknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcEnumUnknown.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcEnumUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcEnumUnknown.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcFile.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcFile.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcList.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcMap.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcSecurity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcSecurity.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcSecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcSecurity.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcSortedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcSortedArray.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcString.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcString.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcText.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcText.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcTextReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcTextReader.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcTextReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcTextReader.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcThread.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcThread.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcThreadPool.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcThreadPool.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcVariant.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcVariant.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcXmlAnyType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcXmlAnyType.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcXmlAnyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcXmlAnyType.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcXmlAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcXmlAttribute.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcXmlAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcXmlAttribute.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcXmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcXmlDocument.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcXmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcXmlDocument.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcXmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcXmlElement.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/COpcXmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/COpcXmlElement.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcCategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcCategory.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcCategory.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcDefs.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcMatch.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcMatch.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcRegistry.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcRegistry.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcUtils.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcUtils.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcXmlType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcXmlType.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/OpcXmlType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/OpcXmlType.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/StdAfx.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/StdAfx.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Common/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Common/resource.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcBatchDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcBatchDef.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcBatchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcBatchError.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcBatchProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcBatchProps.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcCmd.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcCmd.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcCmd.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcCmdError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcCmdError.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcCmd_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcCmd_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcDx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcDx.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcDx.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcDx.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcDxError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcDxError.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcDx_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcDx_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcEnum.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcEnum.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcEnum.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcEnum_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcEnum_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcErrSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcErrSec.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/OpcHda_Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/OpcHda_Error.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/Version.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcSec.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcSec.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcSec.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcSec_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcSec_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opc_ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opc_ae.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opc_ae.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opc_ae.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opc_ae_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opc_ae_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcae_er.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcae_er.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcaedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcaedef.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcbc.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcbc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcbc.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcbc_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcbc_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opccomn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opccomn.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opccomn.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opccomn.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opccomn_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opccomn_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcda.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcda.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcda.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcda_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcda_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcerror.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opchda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opchda.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opchda.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opchda.idl -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opchda_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opchda_i.c -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_attributes.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_base64.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_browsenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_browsenames.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_buffer.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_channel.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_clientapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_clientapi.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_clientproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_clientproxy.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_config.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_connection.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_core.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_credentials.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_crypto.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_datetime.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_decoder.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_encoder.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_endpoint.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_exclusions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_exclusions.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_guid.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_identifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_identifiers.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_list.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_listener.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_memory.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_p_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_p_crypto.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_p_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_p_interface.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_p_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_p_pki.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_p_types.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_pki.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_proxystub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_proxystub.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_serverapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_serverapi.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_serverstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_serverstub.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_socket.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_statuscodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_statuscodes.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_stream.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_string.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_stringtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_stringtable.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_thread.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_threadpool.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_timer.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_trace.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_types.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_utilities.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_xmldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_xmldefs.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_xmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_xmlreader.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/Include/opcua_xmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/Include/opcua_xmlwriter.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/ProxyServer/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ProxyServer/Main.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/ProxyServer/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ProxyServer/StdAfx.cpp -------------------------------------------------------------------------------- /ComIOP/Wrapper/ProxyServer/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ProxyServer/StdAfx.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/ProxyServer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ProxyServer/app.config -------------------------------------------------------------------------------- /ComIOP/Wrapper/ProxyServer/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ProxyServer/app.ico -------------------------------------------------------------------------------- /ComIOP/Wrapper/ProxyServer/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ProxyServer/app.rc -------------------------------------------------------------------------------- /ComIOP/Wrapper/ProxyServer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ProxyServer/resource.h -------------------------------------------------------------------------------- /ComIOP/Wrapper/ServerWrapper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ServerWrapper/App.config -------------------------------------------------------------------------------- /ComIOP/Wrapper/ServerWrapper/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ServerWrapper/App.ico -------------------------------------------------------------------------------- /ComIOP/Wrapper/ServerWrapper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ServerWrapper/Program.cs -------------------------------------------------------------------------------- /ComIOP/Wrapper/ServerWrapper/ServerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ServerWrapper/ServerForm.cs -------------------------------------------------------------------------------- /ComIOP/Wrapper/ServerWrapper/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ComIOP/Wrapper/ServerWrapper/app.manifest -------------------------------------------------------------------------------- /ConfigurationTool/Application/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ConfigurationTool/Application/App.config -------------------------------------------------------------------------------- /ConfigurationTool/Application/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ConfigurationTool/Application/App.ico -------------------------------------------------------------------------------- /ConfigurationTool/Application/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ConfigurationTool/Application/MainForm.cs -------------------------------------------------------------------------------- /ConfigurationTool/Application/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ConfigurationTool/Application/Program.cs -------------------------------------------------------------------------------- /ConfigurationTool/Application/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ConfigurationTool/Application/app.manifest -------------------------------------------------------------------------------- /ConfigurationTool/Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/ConfigurationTool/Console/Program.cs -------------------------------------------------------------------------------- /Dashboard/ApplicationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/ApplicationState.cs -------------------------------------------------------------------------------- /Dashboard/ApplicationUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/ApplicationUserControl.cs -------------------------------------------------------------------------------- /Dashboard/ApplicationUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/ApplicationUserControl.resx -------------------------------------------------------------------------------- /Dashboard/Information.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Information.jpg -------------------------------------------------------------------------------- /Dashboard/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Main.Designer.cs -------------------------------------------------------------------------------- /Dashboard/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Main.cs -------------------------------------------------------------------------------- /Dashboard/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Main.resx -------------------------------------------------------------------------------- /Dashboard/OPCFoundation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/OPCFoundation.ico -------------------------------------------------------------------------------- /Dashboard/OPCFoundation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/OPCFoundation.jpg -------------------------------------------------------------------------------- /Dashboard/OPCLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/OPCLogo.bmp -------------------------------------------------------------------------------- /Dashboard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Program.cs -------------------------------------------------------------------------------- /Dashboard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Dashboard/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Dashboard/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Properties/Resources.resx -------------------------------------------------------------------------------- /Dashboard/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Dashboard/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Properties/Settings.settings -------------------------------------------------------------------------------- /Dashboard/Resources/OPCLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Resources/OPCLogo.bmp -------------------------------------------------------------------------------- /Dashboard/Symbol_Play_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/Symbol_Play_2.png -------------------------------------------------------------------------------- /Dashboard/WelcomeApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/WelcomeApplication.csproj -------------------------------------------------------------------------------- /Dashboard/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Dashboard/app.config -------------------------------------------------------------------------------- /Help/Content.dll/Interop.NetFwTypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Interop.NetFwTypeLib.dll -------------------------------------------------------------------------------- /Help/Content.dll/Opc.Ua.Client.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Opc.Ua.Client.XML -------------------------------------------------------------------------------- /Help/Content.dll/Opc.Ua.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Opc.Ua.Client.dll -------------------------------------------------------------------------------- /Help/Content.dll/Opc.Ua.Configuration.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Opc.Ua.Configuration.XML -------------------------------------------------------------------------------- /Help/Content.dll/Opc.Ua.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Opc.Ua.Configuration.dll -------------------------------------------------------------------------------- /Help/Content.dll/Opc.Ua.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Opc.Ua.Core.XML -------------------------------------------------------------------------------- /Help/Content.dll/Opc.Ua.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Opc.Ua.Core.dll -------------------------------------------------------------------------------- /Help/Content.dll/Opc.Ua.Server.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Opc.Ua.Server.XML -------------------------------------------------------------------------------- /Help/Content.dll/Opc.Ua.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.dll/Opc.Ua.Server.dll -------------------------------------------------------------------------------- /Help/Content.maml/BasicProgramming .aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/BasicProgramming .aml -------------------------------------------------------------------------------- /Help/Content.maml/Client.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Client.aml -------------------------------------------------------------------------------- /Help/Content.maml/Content.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Content.csproj -------------------------------------------------------------------------------- /Help/Content.maml/DCOMInteroperability.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/DCOMInteroperability.aml -------------------------------------------------------------------------------- /Help/Content.maml/Deliverables.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Deliverables.aml -------------------------------------------------------------------------------- /Help/Content.maml/FeatureDetails .aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/FeatureDetails .aml -------------------------------------------------------------------------------- /Help/Content.maml/FeedbackAndCommunity.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/FeedbackAndCommunity.aml -------------------------------------------------------------------------------- /Help/Content.maml/HowTo/Methods.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/HowTo/Methods.aml -------------------------------------------------------------------------------- /Help/Content.maml/LicenseAgreement.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/LicenseAgreement.aml -------------------------------------------------------------------------------- /Help/Content.maml/ReleaseNotes.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/ReleaseNotes.aml -------------------------------------------------------------------------------- /Help/Content.maml/Samples .aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Samples .aml -------------------------------------------------------------------------------- /Help/Content.maml/Samples/Overview.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Samples/Overview.aml -------------------------------------------------------------------------------- /Help/Content.maml/Samples/SampleClient.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Samples/SampleClient.aml -------------------------------------------------------------------------------- /Help/Content.maml/Samples/SampleServer.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Samples/SampleServer.aml -------------------------------------------------------------------------------- /Help/Content.maml/ServerToolkit.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/ServerToolkit.aml -------------------------------------------------------------------------------- /Help/Content.maml/Stack.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Stack.aml -------------------------------------------------------------------------------- /Help/Content.maml/SystemRequirements .aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/SystemRequirements .aml -------------------------------------------------------------------------------- /Help/Content.maml/Tools.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Tools.aml -------------------------------------------------------------------------------- /Help/Content.maml/Weclome/Contributors.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Weclome/Contributors.aml -------------------------------------------------------------------------------- /Help/Content.maml/Welcome.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Content.maml/Welcome.aml -------------------------------------------------------------------------------- /Help/Graphics/OpenSessionFlowDiagram.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Graphics/OpenSessionFlowDiagram.JPG -------------------------------------------------------------------------------- /Help/Graphics/PublishingStateMachine.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Graphics/PublishingStateMachine.JPG -------------------------------------------------------------------------------- /Help/Graphics/ServerSDKClasses.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Graphics/ServerSDKClasses.JPG -------------------------------------------------------------------------------- /Help/Graphics/TheWCFProgrammingModel.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Graphics/TheWCFProgrammingModel.JPG -------------------------------------------------------------------------------- /Help/RoboHelp/!Language!/!Language!.fpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/!Language!/!Language!.fpj -------------------------------------------------------------------------------- /Help/RoboHelp/!Language!/en_US/en_US.fpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/!Language!/en_US/en_US.fpj -------------------------------------------------------------------------------- /Help/RoboHelp/!SSL!/WebHelpMembers/searchoptions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Help/RoboHelp/!SSL!/WebHelpMembers/whxdata/synonym.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Help/RoboHelp/!SSL!/WebHelpMembers/whxdata/whtoc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Help/RoboHelp/!SSL!/WebHelpNonMembers/searchoptions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Help/RoboHelp/!SSL!/WebHelpNonMembers/whxdata/synonym.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Help/RoboHelp/!SSL!/WebHelpNonMembers/whxdata/whtoc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Help/RoboHelp/ACClientOverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/ACClientOverview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/ACClient_Configuration.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/ACClient_Configuration.htm -------------------------------------------------------------------------------- /Help/RoboHelp/ACServerOverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/ACServerOverview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/ACServer_Configuration.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/ACServer_Configuration.htm -------------------------------------------------------------------------------- /Help/RoboHelp/About_TechnologyName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/About_TechnologyName.htm -------------------------------------------------------------------------------- /Help/RoboHelp/About_the_OPC_Foundation.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/About_the_OPC_Foundation.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Address_Space_Navigation.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Address_Space_Navigation.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Adobe AIR.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Adobe AIR.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/AppHelp.glo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/AppHelp.glo -------------------------------------------------------------------------------- /Help/RoboHelp/AppHelp.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/AppHelp.hhc -------------------------------------------------------------------------------- /Help/RoboHelp/AppHelp.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/AppHelp.hhk -------------------------------------------------------------------------------- /Help/RoboHelp/AppName.hts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/AppName.hts -------------------------------------------------------------------------------- /Help/RoboHelp/BSSCDefault.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Help/RoboHelp/BigcoApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/BigcoApp.png -------------------------------------------------------------------------------- /Help/RoboHelp/BigcoApp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/BigcoApp1.png -------------------------------------------------------------------------------- /Help/RoboHelp/BigcoApp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/BigcoApp2.png -------------------------------------------------------------------------------- /Help/RoboHelp/BigcoApp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/BigcoApp3.png -------------------------------------------------------------------------------- /Help/RoboHelp/BigcoApp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/BigcoApp4.png -------------------------------------------------------------------------------- /Help/RoboHelp/BigcoApp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/BigcoApp5.png -------------------------------------------------------------------------------- /Help/RoboHelp/Box_Arrow_Black_Down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Box_Arrow_Black_Down.gif -------------------------------------------------------------------------------- /Help/RoboHelp/Box_Arrow_Black_Right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Box_Arrow_Black_Right.gif -------------------------------------------------------------------------------- /Help/RoboHelp/CertificateFilters.hts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/CertificateFilters.hts -------------------------------------------------------------------------------- /Help/RoboHelp/Certificate_Generator.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Certificate_Generator.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Certification.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Certification.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Client_Development.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Client_Development.htm -------------------------------------------------------------------------------- /Help/RoboHelp/ComIop_Overview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/ComIop_Overview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Contact_Us.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Contact_Us.htm -------------------------------------------------------------------------------- /Help/RoboHelp/DAClientConfiguration.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/DAClientConfiguration.htm -------------------------------------------------------------------------------- /Help/RoboHelp/DAClientOverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/DAClientOverview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/DAServerConfiguration.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/DAServerConfiguration.htm -------------------------------------------------------------------------------- /Help/RoboHelp/DAServerOverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/DAServerOverview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Data_Access_Overview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Data_Access_Overview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/DotNet_Stack_MergeModule.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/DotNet_Stack_MergeModule.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Firewall_Settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Firewall_Settings.htm -------------------------------------------------------------------------------- /Help/RoboHelp/FlashHelp Pro.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/FlashHelp Pro.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/FlashHelp.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/FlashHelp.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/Getting_Started.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Getting_Started.htm -------------------------------------------------------------------------------- /Help/RoboHelp/HAClientOverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/HAClientOverview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/HAEventsClientOverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/HAEventsClientOverview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/HAEventsServerOverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/HAEventsServerOverview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/HTTPS_Connectivity.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/HTTPS_Connectivity.htm -------------------------------------------------------------------------------- /Help/RoboHelp/HaData_Client_Aggregates.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/HaData_Client_Aggregates.htm -------------------------------------------------------------------------------- /Help/RoboHelp/HaServerOverview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/HaServerOverview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/License_Agreement.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/License_Agreement.htm -------------------------------------------------------------------------------- /Help/RoboHelp/MS_Help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/MS_Help.css -------------------------------------------------------------------------------- /Help/RoboHelp/Microsoft HTML Help.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Microsoft HTML Help.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/OPCFMasterPage.htt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/OPCFMasterPage.htt -------------------------------------------------------------------------------- /Help/RoboHelp/OPCFoundation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/OPCFoundation.jpg -------------------------------------------------------------------------------- /Help/RoboHelp/Overview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Overview.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Overview_referenceServer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Overview_referenceServer.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Printed Documentation.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Printed Documentation.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/Process.htt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Process.htt -------------------------------------------------------------------------------- /Help/RoboHelp/RHExtDocAuxData.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/RHExtDocAuxData.apj -------------------------------------------------------------------------------- /Help/RoboHelp/RHFrameDocs.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/RHFrameDocs.apj -------------------------------------------------------------------------------- /Help/RoboHelp/RHStyleMapping.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/RHStyleMapping.css -------------------------------------------------------------------------------- /Help/RoboHelp/RHWordDocs.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/RHWordDocs.apj -------------------------------------------------------------------------------- /Help/RoboHelp/Reading_Nodes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Reading_Nodes.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Redirector.htt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Redirector.htt -------------------------------------------------------------------------------- /Help/RoboHelp/SearchOptions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Help/RoboHelp/Server_Development.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Server_Development.htm -------------------------------------------------------------------------------- /Help/RoboHelp/SnippetPreview$.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/SnippetPreview$.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Splash.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Splash.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Step_1_-_New_Project.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Step_1_-_New_Project.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Step_2_-_Address_Space.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Step_2_-_Address_Space.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Step_3_-_Reading_Values.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Step_3_-_Reading_Values.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Step_5_-_Testing_Server.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Step_5_-_Testing_Server.htm -------------------------------------------------------------------------------- /Help/RoboHelp/StorePath.hts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/StorePath.hts -------------------------------------------------------------------------------- /Help/RoboHelp/StoreType.hts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/StoreType.hts -------------------------------------------------------------------------------- /Help/RoboHelp/Subscriptions.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Subscriptions.htm -------------------------------------------------------------------------------- /Help/RoboHelp/The_Information_Screen.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/The_Information_Screen.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Troubleshooting.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Troubleshooting.htm -------------------------------------------------------------------------------- /Help/RoboHelp/UA_Configuration_Tool.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/UA_Configuration_Tool.htm -------------------------------------------------------------------------------- /Help/RoboHelp/UA_Sample_Client.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/UA_Sample_Client.htm -------------------------------------------------------------------------------- /Help/RoboHelp/UA_Sample_Server.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/UA_Sample_Server.htm -------------------------------------------------------------------------------- /Help/RoboHelp/UaConfig_Manage_Security.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/UaConfig_Manage_Security.htm -------------------------------------------------------------------------------- /Help/RoboHelp/UaGenericClientDiscovery.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/UaGenericClientDiscovery.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Useful_Components.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Useful_Components.htm -------------------------------------------------------------------------------- /Help/RoboHelp/Using_Merge_Modules.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Using_Merge_Modules.htm -------------------------------------------------------------------------------- /Help/RoboHelp/WebHelp Pro.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/WebHelp Pro.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/WebHelp.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/WebHelp.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/WebHelpMembers.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/WebHelpMembers.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/WebHelpNonMembers.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/WebHelpNonMembers.ssl -------------------------------------------------------------------------------- /Help/RoboHelp/Welcome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Welcome.htm -------------------------------------------------------------------------------- /Help/RoboHelp/WidgetMax.h: -------------------------------------------------------------------------------- 1 | #define The_Information_Screen 1 2 | -------------------------------------------------------------------------------- /Help/RoboHelp/Writing_to_Nodes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/Writing_to_Nodes.htm -------------------------------------------------------------------------------- /Help/RoboHelp/bigcoelearn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/bigcoelearn.png -------------------------------------------------------------------------------- /Help/RoboHelp/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/default.css -------------------------------------------------------------------------------- /Help/RoboHelp/eHlpDhtm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/eHlpDhtm.js -------------------------------------------------------------------------------- /Help/RoboHelp/image1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image1.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image10.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image100.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image101.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image102.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image103.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image104.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image105.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image106.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image107.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image108.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image109.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image11.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image110.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image111.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image112.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image113.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image114.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image115.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image116.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image117.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image118.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image119.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image12.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image120.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image121.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image122.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image123.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image124.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image125.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image126.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image127.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image13.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image14.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image15.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image16.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image17.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image18.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image19.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image2.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image20.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image21.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image22.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image23.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image24.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image25.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image26.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image27.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image28.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image29.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image3.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image30.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image31.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image32.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image33.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image34.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image35.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image36.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image37.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image38.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image39.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image4.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image40.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image41.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image42.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image43.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image44.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image45.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image46.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image47.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image48.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image49.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image5.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image50.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image51.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image52.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image53.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image54.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image55.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image56.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image57.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image58.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image59.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image6.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image60.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image61.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image62.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image63.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image64.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image65.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image66.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image67.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image68.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image69.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image7.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image70.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image71.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image72.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image73.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image74.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image75.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image76.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image77.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image78.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image79.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image8.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image80.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image81.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image82.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image83.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image84.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image85.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image86.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image87.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image88.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image89.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image9.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image90.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image91.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image92.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image93.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image94.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image95.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image96.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image97.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image98.gif -------------------------------------------------------------------------------- /Help/RoboHelp/image99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/image99.gif -------------------------------------------------------------------------------- /Help/RoboHelp/printdoclayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/printdoclayout.xml -------------------------------------------------------------------------------- /Help/RoboHelp/rhakeyword.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhakeyword.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhbag.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhbag.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhbuildtag.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhbuildtag.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhcolor.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhcolor.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhfontset.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhfontset.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhinfotype.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhinfotype.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhkkeyword.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhkkeyword.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhlayout.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhlayout.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhmapfile.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhmapfile.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhpopup.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhpopup.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhsharedresource.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhsharedresource.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhskins.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhskins.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhsnippet.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhsnippet.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhtemplate.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhtemplate.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhvariable.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhvariable.apj -------------------------------------------------------------------------------- /Help/RoboHelp/rhwnd.apj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/rhwnd.apj -------------------------------------------------------------------------------- /Help/RoboHelp/root.fpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/root.fpj -------------------------------------------------------------------------------- /Help/RoboHelp/salesbuilder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/RoboHelp/salesbuilder.css -------------------------------------------------------------------------------- /Help/SandcastleMAMLGuide.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/SandcastleMAMLGuide.chm -------------------------------------------------------------------------------- /Help/Schemas/Authoring/__internal.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/__internal.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/__internal.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/__internal.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/base.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/base.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/base.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/base.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/baseConditional.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/baseConditional.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/baseConditional.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/baseConditional.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/block.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/block.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/block.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/block.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/blockCommon.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/blockCommon.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/blockSoftware.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/blockSoftware.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/blockSoftware.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/blockSoftware.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/conditionSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/conditionSet.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/conditionSet.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/conditionSet.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/developer.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/developer.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/developer.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/developer.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/glossary.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/glossary.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/glossary.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/glossary.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/hierarchy.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/hierarchy.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/hierarchy.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/hierarchy.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inline.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inline.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inline.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inline.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inlineCommon.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inlineCommon.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inlineCommon.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inlineCommon.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inlineLinking.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inlineLinking.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inlineLinking.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inlineLinking.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inlineSoftware.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inlineSoftware.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inlineSoftware.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inlineSoftware.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inlineUi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inlineUi.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/inlineUi.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/inlineUi.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/space.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/space.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/space.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/space.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/standardCodes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/standardCodes.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/standardCodes.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/standardCodes.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/structure.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/structure.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/structure.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/structure.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/structureList.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/structureList.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/structureList.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/structureList.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/structureMedia.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/structureMedia.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/structureMedia.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/structureMedia.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/structureTable.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/structureTable.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/structureTable.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/structureTable.xsx -------------------------------------------------------------------------------- /Help/Schemas/Authoring/xlink.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/xlink.xsd -------------------------------------------------------------------------------- /Help/Schemas/Authoring/xlink.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/Authoring/xlink.xsx -------------------------------------------------------------------------------- /Help/Schemas/SHFB/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/SHFB/Index.aspx -------------------------------------------------------------------------------- /Help/Schemas/SHFB/Index.aspx.ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/SHFB/Index.aspx.ReadMe.txt -------------------------------------------------------------------------------- /Help/Schemas/SHFB/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/SHFB/Index.html -------------------------------------------------------------------------------- /Help/Schemas/SHFB/script_manifold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Schemas/SHFB/script_manifold.js -------------------------------------------------------------------------------- /Help/Templates.dotx/Tempate_Glossary.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.dotx/Tempate_Glossary.dotx -------------------------------------------------------------------------------- /Help/Templates.dotx/Template_HowTo.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.dotx/Template_HowTo.dotx -------------------------------------------------------------------------------- /Help/Templates.dotx/Template_SDK_Code.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.dotx/Template_SDK_Code.dotx -------------------------------------------------------------------------------- /Help/Templates.dotx/Template_Sample.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.dotx/Template_Sample.dotx -------------------------------------------------------------------------------- /Help/Templates.dotx/Template_XML.dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.dotx/Template_XML.dotx -------------------------------------------------------------------------------- /Help/Templates.maml/Tempate_Glossary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.maml/Tempate_Glossary.xml -------------------------------------------------------------------------------- /Help/Templates.maml/Template_HowTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.maml/Template_HowTo.xml -------------------------------------------------------------------------------- /Help/Templates.maml/Template_Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.maml/Template_Reference.xml -------------------------------------------------------------------------------- /Help/Templates.maml/Template_SDK_Code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.maml/Template_SDK_Code.xml -------------------------------------------------------------------------------- /Help/Templates.maml/Template_Sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.maml/Template_Sample.xml -------------------------------------------------------------------------------- /Help/Templates.maml/Template_Wellcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.maml/Template_Wellcome.xml -------------------------------------------------------------------------------- /Help/Templates.maml/Template_XML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.maml/Template_XML.xml -------------------------------------------------------------------------------- /Help/Templates.maml/Templates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/Templates.maml/Templates.csproj -------------------------------------------------------------------------------- /Help/UASDKHelp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/UASDKHelp.config -------------------------------------------------------------------------------- /Help/UASDKHelp.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/UASDKHelp.content -------------------------------------------------------------------------------- /Help/UASDKHelp.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/UASDKHelp.shfbproj -------------------------------------------------------------------------------- /Help/UASDKHelp.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/UASDKHelp.tokens -------------------------------------------------------------------------------- /Help/VSContent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/VSContent.sln -------------------------------------------------------------------------------- /Help/create_tag.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/create_tag.cmd -------------------------------------------------------------------------------- /Help/opcf sdk hELP.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Help/opcf sdk hELP.url -------------------------------------------------------------------------------- /Key/OPC Key Pair.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Key/OPC Key Pair.snk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/README.md -------------------------------------------------------------------------------- /SampleApplications/Include/OpcBatchDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcBatchDef.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcBatchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcBatchError.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcBatchProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcBatchProps.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcCmd.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcCmd.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcCmd.idl -------------------------------------------------------------------------------- /SampleApplications/Include/OpcCmdError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcCmdError.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcCmd_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcCmd_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/OpcDx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcDx.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcDx.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcDx.idl -------------------------------------------------------------------------------- /SampleApplications/Include/OpcDxError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcDxError.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcDx_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcDx_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/OpcEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcEnum.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcEnum.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcEnum.idl -------------------------------------------------------------------------------- /SampleApplications/Include/OpcEnum_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcEnum_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/OpcErrSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcErrSec.h -------------------------------------------------------------------------------- /SampleApplications/Include/OpcHda_Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/OpcHda_Error.h -------------------------------------------------------------------------------- /SampleApplications/Include/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/Version.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcSec.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcSec.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcSec.idl -------------------------------------------------------------------------------- /SampleApplications/Include/opcSec_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcSec_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/opc_ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opc_ae.h -------------------------------------------------------------------------------- /SampleApplications/Include/opc_ae.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opc_ae.idl -------------------------------------------------------------------------------- /SampleApplications/Include/opc_ae_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opc_ae_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/opcae_er.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcae_er.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcaedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcaedef.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcbc.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcbc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcbc.idl -------------------------------------------------------------------------------- /SampleApplications/Include/opcbc_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcbc_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/opccomn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opccomn.h -------------------------------------------------------------------------------- /SampleApplications/Include/opccomn.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opccomn.idl -------------------------------------------------------------------------------- /SampleApplications/Include/opccomn_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opccomn_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/opcda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcda.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcda.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcda.idl -------------------------------------------------------------------------------- /SampleApplications/Include/opcda_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcda_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/opcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcerror.h -------------------------------------------------------------------------------- /SampleApplications/Include/opchda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opchda.h -------------------------------------------------------------------------------- /SampleApplications/Include/opchda.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opchda.idl -------------------------------------------------------------------------------- /SampleApplications/Include/opchda_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opchda_i.c -------------------------------------------------------------------------------- /SampleApplications/Include/opcua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_base64.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_buffer.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_channel.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_config.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_core.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_crypto.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_decoder.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_encoder.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_guid.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_list.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_memory.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_p_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_p_pki.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_p_types.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_pki.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_socket.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_stream.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_string.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_thread.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_timer.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_trace.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_types.h -------------------------------------------------------------------------------- /SampleApplications/Include/opcua_xmldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Include/opcua_xmldefs.h -------------------------------------------------------------------------------- /SampleApplications/SampleLibraries/Server/AddressSpace/Model/Opc.Ua.NodeSet.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SampleApplications/Samples/Client/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Samples/Client/App.ico -------------------------------------------------------------------------------- /SampleApplications/Samples/Server/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/Samples/Server/App.ico -------------------------------------------------------------------------------- /SampleApplications/WCF/Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/WCF/Client/App.config -------------------------------------------------------------------------------- /SampleApplications/WCF/Client/MyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/WCF/Client/MyClient.cs -------------------------------------------------------------------------------- /SampleApplications/WCF/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/WCF/Client/Program.cs -------------------------------------------------------------------------------- /SampleApplications/WCF/Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/WCF/Server/App.config -------------------------------------------------------------------------------- /SampleApplications/WCF/Server/MyServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/WCF/Server/MyServer.cs -------------------------------------------------------------------------------- /SampleApplications/WCF/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/WCF/Server/Program.cs -------------------------------------------------------------------------------- /SampleApplications/WCF/Server/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/SampleApplications/WCF/Server/Session.cs -------------------------------------------------------------------------------- /SampleApplications/Workshop/DSATS/Server/DsatsDemoAccessControl.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SampleApplications/Workshop/Tutorial/Client/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stack/Core/Documentation/Opc.Ua.Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Documentation/Opc.Ua.Schema.cs -------------------------------------------------------------------------------- /Stack/Core/Documentation/Opc.Ua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Documentation/Opc.Ua.cs -------------------------------------------------------------------------------- /Stack/Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Stack/Core/Schema/AttributeIds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/AttributeIds.csv -------------------------------------------------------------------------------- /Stack/Core/Schema/BuildSchema.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/BuildSchema.bat -------------------------------------------------------------------------------- /Stack/Core/Schema/NodeIds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/NodeIds.csv -------------------------------------------------------------------------------- /Stack/Core/Schema/Opc.Ua.Endpoints.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/Opc.Ua.Endpoints.wsdl -------------------------------------------------------------------------------- /Stack/Core/Schema/Opc.Ua.NodeSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/Opc.Ua.NodeSet.xml -------------------------------------------------------------------------------- /Stack/Core/Schema/Opc.Ua.NodeSet2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/Opc.Ua.NodeSet2.xml -------------------------------------------------------------------------------- /Stack/Core/Schema/Opc.Ua.Services.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/Opc.Ua.Services.wsdl -------------------------------------------------------------------------------- /Stack/Core/Schema/Opc.Ua.StatusCodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/Opc.Ua.StatusCodes.csv -------------------------------------------------------------------------------- /Stack/Core/Schema/Opc.Ua.Types.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/Opc.Ua.Types.bsd -------------------------------------------------------------------------------- /Stack/Core/Schema/Opc.Ua.Types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/Opc.Ua.Types.xsd -------------------------------------------------------------------------------- /Stack/Core/Schema/SecuredApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/SecuredApplication.cs -------------------------------------------------------------------------------- /Stack/Core/Schema/SecuredApplication.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/SecuredApplication.xsd -------------------------------------------------------------------------------- /Stack/Core/Schema/UANodeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/UANodeSet.cs -------------------------------------------------------------------------------- /Stack/Core/Schema/UANodeSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/UANodeSet.xsd -------------------------------------------------------------------------------- /Stack/Core/Schema/UANodeSetHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/UANodeSetHelpers.cs -------------------------------------------------------------------------------- /Stack/Core/Schema/UAVariant.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Schema/UAVariant.xsd -------------------------------------------------------------------------------- /Stack/Core/Security/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Security/Audit.cs -------------------------------------------------------------------------------- /Stack/Core/Security/Certificates/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Security/Certificates/Win32.cs -------------------------------------------------------------------------------- /Stack/Core/SilverlightDefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/SilverlightDefs.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Bindings/BaseBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Bindings/BaseBinding.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Bindings/BufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Bindings/BufferManager.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Bindings/UaTcpBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Bindings/UaTcpBinding.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Client/ClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Client/ClientBase.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Client/DiscoveryClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Client/DiscoveryClient.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Client/IChannelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Client/IChannelBase.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Client/IServiceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Client/IServiceRequest.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Client/IUserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Client/IUserIdentity.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Client/SessionChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Client/SessionChannel.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Client/UserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Client/UserIdentity.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Client/WcfChannelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Client/WcfChannelBase.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Constants/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Constants/Namespaces.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Https/HttpsListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Https/HttpsListener.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/ContentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/ContentFilter.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/IFilterTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/IFilterTarget.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/INode.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/Node.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/NodeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/NodeSet.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/NodeTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/NodeTable.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/ReferenceTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/ReferenceTable.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/TypeTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/TypeTable.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Nodes/ViewTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Nodes/ViewTable.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Server/EndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Server/EndpointBase.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Server/IEndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Server/IEndpointBase.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Server/IServerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Server/IServerBase.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Server/NonHttpEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Server/NonHttpEndpoint.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Server/ServerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Server/ServerBase.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Server/ServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Server/ServiceHost.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/AuditEventState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/AuditEventState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/BaseEventState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/BaseEventState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/BaseObjectState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/BaseObjectState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/BaseTypeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/BaseTypeState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/ConditionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/ConditionState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/DataTypeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/DataTypeState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/ISystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/ISystemContext.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/LimitAlarmState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/LimitAlarmState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/MethodState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/MethodState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/NodeBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/NodeBrowser.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/NodeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/NodeState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/State/ViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/State/ViewState.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpAsyncOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpAsyncOperation.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpChannel.Rsa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpChannel.Rsa.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpChannel.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpChannelQuotas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpChannelQuotas.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpChannelToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpChannelToken.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpClientChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpClientChannel.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpListener.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpMessageSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpMessageSocket.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpMessageType.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Tcp/TcpServerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Tcp/TcpServerChannel.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/Argument.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/BrowsePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/BrowsePath.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/EUInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/EUInformation.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/EventFieldList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/EventFieldList.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/MonitoringFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/MonitoringFilter.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/QueryDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/QueryDataSet.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/Range.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/ReadValueId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/ReadValueId.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/ServiceFault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/ServiceFault.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/StatusResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/StatusResult.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/UserTokenPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/UserTokenPolicy.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/ViewDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/ViewDescription.cs -------------------------------------------------------------------------------- /Stack/Core/Stack/Types/WriteValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Stack/Types/WriteValue.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/DataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/DataValue.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/DiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/DiagnosticInfo.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/ExpandedNodeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/ExpandedNodeId.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/ITypeTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/ITypeTable.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/LocalizedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/LocalizedText.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/NodeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/NodeId.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/QualifiedName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/QualifiedName.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/StatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/StatusCode.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/Uuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/Uuid.cs -------------------------------------------------------------------------------- /Stack/Core/Types/BuiltIn/Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/BuiltIn/Variant.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Encoders/BinaryDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Encoders/BinaryDecoder.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Encoders/BinaryEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Encoders/BinaryEncoder.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Encoders/IDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Encoders/IDecoder.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Encoders/IEncodable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Encoders/IEncodable.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Encoders/IEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Encoders/IEncoder.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Encoders/XmlDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Encoders/XmlDecoder.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Encoders/XmlEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Encoders/XmlEncoder.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Schemas/BinarySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Schemas/BinarySchema.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Schemas/BuiltInTypes.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Schemas/BuiltInTypes.bsd -------------------------------------------------------------------------------- /Stack/Core/Types/Schemas/BuiltInTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Schemas/BuiltInTypes.xml -------------------------------------------------------------------------------- /Stack/Core/Types/Schemas/StandardTypes.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Schemas/StandardTypes.bsd -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/DataComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/DataComparer.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/DataGenerator.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/HiResClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/HiResClock.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/LocalizedData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/LocalizedData.txt -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/Lock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/Lock.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/NamespaceTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/NamespaceTable.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/NumericRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/NumericRange.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/ReadOnlyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/ReadOnlyList.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/RelativePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/RelativePath.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/ServiceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/ServiceResult.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/TypeInfo.cs -------------------------------------------------------------------------------- /Stack/Core/Types/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/Types/Utils/Utils.cs -------------------------------------------------------------------------------- /Stack/Core/UA Core Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/Stack/Core/UA Core Library.csproj -------------------------------------------------------------------------------- /UA COM Interop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/UA COM Interop.sln -------------------------------------------------------------------------------- /UA Configuration Tool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/UA Configuration Tool.sln -------------------------------------------------------------------------------- /UA Core Library.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/UA Core Library.sln -------------------------------------------------------------------------------- /UA Quickstart Applications.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/UA Quickstart Applications.sln -------------------------------------------------------------------------------- /UA Sample Applications.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/UA Sample Applications.sln -------------------------------------------------------------------------------- /UA Sample Libraries.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/UA Sample Libraries.sln -------------------------------------------------------------------------------- /WelcomeApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-.NET-Legacy/HEAD/WelcomeApplication.sln --------------------------------------------------------------------------------