实例介绍
Overview This OPC UA reference implementation is targeting the .NET Standard Library. .Net Standard allows developing apps that run on all common platforms available today, including Linux, iOS, Android (via Xamarin) and Windows 7/8/8.1/10 (including embedded/IoT editions) without requiring platform
【实例截图】
【核心代码】
92ce927b-e652-46ba-9231-b36b63ded2c4
├── UA-.NETStandardLibrary-master
│ ├── CreateAllCerts.cmd
│ ├── global.json
│ ├── nuget
│ │ ├── Opc.Ua.Core.nuspec
│ │ └── Opc.Ua.SDK.nuspec
│ ├── Opc.Ua.CertificateGenerator.exe
│ ├── OpcUaWebTelemetry
│ │ ├── App_Start
│ │ │ ├── BundleConfig.cs
│ │ │ ├── FilterConfig.cs
│ │ │ └── RouteConfig.cs
│ │ ├── Content
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── Linux.png
│ │ │ ├── logos.jpg
│ │ │ ├── Microsoft.png
│ │ │ ├── Site.css
│ │ │ └── windows.png
│ │ ├── Controllers
│ │ │ └── HomeController.cs
│ │ ├── favicon.ico
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ ├── Global.asax
│ │ ├── Global.asax.cs
│ │ ├── MessageProcessing
│ │ │ ├── CircularBuffer.cs
│ │ │ ├── Configuration.cs
│ │ │ ├── ICircularBuffer.cs
│ │ │ ├── MessageData.cs
│ │ │ ├── MessageProcessor.cs
│ │ │ └── TelemetryHub.cs
│ │ ├── OpcUaWebTelemetry.csproj
│ │ ├── packages.config
│ │ ├── Project_Readme.html
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Scripts
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── Chart.js
│ │ │ ├── Chart.min.js
│ │ │ ├── jquery-2.2.3.intellisense.js
│ │ │ ├── jquery-2.2.3.js
│ │ │ ├── jquery-2.2.3.min.js
│ │ │ ├── jquery-2.2.3.min.map
│ │ │ ├── jquery.signalR-2.2.0.js
│ │ │ ├── jquery.signalR-2.2.0.min.js
│ │ │ ├── jquery.validate.js
│ │ │ ├── jquery.validate.min.js
│ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ ├── jquery.validate.unobtrusive.min.js
│ │ │ ├── jquery.validate-vsdoc.js
│ │ │ ├── modernizr-2.6.2.js
│ │ │ ├── _references.js
│ │ │ ├── respond.js
│ │ │ └── respond.min.js
│ │ ├── Views
│ │ │ ├── Home
│ │ │ │ ├── About.cshtml
│ │ │ │ ├── Contact.cshtml
│ │ │ │ └── Index.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ └── _Layout.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ └── Web.config
│ │ ├── Web.config
│ │ ├── Web.Debug.config
│ │ └── Web.Release.config
│ ├── OpcUaWebTelemetry.sln
│ ├── README.md
│ ├── SampleApplications
│ │ ├── Samples
│ │ │ ├── Client
│ │ │ │ ├── App.xaml
│ │ │ │ ├── App.xaml.cs
│ │ │ │ ├── Assets
│ │ │ │ │ ├── LockScreenLogo.scale-200.png
│ │ │ │ │ ├── SplashScreen.scale-200.png
│ │ │ │ │ ├── Square150x150Logo.scale-200.png
│ │ │ │ │ ├── Square44x44Logo.scale-200.png
│ │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ │ │ │ ├── StoreLogo.png
│ │ │ │ │ └── Wide310x150Logo.scale-200.png
│ │ │ │ ├── ClientPage.xaml
│ │ │ │ ├── ClientPage.xaml.cs
│ │ │ │ ├── CreateCert.cmd
│ │ │ │ ├── Opc.Ua.Core.Stack.Generated.Opc.Ua.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.Core.Types.Utils.LocalizedData.txt
│ │ │ │ ├── Opc.Ua.Sample.Boiler.Boiler.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.SampleClient.Config.xml
│ │ │ │ ├── Opc.Ua.SampleClient.csproj
│ │ │ │ ├── Opc.Ua.SampleClient.Endpoints.xml
│ │ │ │ ├── Opc.Ua.SampleClient_TemporaryKey.pfx
│ │ │ │ ├── Opc.Ua.Sample.MemoryBuffer.MemoryBuffer.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.Sample.TestData.TestData.PredefinedNodes.uanodes
│ │ │ │ ├── Package.appxmanifest
│ │ │ │ ├── project.json
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ └── Default.rd.xml
│ │ │ ├── ClientControls
│ │ │ │ ├── ClientUtils.cs
│ │ │ │ ├── Common (OLD)
│ │ │ │ │ ├── BaseListCtrl.xaml
│ │ │ │ │ ├── BaseListCtrl.xaml.cs
│ │ │ │ │ ├── BaseTreeCtrl.xaml
│ │ │ │ │ ├── BaseTreeCtrl.xaml.cs
│ │ │ │ │ ├── DataListCtrl.xaml
│ │ │ │ │ ├── DataListCtrl.xaml.cs
│ │ │ │ │ ├── DateTimeValueEditCtrl.xaml
│ │ │ │ │ ├── DateTimeValueEditCtrl.xaml.cs
│ │ │ │ │ ├── ExceptionDlg.xaml
│ │ │ │ │ ├── ExceptionDlg.xaml.cs
│ │ │ │ │ ├── GuiUtils.cs
│ │ │ │ │ ├── MessageDlg.xaml
│ │ │ │ │ ├── MessageDlg.xaml.cs
│ │ │ │ │ ├── NodeIdCtrl.xaml
│ │ │ │ │ ├── NodeIdCtrl.xaml.cs
│ │ │ │ │ ├── NodeIdValueEditDlg.xaml
│ │ │ │ │ ├── NodeIdValueEditDlg.xaml.cs
│ │ │ │ │ ├── ReferenceTypeCtrl.xaml
│ │ │ │ │ ├── ReferenceTypeCtrl.xaml.cs
│ │ │ │ │ ├── SimpleValueEditCtrl.xaml
│ │ │ │ │ └── SimpleValueEditCtrl.xaml.cs
│ │ │ │ ├── Endpoints
│ │ │ │ │ ├── ConfiguredServerDlg.xaml
│ │ │ │ │ ├── ConfiguredServerDlg.xaml.cs
│ │ │ │ │ ├── ConfiguredServerListCtrl.xaml
│ │ │ │ │ ├── ConfiguredServerListCtrl.xaml.cs
│ │ │ │ │ ├── ConfiguredServerListDlg.xaml
│ │ │ │ │ ├── ConfiguredServerListDlg.xaml.cs
│ │ │ │ │ ├── DiscoveredServerListCtrl.xaml
│ │ │ │ │ ├── DiscoveredServerListCtrl.xaml.cs
│ │ │ │ │ ├── DiscoveredServerListDlg.xaml
│ │ │ │ │ ├── DiscoveredServerListDlg.xaml.cs
│ │ │ │ │ ├── EndpointSelectorCtrl.xaml
│ │ │ │ │ ├── EndpointSelectorCtrl.xaml.cs
│ │ │ │ │ ├── HostListCtrl.xaml
│ │ │ │ │ ├── HostListCtrl.xaml.cs
│ │ │ │ │ ├── HostListDlg.xaml
│ │ │ │ │ ├── HostListDlg.xaml.cs
│ │ │ │ │ ├── SelectHostCtrl.xaml
│ │ │ │ │ ├── SelectHostCtrl.xaml.cs
│ │ │ │ │ ├── UsernameTokenDlg.xaml
│ │ │ │ │ └── UsernameTokenDlg.xaml.cs
│ │ │ │ ├── Opc.Ua.Client.Controls.csproj
│ │ │ │ ├── project.json
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ └── Opc.Ua.Client.Controls.rd.xml
│ │ │ ├── ClientControls.Net4
│ │ │ │ ├── app.config
│ │ │ │ ├── Browse
│ │ │ │ │ ├── AttrbuteListCtrl.Designer.cs
│ │ │ │ │ ├── AttributeListCtrl.cs
│ │ │ │ │ ├── BrowseListCtrl.cs
│ │ │ │ │ ├── BrowseListCtrl.Designer.cs
│ │ │ │ │ ├── BrowseTreeCtrl.cs
│ │ │ │ │ ├── BrowseTreeCtrl.Designer.cs
│ │ │ │ │ ├── BrowseTreeCtrl.resx
│ │ │ │ │ ├── NodeListCtrl.cs
│ │ │ │ │ ├── NodeListCtrl.Designer.cs
│ │ │ │ │ ├── NodeListCtrl.resx
│ │ │ │ │ ├── SelectNodesDlg.cs
│ │ │ │ │ ├── SelectNodesDlg.Designer.cs
│ │ │ │ │ └── SelectNodesDlg.resx
│ │ │ │ ├── ClientHeaderBranding.cs
│ │ │ │ ├── ClientHeaderBranding.Designer.cs
│ │ │ │ ├── ClientHeaderBranding.resx
│ │ │ │ ├── ClientUtils.cs
│ │ │ │ ├── Common
│ │ │ │ │ ├── BrowseNodeCtrl.cs
│ │ │ │ │ ├── BrowseNodeCtrl.Designer.cs
│ │ │ │ │ ├── BrowseNodeCtrl.resx
│ │ │ │ │ ├── Client
│ │ │ │ │ │ ├── AttrributesListViewCtrl.cs
│ │ │ │ │ │ ├── AttrributesListViewCtrl.Designer.cs
│ │ │ │ │ │ ├── AttrributesListViewCtrl.resx
│ │ │ │ │ │ ├── BrowseNodeCtrl.cs
│ │ │ │ │ │ ├── BrowseNodeCtrl.Designer.cs
│ │ │ │ │ │ ├── BrowseNodeCtrl.resx
│ │ │ │ │ │ ├── BrowseTreeViewCtrl.cs
│ │ │ │ │ │ ├── BrowseTreeViewCtrl.Designer.cs
│ │ │ │ │ │ ├── BrowseTreeViewCtrl.resx
│ │ │ │ │ │ ├── CallRequestDlg.cs
│ │ │ │ │ │ ├── CallRequestDlg.Designer.cs
│ │ │ │ │ │ ├── CallRequestDlg.resx
│ │ │ │ │ │ ├── CallRequestListViewCtrl.cs
│ │ │ │ │ │ ├── CallRequestListViewCtrl.Designer.cs
│ │ │ │ │ │ ├── CallRequestListViewCtrl.resx
│ │ │ │ │ │ ├── ConnectServerCtrl.cs
│ │ │ │ │ │ ├── ConnectServerCtrl.Designer.cs
│ │ │ │ │ │ ├── ConnectServerCtrl.resx
│ │ │ │ │ │ ├── EditAnnotationDlg.cs
│ │ │ │ │ │ ├── EditAnnotationDlg.Designer.cs
│ │ │ │ │ │ ├── EditAnnotationDlg.resx
│ │ │ │ │ │ ├── EditComplexValue2Dlg.cs
│ │ │ │ │ │ ├── EditComplexValue2Dlg.Designer.cs
│ │ │ │ │ │ ├── EditComplexValue2Dlg.resx
│ │ │ │ │ │ ├── EditComplexValueCtrl.cs
│ │ │ │ │ │ ├── EditComplexValueCtrl.Designer.cs
│ │ │ │ │ │ ├── EditComplexValueCtrl.resx
│ │ │ │ │ │ ├── EditComplexValueDlg.cs
│ │ │ │ │ │ ├── EditComplexValueDlg.Designer.cs
│ │ │ │ │ │ ├── EditComplexValueDlg.resx
│ │ │ │ │ │ ├── EditMonitoredItemDlg.cs
│ │ │ │ │ │ ├── EditMonitoredItemDlg.Designer.cs
│ │ │ │ │ │ ├── EditMonitoredItemDlg.resx
│ │ │ │ │ │ ├── EditReadValueIdDlg.cs
│ │ │ │ │ │ ├── EditReadValueIdDlg.Designer.cs
│ │ │ │ │ │ ├── EditReadValueIdDlg.resx
│ │ │ │ │ │ ├── EditSubscriptionDlg.cs
│ │ │ │ │ │ ├── EditSubscriptionDlg.Designer.cs
│ │ │ │ │ │ ├── EditSubscriptionDlg.resx
│ │ │ │ │ │ ├── EditValueCtrl.cs
│ │ │ │ │ │ ├── EditValueCtrl.Designer.cs
│ │ │ │ │ │ ├── EditValueCtrl.resx
│ │ │ │ │ │ ├── EditWriteValueDlg.cs
│ │ │ │ │ │ ├── EditWriteValueDlg.Designer.cs
│ │ │ │ │ │ ├── EditWriteValueDlg.resx
│ │ │ │ │ │ ├── EventFilterListViewCtrl.cs
│ │ │ │ │ │ ├── EventFilterListViewCtrl.Designer.cs
│ │ │ │ │ │ ├── EventFilterListViewCtrl.resx
│ │ │ │ │ │ ├── EventListViewCtrl.cs
│ │ │ │ │ │ ├── EventListViewCtrl.Designer.cs
│ │ │ │ │ │ ├── EventListViewCtrl.resx
│ │ │ │ │ │ ├── GdsDiscoverServersDlg.cs
│ │ │ │ │ │ ├── GdsDiscoverServersDlg.Designer.cs
│ │ │ │ │ │ ├── GdsDiscoverServersDlg.resx
│ │ │ │ │ │ ├── HistoryDataDlg.cs
│ │ │ │ │ │ ├── HistoryDataDlg.Designer.cs
│ │ │ │ │ │ ├── HistoryDataDlg.resx
│ │ │ │ │ │ ├── HistoryDataListView.cs
│ │ │ │ │ │ ├── HistoryDataListView.Designer.cs
│ │ │ │ │ │ ├── HistoryDataListView.resx
│ │ │ │ │ │ ├── HistoryEventCtrl.cs
│ │ │ │ │ │ ├── HistoryEventCtrl.Designer.cs
│ │ │ │ │ │ ├── HistoryEventCtrl.resx
│ │ │ │ │ │ ├── ISessionForm.cs
│ │ │ │ │ │ ├── ReadRequestDlg.cs
│ │ │ │ │ │ ├── ReadRequestDlg.Designer.cs
│ │ │ │ │ │ ├── ReadRequestDlg.resx
│ │ │ │ │ │ ├── ReadRequestListViewCtrl.cs
│ │ │ │ │ │ ├── ReadRequestListViewCtrl.Designer.cs
│ │ │ │ │ │ ├── ReadRequestListViewCtrl.resx
│ │ │ │ │ │ ├── SelectLocaleDlg.cs
│ │ │ │ │ │ ├── SelectLocaleDlg.Designer.cs
│ │ │ │ │ │ ├── SelectLocaleDlg.resx
│ │ │ │ │ │ ├── SelectNodeCtrl.cs
│ │ │ │ │ │ ├── SelectNodeCtrl.Designer.cs
│ │ │ │ │ │ ├── SelectNodeCtrl.resx
│ │ │ │ │ │ ├── SelectNodeDlg.cs
│ │ │ │ │ │ ├── SelectNodeDlg.Designer.cs
│ │ │ │ │ │ ├── SelectNodeDlg.resx
│ │ │ │ │ │ ├── SetFilterOperatorDlg.cs
│ │ │ │ │ │ ├── SetFilterOperatorDlg.Designer.cs
│ │ │ │ │ │ ├── SetFilterOperatorDlg.resx
│ │ │ │ │ │ ├── SetTypeDlg.cs
│ │ │ │ │ │ ├── SetTypeDlg.Designer.cs
│ │ │ │ │ │ ├── SetTypeDlg.resx
│ │ │ │ │ │ ├── SubscribeDataDlg.cs
│ │ │ │ │ │ ├── SubscribeDataDlg.Designer.cs
│ │ │ │ │ │ ├── SubscribeDataDlg.resx
│ │ │ │ │ │ ├── SubscribeDataListViewCtrl.cs
│ │ │ │ │ │ ├── SubscribeDataListViewCtrl.Designer.cs
│ │ │ │ │ │ ├── SubscribeDataListViewCtrl.resx
│ │ │ │ │ │ ├── SubscribeEventsDlg.cs
│ │ │ │ │ │ ├── SubscribeEventsDlg.Designer.cs
│ │ │ │ │ │ ├── SubscribeEventsDlg.resx
│ │ │ │ │ │ ├── TypeFieldsListViewCtrl.cs
│ │ │ │ │ │ ├── TypeFieldsListViewCtrl.Designer.cs
│ │ │ │ │ │ ├── TypeFieldsListViewCtrl.resx
│ │ │ │ │ │ ├── UserNamePasswordDlg.cs
│ │ │ │ │ │ ├── UserNamePasswordDlg.Designer.cs
│ │ │ │ │ │ ├── UserNamePasswordDlg.resx
│ │ │ │ │ │ ├── ViewEventDetailsDlg.cs
│ │ │ │ │ │ ├── ViewEventDetailsDlg.Designer.cs
│ │ │ │ │ │ ├── ViewEventDetailsDlg.resx
│ │ │ │ │ │ ├── WriteRequestDlg.cs
│ │ │ │ │ │ ├── WriteRequestDlg.Designer.cs
│ │ │ │ │ │ ├── WriteRequestDlg.resx
│ │ │ │ │ │ ├── WriteRequestListViewCtrl.cs
│ │ │ │ │ │ ├── WriteRequestListViewCtrl.Designer.cs
│ │ │ │ │ │ └── WriteRequestListViewCtrl.resx
│ │ │ │ │ ├── ClientUtils.cs
│ │ │ │ │ ├── ClientUtils.Designer.cs
│ │ │ │ │ ├── ClientUtils.resx
│ │ │ │ │ ├── ConnectServerCtrl.cs
│ │ │ │ │ ├── ConnectServerCtrl.Designer.cs
│ │ │ │ │ ├── ConnectServerCtrl.resx
│ │ │ │ │ ├── DiscoveredServerListCtrl.cs
│ │ │ │ │ ├── DiscoveredServerListCtrl.Designer.cs
│ │ │ │ │ ├── DiscoveredServerListCtrl.resx
│ │ │ │ │ ├── DiscoveredServerListDlg.cs
│ │ │ │ │ ├── DiscoveredServerListDlg.Designer.cs
│ │ │ │ │ ├── DiscoveredServerListDlg.resx
│ │ │ │ │ ├── DiscoverServerDlg.cs
│ │ │ │ │ ├── DiscoverServerDlg.Designer.cs
│ │ │ │ │ ├── DiscoverServerDlg.resx
│ │ │ │ │ ├── EditAnnotationDlg.cs
│ │ │ │ │ ├── EditAnnotationDlg.Designer.cs
│ │ │ │ │ ├── EditAnnotationDlg.resx
│ │ │ │ │ ├── EditArrayDlg.cs
│ │ │ │ │ ├── EditArrayDlg.Designer.cs
│ │ │ │ │ ├── EditArrayDlg.resx
│ │ │ │ │ ├── EditComplexValueDlg.cs
│ │ │ │ │ ├── EditComplexValueDlg.Designer.cs
│ │ │ │ │ ├── EditComplexValueDlg.resx
│ │ │ │ │ ├── EditDataValueCtrl.cs
│ │ │ │ │ ├── EditDataValueCtrl.Designer.cs
│ │ │ │ │ ├── EditDataValueCtrl.resx
│ │ │ │ │ ├── EditDataValueDlg.cs
│ │ │ │ │ ├── EditDataValueDlg.Designer.cs
│ │ │ │ │ ├── EditDataValueDlg.resx
│ │ │ │ │ ├── EditValueCtrl.cs
│ │ │ │ │ ├── EditValueCtrl.Designer.cs
│ │ │ │ │ ├── EditValueCtrl.resx
│ │ │ │ │ ├── EventListView.cs
│ │ │ │ │ ├── EventListView.Designer.cs
│ │ │ │ │ ├── EventListView.resx
│ │ │ │ │ ├── FilterDeclaration.cs
│ │ │ │ │ ├── HistoryDataListView.cs
│ │ │ │ │ ├── HistoryDataListView.Designer.cs
│ │ │ │ │ ├── HistoryDataListView.resx
│ │ │ │ │ ├── HostListCtrl.cs
│ │ │ │ │ ├── HostListCtrl.Designer.cs
│ │ │ │ │ ├── HostListCtrl.resx
│ │ │ │ │ ├── HostListDlg.cs
│ │ │ │ │ ├── HostListDlg.Designer.cs
│ │ │ │ │ ├── HostListDlg.resx
│ │ │ │ │ ├── ReferenceListCtrl.cs
│ │ │ │ │ ├── ReferenceListCtrl.Designer.cs
│ │ │ │ │ ├── ReferenceListCtrl.resx
│ │ │ │ │ ├── SelectHostCtrl.cs
│ │ │ │ │ ├── SelectHostCtrl.Designer.cs
│ │ │ │ │ ├── SelectHostCtrl.resx
│ │ │ │ │ ├── SelectLocaleDlg.cs
│ │ │ │ │ ├── SelectLocaleDlg.Designer.cs
│ │ │ │ │ ├── SelectLocaleDlg.resx
│ │ │ │ │ ├── SelectNodeCtrl.cs
│ │ │ │ │ ├── SelectNodeCtrl.Designer.cs
│ │ │ │ │ ├── SelectNodeCtrl.resx
│ │ │ │ │ ├── SelectNodeDlg.cs
│ │ │ │ │ ├── SelectNodeDlg.Designer.cs
│ │ │ │ │ ├── SelectNodeDlg.resx
│ │ │ │ │ ├── ViewEventDetailsDlg.cs
│ │ │ │ │ ├── ViewEventDetailsDlg.Designer.cs
│ │ │ │ │ ├── ViewEventDetailsDlg.resx
│ │ │ │ │ ├── ViewNodeStateDlg.cs
│ │ │ │ │ ├── ViewNodeStateDlg.Designer.cs
│ │ │ │ │ └── ViewNodeStateDlg.resx
│ │ │ │ ├── Common (OLD)
│ │ │ │ │ ├── BaseListCtrl.cs
│ │ │ │ │ ├── BaseListCtrl.Designer.cs
│ │ │ │ │ ├── BaseListCtrl.resx
│ │ │ │ │ ├── BaseTreeCtrl.cs
│ │ │ │ │ ├── BaseTreeCtrl.Designer.cs
│ │ │ │ │ ├── BaseTreeCtrl.resx
│ │ │ │ │ ├── ClipboardHack.cs
│ │ │ │ │ ├── ComplexValueEditDlg.cs
│ │ │ │ │ ├── ComplexValueEditDlg.Designer.cs
│ │ │ │ │ ├── ComplexValueEditDlg.resx
│ │ │ │ │ ├── DataListCtrl.cs
│ │ │ │ │ ├── DataListCtrl.Designer.cs
│ │ │ │ │ ├── DataListCtrl.resx
│ │ │ │ │ ├── DateTimeValueEditDlg.cs
│ │ │ │ │ ├── DateTimeValueEditDlg.Designer.cs
│ │ │ │ │ ├── DateTimeValueEditDlg.resx
│ │ │ │ │ ├── ExceptionDlg.cs
│ │ │ │ │ ├── ExceptionDlg.Designer.cs
│ │ │ │ │ ├── ExceptionDlg.resx
│ │ │ │ │ ├── GuiUtils.cs
│ │ │ │ │ ├── GuiUtils.Designer.cs
│ │ │ │ │ ├── GuiUtils.resx
│ │ │ │ │ ├── NodeIdCtrl.cs
│ │ │ │ │ ├── NodeIdCtrl.Designer.cs
│ │ │ │ │ ├── NodeIdCtrl.resx
│ │ │ │ │ ├── NodeIdValueEditDlg.cs
│ │ │ │ │ ├── NodeIdValueEditDlg.Designer.cs
│ │ │ │ │ ├── NodeIdValueEditDlg.resx
│ │ │ │ │ ├── NumericValueEditDlg.cs
│ │ │ │ │ ├── NumericValueEditDlg.Designer.cs
│ │ │ │ │ ├── NumericValueEditDlg.resx
│ │ │ │ │ ├── ReferenceTypeCtrl.cs
│ │ │ │ │ ├── ReferenceTypeCtrl.Designer.cs
│ │ │ │ │ ├── ReferenceTypeCtrl.resx
│ │ │ │ │ ├── StringValueEditDlg.cs
│ │ │ │ │ ├── StringValueEditDlg.Designer.cs
│ │ │ │ │ └── StringValueEditDlg.resx
│ │ │ │ ├── Configuration
│ │ │ │ │ ├── CertificateDlg.cs
│ │ │ │ │ ├── CertificateDlg.Designer.cs
│ │ │ │ │ ├── CertificateDlg.resx
│ │ │ │ │ ├── CertificateListCtrl.cs
│ │ │ │ │ ├── CertificateListCtrl.Designer.cs
│ │ │ │ │ ├── CertificateListCtrl.resx
│ │ │ │ │ ├── CertificateListDlg.cs
│ │ │ │ │ ├── CertificateListDlg.Designer.cs
│ │ │ │ │ ├── CertificateListDlg.resx
│ │ │ │ │ ├── CertificateListFilter.cs
│ │ │ │ │ ├── CertificatePropertiesListCtrl.cs
│ │ │ │ │ ├── CertificatePropertiesListCtrl.Designer.cs
│ │ │ │ │ ├── CertificateStoreCtrl.cs
│ │ │ │ │ ├── CertificateStoreCtrl.Designer.cs
│ │ │ │ │ ├── CertificateStoreCtrl.resx
│ │ │ │ │ ├── CertificateStoreDlg.cs
│ │ │ │ │ ├── CertificateStoreDlg.Designer.cs
│ │ │ │ │ ├── CertificateStoreDlg.resx
│ │ │ │ │ ├── CertificateStoreTreeCtrl.cs
│ │ │ │ │ ├── CertificateStoreTreeCtrl.Designer.cs
│ │ │ │ │ ├── CertificateStoreTreeCtrl.resx
│ │ │ │ │ ├── CertificateStoreTreeDlg.cs
│ │ │ │ │ ├── CertificateStoreTreeDlg.Designer.cs
│ │ │ │ │ ├── CertificateStoreTreeDlg.resx
│ │ │ │ │ ├── Common (OLD)
│ │ │ │ │ │ ├── BaseListCtrl.cs
│ │ │ │ │ │ ├── BaseListCtrl.Designer.cs
│ │ │ │ │ │ ├── BaseListCtrl.resx
│ │ │ │ │ │ ├── BaseTreeCtrl.cs
│ │ │ │ │ │ ├── BaseTreeCtrl.Designer.cs
│ │ │ │ │ │ ├── BaseTreeCtrl.resx
│ │ │ │ │ │ ├── ClipboardHack.cs
│ │ │ │ │ │ ├── ComplexValueEditDlg.cs
│ │ │ │ │ │ ├── ComplexValueEditDlg.Designer.cs
│ │ │ │ │ │ ├── ComplexValueEditDlg.resx
│ │ │ │ │ │ ├── DataListCtrl.cs
│ │ │ │ │ │ ├── DataListCtrl.Designer.cs
│ │ │ │ │ │ ├── DataListCtrl.resx
│ │ │ │ │ │ ├── DateTimeValueEditDlg.cs
│ │ │ │ │ │ ├── DateTimeValueEditDlg.Designer.cs
│ │ │ │ │ │ ├── DateTimeValueEditDlg.resx
│ │ │ │ │ │ ├── ExceptionDlg.cs
│ │ │ │ │ │ ├── ExceptionDlg.Designer.cs
│ │ │ │ │ │ ├── ExceptionDlg.resx
│ │ │ │ │ │ ├── GuiUtils.cs
│ │ │ │ │ │ ├── GuiUtils.Designer.cs
│ │ │ │ │ │ ├── GuiUtils.resx
│ │ │ │ │ │ ├── MessageDlg.cs
│ │ │ │ │ │ ├── NodeIdCtrl.cs
│ │ │ │ │ │ ├── NodeIdCtrl.Designer.cs
│ │ │ │ │ │ ├── NodeIdCtrl.resx
│ │ │ │ │ │ ├── NodeIdValueEditDlg.cs
│ │ │ │ │ │ ├── NodeIdValueEditDlg.Designer.cs
│ │ │ │ │ │ ├── NodeIdValueEditDlg.resx
│ │ │ │ │ │ ├── NumericValueEditDlg.cs
│ │ │ │ │ │ ├── NumericValueEditDlg.Designer.cs
│ │ │ │ │ │ ├── NumericValueEditDlg.resx
│ │ │ │ │ │ ├── ReferenceTypeCtrl.cs
│ │ │ │ │ │ ├── ReferenceTypeCtrl.Designer.cs
│ │ │ │ │ │ ├── ReferenceTypeCtrl.resx
│ │ │ │ │ │ ├── SimpleValueEditDlg.cs
│ │ │ │ │ │ ├── SimpleValueEditDlg.Designer.cs
│ │ │ │ │ │ ├── SimpleValueEditDlg.resx
│ │ │ │ │ │ ├── StringValueEditDlg.cs
│ │ │ │ │ │ ├── StringValueEditDlg.Designer.cs
│ │ │ │ │ │ └── StringValueEditDlg.resx
│ │ │ │ │ ├── SelectCertificateStoreCtrl.cs
│ │ │ │ │ ├── SelectCertificateStoreCtrl.Designer.cs
│ │ │ │ │ ├── SelectCertificateStoreCtrl.resx
│ │ │ │ │ ├── SelectFileCtrl.cs
│ │ │ │ │ ├── SelectFileCtrl.Designer.cs
│ │ │ │ │ ├── SelectFileCtrl.resx
│ │ │ │ │ ├── SelectProfileCtrl.cs
│ │ │ │ │ ├── SelectProfileCtrl.Designer.cs
│ │ │ │ │ ├── SelectProfileCtrl.resx
│ │ │ │ │ ├── SelectProfileDlg.cs
│ │ │ │ │ ├── SelectProfileDlg.Designer.cs
│ │ │ │ │ ├── SelectProfileDlg.resx
│ │ │ │ │ ├── SelectUrlsCtrl.cs
│ │ │ │ │ ├── SelectUrlsCtrl.Designer.cs
│ │ │ │ │ ├── SelectUrlsCtrl.resx
│ │ │ │ │ ├── UserNamePasswordDlg.cs
│ │ │ │ │ ├── UserNamePasswordDlg.Designer.cs
│ │ │ │ │ ├── UserNamePasswordDlg.resx
│ │ │ │ │ ├── ViewCertificateDlg.cs
│ │ │ │ │ ├── ViewCertificateDlg.Designer.cs
│ │ │ │ │ ├── ViewCertificateDlg.resx
│ │ │ │ │ ├── YesNoDlg.cs
│ │ │ │ │ ├── YesNoDlg.Designer.cs
│ │ │ │ │ └── YesNoDlg.resx
│ │ │ │ ├── Endpoints
│ │ │ │ │ ├── ConfiguredServerDlg.cs
│ │ │ │ │ ├── ConfiguredServerDlg.Designer.cs
│ │ │ │ │ ├── ConfiguredServerDlg.resx
│ │ │ │ │ ├── ConfiguredServerListCtrl.cs
│ │ │ │ │ ├── ConfiguredServerListCtrl.Designer.cs
│ │ │ │ │ ├── ConfiguredServerListCtrl.resx
│ │ │ │ │ ├── ConfiguredServerListDlg.cs
│ │ │ │ │ ├── ConfiguredServerListDlg.Designer.cs
│ │ │ │ │ ├── ConfiguredServerListDlg.resx
│ │ │ │ │ ├── DiscoveredServerListCtrl.cs
│ │ │ │ │ ├── DiscoveredServerListCtrl.Designer.cs
│ │ │ │ │ ├── DiscoveredServerListCtrl.resx
│ │ │ │ │ ├── DiscoveredServerListDlg.cs
│ │ │ │ │ ├── DiscoveredServerListDlg.Designer.cs
│ │ │ │ │ ├── DiscoveredServerListDlg.resx
│ │ │ │ │ ├── EndpointSelectorCtrl.cs
│ │ │ │ │ ├── EndpointSelectorCtrl.Designer.cs
│ │ │ │ │ ├── EndpointSelectorCtrl.resx
│ │ │ │ │ ├── HostListCtrl.cs
│ │ │ │ │ ├── HostListCtrl.Designer.cs
│ │ │ │ │ ├── HostListCtrl.resx
│ │ │ │ │ ├── HostListDlg.cs
│ │ │ │ │ ├── HostListDlg.Designer.cs
│ │ │ │ │ ├── HostListDlg.resx
│ │ │ │ │ ├── SelectHostCtrl.cs
│ │ │ │ │ ├── SelectHostCtrl.Designer.cs
│ │ │ │ │ ├── SelectHostCtrl.resx
│ │ │ │ │ ├── UsernameTokenDlg.cs
│ │ │ │ │ ├── UsernameTokenDlg.Designer.cs
│ │ │ │ │ └── UsernameTokenDlg.resx
│ │ │ │ ├── Icons
│ │ │ │ │ ├── Array.bmp
│ │ │ │ │ ├── Attribute.bmp
│ │ │ │ │ ├── ByteString.bmp
│ │ │ │ │ ├── ClosedFolder.bmp
│ │ │ │ │ ├── Constant.bmp
│ │ │ │ │ ├── InputArgument.bmp
│ │ │ │ │ ├── Method.bmp
│ │ │ │ │ ├── Number.bmp
│ │ │ │ │ ├── Object2.bmp
│ │ │ │ │ ├── Object.bmp
│ │ │ │ │ ├── ObjectType.bmp
│ │ │ │ │ ├── OpenFolder.bmp
│ │ │ │ │ ├── OutputArgument.bmp
│ │ │ │ │ ├── Property.bmp
│ │ │ │ │ ├── Reference.bmp
│ │ │ │ │ ├── String.bmp
│ │ │ │ │ ├── Structure.bmp
│ │ │ │ │ ├── Value.bmp
│ │ │ │ │ ├── Variable.bmp
│ │ │ │ │ ├── Varible.bmp
│ │ │ │ │ └── View.bmp
│ │ │ │ ├── packages.config
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ └── Resources.resx
│ │ │ │ └── UA Client Controls.csproj
│ │ │ ├── Client.Net4
│ │ │ │ ├── App.config
│ │ │ │ ├── App.ico
│ │ │ │ ├── app.manifest
│ │ │ │ ├── CreateCert.cmd
│ │ │ │ ├── InstallConfig.xml
│ │ │ │ ├── libuv.dll
│ │ │ │ ├── Opc.Ua.Core.Stack.Generated.Opc.Ua.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.Core.Types.Utils.LocalizedData.txt
│ │ │ │ ├── Opc.Ua.Sample.Boiler.Boiler.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.SampleClient.Config.xml
│ │ │ │ ├── Opc.Ua.SampleClient.Endpoints.xml
│ │ │ │ ├── Opc.Ua.SampleClient.exe.config
│ │ │ │ ├── Opc.Ua.Sample.MemoryBuffer.MemoryBuffer.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.Sample.TestData.TestData.PredefinedNodes.uanodes
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── SampleClientForm.cs
│ │ │ │ ├── SampleClientForm.Designer.cs
│ │ │ │ ├── SampleClientForm.resx
│ │ │ │ └── UA Sample Client.csproj
│ │ │ ├── Controls
│ │ │ │ ├── Common
│ │ │ │ │ └── AttributeListCtrl.cs
│ │ │ │ ├── Opc.Ua.Sample.Controls.csproj
│ │ │ │ ├── project.json
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ │ └── Opc.Ua.Sample.Controls.rd.xml
│ │ │ │ ├── SelectLocaleDlg.xaml
│ │ │ │ ├── SelectLocaleDlg.xaml.cs
│ │ │ │ ├── Sessions
│ │ │ │ │ ├── AddressSpaceDlg.xaml
│ │ │ │ │ ├── AddressSpaceDlg.xaml.cs
│ │ │ │ │ ├── BrowseDlg.xaml
│ │ │ │ │ ├── BrowseDlg.xaml.cs
│ │ │ │ │ ├── BrowseListCtrl.cs
│ │ │ │ │ ├── BrowseOptionsDlg.xaml
│ │ │ │ │ ├── BrowseOptionsDlg.xaml.cs
│ │ │ │ │ ├── BrowseTreeCtrl.cs
│ │ │ │ │ ├── BrowseTypesDlg.xaml
│ │ │ │ │ ├── BrowseTypesDlg.xaml.cs
│ │ │ │ │ ├── ReadHistoryDlg.xaml
│ │ │ │ │ ├── ReadHistoryDlg.xaml.cs
│ │ │ │ │ ├── SelectNodeDlg.xaml
│ │ │ │ │ ├── SelectNodeDlg.xaml.cs
│ │ │ │ │ ├── SessionOpenDlg.xaml
│ │ │ │ │ ├── SessionOpenDlg.xaml.cs
│ │ │ │ │ └── SessionTreeCtrl.cs
│ │ │ │ └── Subscriptions
│ │ │ │ ├── NotificationMessageListCtrl.cs
│ │ │ │ ├── SubscriptionDlg.xaml
│ │ │ │ ├── SubscriptionDlg.xaml.cs
│ │ │ │ ├── SubscriptionEditDlg.xaml
│ │ │ │ └── SubscriptionEditDlg.xaml.cs
│ │ │ ├── Controls.Net4
│ │ │ │ ├── app.config
│ │ │ │ ├── ClientForm.cs
│ │ │ │ ├── ClientForm.Designer.cs
│ │ │ │ ├── ClientForm.resx
│ │ │ │ ├── Common
│ │ │ │ │ ├── ArgumentListCtrl.cs
│ │ │ │ │ ├── ArgumentListCtrl.Designer.cs
│ │ │ │ │ ├── ArgumentListCtrl.resx
│ │ │ │ │ ├── AttributeListCtrl.cs
│ │ │ │ │ ├── AttributeListCtrl.Designer.cs
│ │ │ │ │ ├── AttributeListCtrl.resx
│ │ │ │ │ ├── BackgroundTaskDlg.cs
│ │ │ │ │ ├── BackgroundTaskDlg.Designer.cs
│ │ │ │ │ ├── BackgroundTaskDlg.resx
│ │ │ │ │ ├── CallMethodDlg.cs
│ │ │ │ │ ├── CallMethodDlg.Designer.cs
│ │ │ │ │ ├── CallMethodDlg.resx
│ │ │ │ │ ├── DataEncodingDlg.cs
│ │ │ │ │ ├── DataEncodingDlg.Designer.cs
│ │ │ │ │ ├── DataEncodingDlg.resx
│ │ │ │ │ ├── DataListCtrl.cs
│ │ │ │ │ ├── DataListCtrl.Designer.cs
│ │ │ │ │ ├── DataListCtrl.resx
│ │ │ │ │ ├── DataValueListCtrl.cs
│ │ │ │ │ ├── DataValueListCtrl.Designer.cs
│ │ │ │ │ ├── DataValueListCtrl.resx
│ │ │ │ │ ├── FindNodeDlg.cs
│ │ │ │ │ ├── FindNodeDlg.Designer.cs
│ │ │ │ │ ├── FindNodeDlg.resx
│ │ │ │ │ ├── GuiUtils2.cs
│ │ │ │ │ ├── GuiUtils2.Designer.cs
│ │ │ │ │ ├── GuiUtils2.resx
│ │ │ │ │ ├── NodeIdValueEditDlg.cs
│ │ │ │ │ ├── NodeIdValueEditDlg.Designer.cs
│ │ │ │ │ ├── NodeIdValueEditDlg.resx
│ │ │ │ │ ├── NodeListCtrl.cs
│ │ │ │ │ ├── NodeListCtrl.Designer.cs
│ │ │ │ │ ├── NodeListCtrl.resx
│ │ │ │ │ ├── PerformanceResultsListCtrl.cs
│ │ │ │ │ ├── PerformanceResultsListCtrl.Designer.cs
│ │ │ │ │ ├── PerformanceResultsListCtrl.resx
│ │ │ │ │ ├── PerformanceTestDlg.cs
│ │ │ │ │ ├── PerformanceTestDlg.Designer.cs
│ │ │ │ │ ├── PerformanceTestDlg.resx
│ │ │ │ │ ├── PropertyListCtrl.cs
│ │ │ │ │ ├── PropertyListCtrl.Designer.cs
│ │ │ │ │ ├── PropertyListCtrl.resx
│ │ │ │ │ ├── ReferenceTypeCtrl.cs
│ │ │ │ │ ├── ReferenceTypeCtrl.Designer.cs
│ │ │ │ │ ├── ReferenceTypeCtrl.resx
│ │ │ │ │ ├── SelectNodesDlg.cs
│ │ │ │ │ ├── SelectNodesDlg.Designer.cs
│ │ │ │ │ ├── SelectNodesDlg.resx
│ │ │ │ │ ├── SimpleValueEditDlg.cs
│ │ │ │ │ ├── SimpleValueEditDlg.Designer.cs
│ │ │ │ │ └── SimpleValueEditDlg.resx
│ │ │ │ ├── packages.config
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ └── Resources.resx
│ │ │ │ ├── SelectLocaleDlg.cs
│ │ │ │ ├── SelectLocaleDlg.Designer.cs
│ │ │ │ ├── SelectLocaleDlg.resx
│ │ │ │ ├── ServerForm.cs
│ │ │ │ ├── ServerForm.Designer.cs
│ │ │ │ ├── ServerForm.resx
│ │ │ │ ├── ServerHeaderBranding.cs
│ │ │ │ ├── ServerHeaderBranding.Designer.cs
│ │ │ │ ├── ServerHeaderBranding.resx
│ │ │ │ ├── Sessions
│ │ │ │ │ ├── AddressSpaceDlg.cs
│ │ │ │ │ ├── AddressSpaceDlg.Designer.cs
│ │ │ │ │ ├── AddressSpaceDlg.resx
│ │ │ │ │ ├── BrowseDlg.cs
│ │ │ │ │ ├── BrowseDlg.Designer.cs
│ │ │ │ │ ├── BrowseDlg.resx
│ │ │ │ │ ├── BrowseListCtrl.cs
│ │ │ │ │ ├── BrowseListCtrl.Designer.cs
│ │ │ │ │ ├── BrowseListCtrl.resx
│ │ │ │ │ ├── BrowseOptionsDlg.cs
│ │ │ │ │ ├── BrowseOptionsDlg.Designer.cs
│ │ │ │ │ ├── BrowseOptionsDlg.resx
│ │ │ │ │ ├── BrowseTreeCtrl.cs
│ │ │ │ │ ├── BrowseTreeCtrl.Designer.cs
│ │ │ │ │ ├── BrowseTreeCtrl.resx
│ │ │ │ │ ├── BrowseTypesDlg.cs
│ │ │ │ │ ├── BrowseTypesDlg.Designer.cs
│ │ │ │ │ ├── BrowseTypesDlg.resx
│ │ │ │ │ ├── CreateSecureChannelDlg.cs
│ │ │ │ │ ├── CreateSecureChannelDlg.Designer.cs
│ │ │ │ │ ├── CreateSecureChannelDlg.resx
│ │ │ │ │ ├── EndpointViewDlg.cs
│ │ │ │ │ ├── EndpointViewDlg.Designer.cs
│ │ │ │ │ ├── EndpointViewDlg.resx
│ │ │ │ │ ├── NodeAttributesDlg.cs
│ │ │ │ │ ├── NodeAttributesDlg.Designer.cs
│ │ │ │ │ ├── NodeAttributesDlg.resx
│ │ │ │ │ ├── ReadHistoryDlg.cs
│ │ │ │ │ ├── ReadHistoryDlg.Designer.cs
│ │ │ │ │ ├── ReadHistoryDlg.resx
│ │ │ │ │ ├── SecuritySettingsDlg.cs
│ │ │ │ │ ├── SecuritySettingsDlg.Designer.cs
│ │ │ │ │ ├── SecuritySettingsDlg.resx
│ │ │ │ │ ├── SelectNodeDlg.cs
│ │ │ │ │ ├── SelectNodeDlg.Designer.cs
│ │ │ │ │ ├── SelectNodeDlg.resx
│ │ │ │ │ ├── SessionOpenDlg.cs
│ │ │ │ │ ├── SessionOpenDlg.Designer.cs
│ │ │ │ │ ├── SessionOpenDlg.resx
│ │ │ │ │ ├── SessionTreeCtrl.cs
│ │ │ │ │ ├── SessionTreeCtrl.Designer.cs
│ │ │ │ │ ├── SessionTreeCtrl.resx
│ │ │ │ │ ├── TypeHierarchyListCtrl.cs
│ │ │ │ │ ├── TypeHierarchyListCtrl.Designer.cs
│ │ │ │ │ ├── TypeNavigatorCtrl.cs
│ │ │ │ │ ├── TypeNavigatorCtrl.Designer.cs
│ │ │ │ │ └── TypeNavigatorCtrl.resx
│ │ │ │ ├── Subscriptions
│ │ │ │ │ ├── ContentFilterElementListCtrl.cs
│ │ │ │ │ ├── ContentFilterElementListCtrl.Designer.cs
│ │ │ │ │ ├── ContentFilterElementListCtrl.resx
│ │ │ │ │ ├── CreateMonitoredItemsDlg.cs
│ │ │ │ │ ├── CreateMonitoredItemsDlg.Designer.cs
│ │ │ │ │ ├── CreateMonitoredItemsDlg.resx
│ │ │ │ │ ├── DataChangeFilterEditDlg.cs
│ │ │ │ │ ├── DataChangeFilterEditDlg.Designer.cs
│ │ │ │ │ ├── DataChangeFilterEditDlg.resx
│ │ │ │ │ ├── DataChangeNotificationListCtrl.cs
│ │ │ │ │ ├── DataChangeNotificationListCtrl.Designer.cs
│ │ │ │ │ ├── DataChangeNotificationListCtrl.resx
│ │ │ │ │ ├── EventFilterDlg.cs
│ │ │ │ │ ├── EventFilterDlg.Designer.cs
│ │ │ │ │ ├── EventFilterDlg.resx
│ │ │ │ │ ├── EventNotificationListCtrl.cs
│ │ │ │ │ ├── EventNotificationListCtrl.Designer.cs
│ │ │ │ │ ├── EventNotificationListCtrl.resx
│ │ │ │ │ ├── FilterOperandEditDlg.cs
│ │ │ │ │ ├── FilterOperandEditDlg.Designer.cs
│ │ │ │ │ ├── FilterOperandEditDlg.resx
│ │ │ │ │ ├── FilterOperandListCtrl.cs
│ │ │ │ │ ├── FilterOperandListCtrl.Designer.cs
│ │ │ │ │ ├── FilterOperandListCtrl.resx
│ │ │ │ │ ├── FilterOperatorEditDlg.cs
│ │ │ │ │ ├── FilterOperatorEditDlg.Designer.cs
│ │ │ │ │ ├── FilterOperatorEditDlg.resx
│ │ │ │ │ ├── HistoryReadDetails.cs
│ │ │ │ │ ├── HistoryReadDetailsCtrl.resx
│ │ │ │ │ ├── HistoryReadDetails.Designer.cs
│ │ │ │ │ ├── HistoryReadDetails.resx
│ │ │ │ │ ├── HistoryReadDlg.cs
│ │ │ │ │ ├── HistoryReadDlg.Designer.cs
│ │ │ │ │ ├── HistoryReadDlg.resx
│ │ │ │ │ ├── MonitoredItemConfigCtrl.cs
│ │ │ │ │ ├── MonitoredItemConfigCtrl.Designer.cs
│ │ │ │ │ ├── MonitoredItemConfigCtrl.resx
│ │ │ │ │ ├── MonitoredItemDlg.cs
│ │ │ │ │ ├── MonitoredItemDlg.Designer.cs
│ │ │ │ │ ├── MonitoredItemDlg.resx
│ │ │ │ │ ├── MonitoredItemEditDlg.cs
│ │ │ │ │ ├── MonitoredItemEditDlg.Designer.cs
│ │ │ │ │ ├── MonitoredItemEditDlg.resx
│ │ │ │ │ ├── MonitoredItemStatusCtrl.cs
│ │ │ │ │ ├── MonitoredItemStatusCtrl.Designer.cs
│ │ │ │ │ ├── MonitoredItemStatusCtrl.resx
│ │ │ │ │ ├── NotificationMessageListCtrl.cs
│ │ │ │ │ ├── NotificationMessageListCtrl.Designer.cs
│ │ │ │ │ ├── NotificationMessageListCtrl.resx
│ │ │ │ │ ├── ReadDlg.cs
│ │ │ │ │ ├── ReadDlg.Designer.cs
│ │ │ │ │ ├── ReadDlg.resx
│ │ │ │ │ ├── ReadValueEditDlg.cs
│ │ │ │ │ ├── ReadValueEditDlg.Designer.cs
│ │ │ │ │ ├── ReadValueEditDlg.resx
│ │ │ │ │ ├── ReadValueListCtrl.cs
│ │ │ │ │ ├── ReadValueListCtrl.Designer.cs
│ │ │ │ │ ├── ReadValueListCtrl.resx
│ │ │ │ │ ├── RepublishNotificationMessageDlg.cs
│ │ │ │ │ ├── RepublishNotificationMessageDlg.Designer.cs
│ │ │ │ │ ├── RepublishNotificationMessageDlg.resx
│ │ │ │ │ ├── SelectClauseListCtrl.cs
│ │ │ │ │ ├── SelectClauseListCtrl.Designer.cs
│ │ │ │ │ ├── SelectClauseListCtrl.resx
│ │ │ │ │ ├── SetMonitoringModeDlg.cs
│ │ │ │ │ ├── SetMonitoringModeDlg.Designer.cs
│ │ │ │ │ ├── SetMonitoringModeDlg.resx
│ │ │ │ │ ├── SubscriptionDlg.cs
│ │ │ │ │ ├── SubscriptionDlg.Designer.cs
│ │ │ │ │ ├── SubscriptionDlg.resx
│ │ │ │ │ ├── SubscriptionEditDlg.cs
│ │ │ │ │ ├── SubscriptionEditDlg.Designer.cs
│ │ │ │ │ ├── SubscriptionEditDlg.resx
│ │ │ │ │ ├── WriteDlg.cs
│ │ │ │ │ ├── WriteDlg.Designer.cs
│ │ │ │ │ ├── WriteDlg.resx
│ │ │ │ │ ├── WriteValueEditDlg.cs
│ │ │ │ │ ├── WriteValueEditDlg.Designer.cs
│ │ │ │ │ ├── WriteValueEditDlg.resx
│ │ │ │ │ ├── WriteValueListCtrl.cs
│ │ │ │ │ ├── WriteValueListCtrl.Designer.cs
│ │ │ │ │ └── WriteValueListCtrl.resx
│ │ │ │ └── UA Sample Controls.csproj
│ │ │ ├── NetCoreConsoleClient
│ │ │ │ ├── CreateCert.cmd
│ │ │ │ ├── createcert.sh
│ │ │ │ ├── NetCoreConsoleClient.xproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── project.json
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── sampleclient.ext
│ │ │ ├── NetCoreConsoleServer
│ │ │ │ ├── CreateCert.cmd
│ │ │ │ ├── createcert.sh
│ │ │ │ ├── NetCoreConsoleServer.xproj
│ │ │ │ ├── Opc.Ua.Core.Stack.Generated.Opc.Ua.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.Core.Types.Utils.LocalizedData.txt
│ │ │ │ ├── Opc.Ua.Sample.Boiler.Boiler.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.Sample.MemoryBuffer.MemoryBuffer.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.SampleServer.Config.xml
│ │ │ │ ├── Opc.Ua.Sample.TestData.TestData.PredefinedNodes.uanodes
│ │ │ │ ├── Program.cs
│ │ │ │ ├── project.json
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── sampleserver.ext
│ │ │ ├── Opc.Ua.Sample
│ │ │ │ ├── Base
│ │ │ │ │ ├── CustomNodeManager.cs
│ │ │ │ │ ├── DataChangeMonitoredItem.cs
│ │ │ │ │ ├── MonitoredItemQueue.cs
│ │ │ │ │ ├── MonitoredNode.cs
│ │ │ │ │ └── SampleNodeManager.cs
│ │ │ │ ├── Boiler
│ │ │ │ │ ├── Boiler.Classes.cs
│ │ │ │ │ ├── Boiler.Constants.cs
│ │ │ │ │ ├── Boiler.DataTypes.cs
│ │ │ │ │ ├── BoilerDesign.csv
│ │ │ │ │ ├── BoilerDesign.xml
│ │ │ │ │ ├── BoilerNodeManager.cs
│ │ │ │ │ ├── Boiler.NodeSet2.xml
│ │ │ │ │ ├── Boiler.NodeSet.xml
│ │ │ │ │ ├── Boiler.PredefinedNodes.uanodes
│ │ │ │ │ ├── Boiler.PredefinedNodes.xml
│ │ │ │ │ ├── BoilerState.cs
│ │ │ │ │ ├── Boiler.Types.bsd
│ │ │ │ │ ├── Boiler.Types.xsd
│ │ │ │ │ └── GenericController.cs
│ │ │ │ ├── MemoryBuffer
│ │ │ │ │ ├── MemoryBufferBrowser.cs
│ │ │ │ │ ├── MemoryBuffer.Classes.cs
│ │ │ │ │ ├── MemoryBufferConfiguration.cs
│ │ │ │ │ ├── MemoryBufferDesign.csv
│ │ │ │ │ ├── MemoryBufferDesign.xml
│ │ │ │ │ ├── MemoryBufferMonitoredItem.cs
│ │ │ │ │ ├── MemoryBufferNodeManager.cs
│ │ │ │ │ ├── MemoryBuffer.NodeSet2.xml
│ │ │ │ │ ├── MemoryBuffer.NodeSet.xml
│ │ │ │ │ ├── MemoryBuffer.PredefinedNodes.uanodes
│ │ │ │ │ ├── MemoryBuffer.PredefinedNodes.xml
│ │ │ │ │ ├── MemoryBufferState.cs
│ │ │ │ │ ├── MemoryBuffer.Types.bsd
│ │ │ │ │ ├── MemoryBuffer.Types.xsd
│ │ │ │ │ └── MemoryTagState.cs
│ │ │ │ ├── Opc.Ua.Sample.xproj
│ │ │ │ ├── project.json
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ │ └── Opc.Ua.Sample.rd.xml
│ │ │ │ ├── SampleServer.cs
│ │ │ │ ├── SampleServer.SampleModel.cs
│ │ │ │ ├── SampleServer.UserAuthentication.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
│ │ │ │ ├── TestDataDesign.csv
│ │ │ │ ├── TestDataDesign.xml
│ │ │ │ ├── TestDataNodeManagerConfiguration.cs
│ │ │ │ ├── TestDataNodeManager.cs
│ │ │ │ ├── TestData.NodeSet2.xml
│ │ │ │ ├── TestData.NodeSet.xml
│ │ │ │ ├── TestDataObjectState.cs
│ │ │ │ ├── TestData.PredefinedNodes.uanodes
│ │ │ │ ├── TestData.PredefinedNodes.xml
│ │ │ │ ├── TestDataSystem.cs
│ │ │ │ ├── TestData.Types.bsd
│ │ │ │ ├── TestData.Types.xsd
│ │ │ │ ├── TestSystemConditionState.cs
│ │ │ │ ├── UserArrayValueObjectState.cs
│ │ │ │ └── UserScalarValueObjectState.cs
│ │ │ ├── Server
│ │ │ │ ├── App.ico
│ │ │ │ ├── App.xaml
│ │ │ │ ├── App.xaml.cs
│ │ │ │ ├── Assets
│ │ │ │ │ ├── LockScreenLogo.scale-200.png
│ │ │ │ │ ├── SplashScreen.scale-200.png
│ │ │ │ │ ├── Square150x150Logo.scale-200.png
│ │ │ │ │ ├── Square44x44Logo.scale-200.png
│ │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ │ │ │ ├── StoreLogo.png
│ │ │ │ │ └── Wide310x150Logo.scale-200.png
│ │ │ │ ├── CreateCert.cmd
│ │ │ │ ├── Opc.Ua.Core.Stack.Generated.Opc.Ua.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.Core.Types.Utils.LocalizedData.txt
│ │ │ │ ├── Opc.Ua.Sample.Boiler.Boiler.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.Sample.MemoryBuffer.MemoryBuffer.PredefinedNodes.uanodes
│ │ │ │ ├── Opc.Ua.SampleServer.Config.xml
│ │ │ │ ├── Opc.Ua.SampleServer.csproj
│ │ │ │ ├── Opc.Ua.SampleServer_TemporaryKey.pfx
│ │ │ │ ├── Opc.Ua.Sample.TestData.TestData.PredefinedNodes.uanodes
│ │ │ │ ├── Package.appxmanifest
│ │ │ │ ├── project.json
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ │ └── Default.rd.xml
│ │ │ │ ├── ServerDiagnosticsCtrl.xaml
│ │ │ │ ├── ServerDiagnosticsCtrl.xaml.cs
│ │ │ │ ├── ServerPage.xaml
│ │ │ │ └── ServerPage.xaml.cs
│ │ │ ├── ServerControls.Net4
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ └── Resources.resx
│ │ │ │ ├── ServerDiagnosticsCtrl.cs
│ │ │ │ ├── ServerDiagnosticsCtrl.Designer.cs
│ │ │ │ ├── ServerDiagnosticsCtrl.resx
│ │ │ │ ├── ServerForm.cs
│ │ │ │ ├── ServerForm.Designer.cs
│ │ │ │ ├── ServerForm.resx
│ │ │ │ ├── ServerHeaderBranding.cs
│ │ │ │ ├── ServerHeaderBranding.Designer.cs
│ │ │ │ ├── ServerHeaderBranding.resx
│ │ │ │ └── UA Server Controls.csproj
│ │ │ └── Server.Net4
│ │ │ ├── App.config
│ │ │ ├── App.ico
│ │ │ ├── app.manifest
│ │ │ ├── CreateCert.cmd
│ │ │ ├── InstallConfig.xml
│ │ │ ├── libuv.dll
│ │ │ ├── Opc.Ua.Core.Stack.Generated.Opc.Ua.PredefinedNodes.uanodes
│ │ │ ├── Opc.Ua.Core.Types.Utils.LocalizedData.txt
│ │ │ ├── Opc.Ua.Sample.Boiler.Boiler.PredefinedNodes.uanodes
│ │ │ ├── Opc.Ua.Sample.MemoryBuffer.MemoryBuffer.PredefinedNodes.uanodes
│ │ │ ├── Opc.Ua.SampleServer.Config.xml
│ │ │ ├── Opc.Ua.SampleServer.exe.config
│ │ │ ├── Opc.Ua.Sample.TestData.TestData.PredefinedNodes.uanodes
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ServerDiagnosticsCtrl.cs
│ │ │ ├── ServerDiagnosticsCtrl.Designer.cs
│ │ │ ├── ServerDiagnosticsCtrl.resx
│ │ │ ├── ServerForm.cs
│ │ │ ├── ServerForm.Designer.cs
│ │ │ ├── ServerForm.resx
│ │ │ └── UA Sample Server.csproj
│ │ └── SDK
│ │ ├── Opc.Ua.Client
│ │ │ ├── Browser.cs
│ │ │ ├── DataDictionary.cs
│ │ │ ├── Documentation
│ │ │ │ └── Opc.Ua.Client.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── MonitoredItem.cs
│ │ │ ├── MonitoredItemStatus.cs
│ │ │ ├── NodeCache.cs
│ │ │ ├── Opc.Ua.Client.xproj
│ │ │ ├── project.json
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── AssemblyVersionInfo.cs
│ │ │ │ └── Opc.Ua.Client.rd.xml
│ │ │ ├── Session.cs
│ │ │ ├── SessionReconnectHandler.cs
│ │ │ └── Subscription.cs
│ │ ├── Opc.Ua.Configuration
│ │ │ ├── AccountInfo.cs
│ │ │ ├── ApplicationInstance.cs
│ │ │ ├── ConfigUtils.cs
│ │ │ ├── Enum.cs
│ │ │ ├── ManagedApplication.cs
│ │ │ ├── Opc.Ua.Configuration.xproj
│ │ │ ├── project.json
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ └── AssemblyVersionInfo.cs
│ │ │ ├── Schema
│ │ │ │ ├── InstalledApplication.cs
│ │ │ │ ├── InstalledApplicationHelper.cs
│ │ │ │ └── InstalledApplication.xsd
│ │ │ └── Service.cs
│ │ └── Opc.Ua.Server
│ │ ├── AddressSpace
│ │ │ ├── BaseEvent.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
│ │ │ ├── SecurityKeyManager.cs
│ │ │ └── ServerSystemContext.cs
│ │ ├── Opc.Ua.Server.xproj
│ │ ├── project.json
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── AssemblyVersionInfo.cs
│ │ │ └── Opc.Ua.Server.rd.xml
│ │ ├── Server
│ │ │ ├── IServerInternal.cs
│ │ │ ├── OperationContext.cs
│ │ │ ├── RequestManager.cs
│ │ │ ├── ServerInternalData.cs
│ │ │ └── StandardServer.cs
│ │ ├── ServerUtils.cs
│ │ ├── Session
│ │ │ ├── RequestType.cs
│ │ │ ├── Session.cs
│ │ │ └── SessionManager.cs
│ │ └── Subscription
│ │ ├── AsyncPublishOperation.cs
│ │ ├── IMonitoredItem.cs
│ │ ├── MonitoredItem.cs
│ │ ├── PublishingState.cs
│ │ ├── SessionPublishQueue.cs
│ │ ├── Subscription.cs
│ │ └── SubscriptionManager.cs
│ ├── Stack
│ │ └── Opc.Ua.Core
│ │ ├── Documentation
│ │ │ ├── Opc.Ua.Bindings.cs
│ │ │ ├── Opc.Ua.Configuration.cs
│ │ │ ├── Opc.Ua.cs
│ │ │ ├── Opc.Ua.Schema.Binary.cs
│ │ │ ├── Opc.Ua.Schema.cs
│ │ │ └── Opc.Ua.Schema.Xml.cs
│ │ ├── Opc.Ua.Core.xproj
│ │ ├── project.json
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── AssemblyVersionInfo.cs
│ │ │ └── Opc.Ua.Core.rd.xml
│ │ ├── Schema
│ │ │ ├── ApplicationConfiguration.cs
│ │ │ ├── ApplicationConfiguration.xsd
│ │ │ ├── AttributeIds.csv
│ │ │ ├── BuildSchema.bat
│ │ │ ├── NodeIds.csv
│ │ │ ├── OAuth2AuthorityConfiguration.cs
│ │ │ ├── Opc.Ua.Endpoints.wsdl
│ │ │ ├── Opc.Ua.NodeSet2.xml
│ │ │ ├── Opc.Ua.NodeSet.xml
│ │ │ ├── Opc.Ua.Services.wsdl
│ │ │ ├── Opc.Ua.StatusCodes.csv
│ │ │ ├── Opc.Ua.Types.bsd
│ │ │ ├── Opc.Ua.Types.xsd
│ │ │ ├── SecuredApplication.cs
│ │ │ ├── SecuredApplicationHelpers.cs
│ │ │ ├── SecuredApplication.xsd
│ │ │ ├── UANodeSet.cs
│ │ │ ├── UANodeSetHelpers.cs
│ │ │ ├── UANodeSet.xsd
│ │ │ └── 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
│ │ │ │ ├── DirectoryCertificateStore.cs
│ │ │ │ ├── EncryptedData.cs
│ │ │ │ ├── ICertificate.cs
│ │ │ │ ├── ICertificateStore.cs
│ │ │ │ ├── RsaUtils.cs
│ │ │ │ ├── SecurityConfiguration.cs
│ │ │ │ ├── X509AuthorityKeyIdentifierExtension.cs
│ │ │ │ ├── X509CRL.cs
│ │ │ │ └── X509SubjectAltNameExtension.cs
│ │ │ └── Constants
│ │ │ ├── SecurityConstants.cs
│ │ │ └── SecurityPolicies.cs
│ │ ├── Stack
│ │ │ ├── Bindings
│ │ │ │ ├── ArraySegmentStream.cs
│ │ │ │ ├── BaseBinding.cs
│ │ │ │ └── BufferManager.cs
│ │ │ ├── Client
│ │ │ │ ├── ClientBase.cs
│ │ │ │ ├── DiscoveryClient.cs
│ │ │ │ ├── IChannelBase.cs
│ │ │ │ ├── InvokeServiceMessage.cs
│ │ │ │ ├── IServiceRequest.cs
│ │ │ │ ├── IUserIdentity.cs
│ │ │ │ ├── RegistrationClient.cs
│ │ │ │ ├── SessionChannel.cs
│ │ │ │ ├── UserIdentity.cs
│ │ │ │ └── WcfChannelBase.cs
│ │ │ ├── Configuration
│ │ │ │ ├── ApplicationConfiguration.cs
│ │ │ │ ├── ConfigurationWatcher.cs
│ │ │ │ ├── ConfiguredEndpoints.cs
│ │ │ │ ├── EndpointConfiguration.cs
│ │ │ │ ├── EndpointDescription.cs
│ │ │ │ ├── ISecurityConfigurationManager.cs
│ │ │ │ ├── OAuth2Credential.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.Gds.Constants.cs
│ │ │ │ ├── Opc.Ua.Gds.DataTypes.cs
│ │ │ │ ├── Opc.Ua.Interfaces.cs
│ │ │ │ ├── Opc.Ua.Messages.cs
│ │ │ │ ├── Opc.Ua.NodeSet2.Part10.xml
│ │ │ │ ├── Opc.Ua.NodeSet2.Part11.xml
│ │ │ │ ├── Opc.Ua.NodeSet2.Part13.xml
│ │ │ │ ├── Opc.Ua.NodeSet2.Part3.xml
│ │ │ │ ├── Opc.Ua.NodeSet2.Part4.xml
│ │ │ │ ├── Opc.Ua.NodeSet2.Part5.xml
│ │ │ │ ├── Opc.Ua.NodeSet2.Part8.xml
│ │ │ │ ├── Opc.Ua.NodeSet2.Part999.xml
│ │ │ │ ├── Opc.Ua.NodeSet2.Part9.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
│ │ │ │ ├── SecureChannelContext.cs
│ │ │ │ ├── ServerBase.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
│ │ │ │ ├── NodeStateCollection.cs
│ │ │ │ ├── NodeState.cs
│ │ │ │ ├── NonExclusiveLimitAlarmState.cs
│ │ │ │ ├── ProgramStateMachineState.cs
│ │ │ │ ├── ReferenceTypeState.cs
│ │ │ │ ├── ShelvedStateMachineState.cs
│ │ │ │ └── ViewState.cs
│ │ │ ├── Tcp
│ │ │ │ ├── TcpAsyncOperation.cs
│ │ │ │ ├── TcpChannel.Asymmetric.cs
│ │ │ │ ├── TcpChannel.cs
│ │ │ │ ├── TcpChannelQuotas.cs
│ │ │ │ ├── TcpChannel.Rsa.cs
│ │ │ │ ├── TcpChannel.Symmetric.cs
│ │ │ │ ├── TcpChannelToken.cs
│ │ │ │ ├── TcpClientChannel.cs
│ │ │ │ ├── TcpListener.cs
│ │ │ │ ├── TcpMessageSocket.cs
│ │ │ │ ├── TcpMessageType.cs
│ │ │ │ ├── TcpServerChannel.cs
│ │ │ │ └── TcpTransportChannel.cs
│ │ │ ├── Transport
│ │ │ │ ├── AsyncResultBase.cs
│ │ │ │ ├── ITransportChannel.cs
│ │ │ │ ├── ITransportListenerCallback.cs
│ │ │ │ ├── ITransportListener.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
│ │ │ ├── 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
│ │ │ ├── JsonDecoder.cs
│ │ │ ├── JsonEncoder.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
│ │ ├── SoftwareCertficate.cs
│ │ └── Utils
│ │ ├── DataComparer.cs
│ │ ├── DataGenerator.cs
│ │ ├── HiResClock.cs
│ │ ├── LocalizedData.txt
│ │ ├── NamespaceTable.cs
│ │ ├── NumericRange.cs
│ │ ├── ReadOnlyList.cs
│ │ ├── RelativePath.cs
│ │ ├── ServiceMessageContext.cs
│ │ ├── ServiceResult.cs
│ │ ├── ServiceResultException.cs
│ │ ├── TypeInfo.cs
│ │ └── Utils.cs
│ └── UA-NetStandard.sln
└── 说明.docx
109 directories, 1274 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论