From 88f7748e9c6f57a098216a47ede131518ea9d8ab Mon Sep 17 00:00:00 2001 From: zhusenlin Date: Fri, 6 Mar 2026 17:37:42 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4=EF=BC=9A?= =?UTF-8?q?=E6=9C=AC=E5=9C=B0=E9=A1=B9=E7=9B=AE=E5=90=8C=E6=AD=A5=E5=88=B0?= =?UTF-8?q?Gitea?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 63 + .gitignore | 459 + LICENSE | 21 + README.md | 40 + SampleOPCUAClient/SampleOPCUAClient.sln | 25 + SampleOPCUAClient/SampleOPCUAClient/48.json | 449 + .../SampleOPCUAClient/Form1.Designer.cs | 162 + SampleOPCUAClient/SampleOPCUAClient/Form1.cs | 247 + .../SampleOPCUAClient/Form1.resx | 120 + .../SampleOPCUAClient/ItemBase.cs | 247 + .../SampleOPCUAClient/OPC_UA_ConnectServer.cs | 499 + .../OPC依赖项/Opc.Ua.Bindings.Https.dll | Bin 0 -> 29184 bytes .../OPC依赖项/Opc.Ua.Bindings.Https.xml | 262 + .../OPC依赖项/Opc.Ua.Client.dll | Bin 0 -> 154112 bytes .../OPC依赖项/Opc.Ua.Client.xml | 2513 + .../OPC依赖项/Opc.Ua.Configuration.dll | Bin 0 -> 32256 bytes .../OPC依赖项/Opc.Ua.Configuration.xml | 201 + .../OPC依赖项/Opc.Ua.Core.dll | Bin 0 -> 8784384 bytes .../OPC依赖项/Opc.Ua.Core.xml | 168459 +++++++++++++++ .../Opc.Ua.Security.Certificates.dll | Bin 0 -> 51712 bytes .../Opc.Ua.Security.Certificates.xml | 1721 + .../System.ServiceModel.Primitives.dll | Bin 0 -> 21384 bytes .../SampleOPCUAClient/Pro_OPCUA.cs | 635 + .../SampleOPCUAClient/Program.cs | 23 + .../SampleOPCUAClient/ProtocolBase.cs | 70 + .../SampleOPCUAClient.csproj | 41 + .../Treasure.OPCUAClient.Config.xml | 89 + 27 files changed, 176346 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 SampleOPCUAClient/SampleOPCUAClient.sln create mode 100644 SampleOPCUAClient/SampleOPCUAClient/48.json create mode 100644 SampleOPCUAClient/SampleOPCUAClient/Form1.Designer.cs create mode 100644 SampleOPCUAClient/SampleOPCUAClient/Form1.cs create mode 100644 SampleOPCUAClient/SampleOPCUAClient/Form1.resx create mode 100644 SampleOPCUAClient/SampleOPCUAClient/ItemBase.cs create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC_UA_ConnectServer.cs create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Bindings.Https.dll create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Bindings.Https.xml create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Client.dll create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Client.xml create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Configuration.dll create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Configuration.xml create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Core.dll create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Core.xml create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Security.Certificates.dll create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Security.Certificates.xml create mode 100644 SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/System.ServiceModel.Primitives.dll create mode 100644 SampleOPCUAClient/SampleOPCUAClient/Pro_OPCUA.cs create mode 100644 SampleOPCUAClient/SampleOPCUAClient/Program.cs create mode 100644 SampleOPCUAClient/SampleOPCUAClient/ProtocolBase.cs create mode 100644 SampleOPCUAClient/SampleOPCUAClient/SampleOPCUAClient.csproj create mode 100644 SampleOPCUAClient/SampleOPCUAClient/Treasure.OPCUAClient.Config.xml diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c329304 --- /dev/null +++ b/.gitignore @@ -0,0 +1,459 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# Tye +.tye/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +## +## Visual studio for Mac +## + + +# globs +Makefile.in +*.userprefs +*.usertasks +config.make +config.status +aclocal.m4 +install-sh +autom4te.cache/ +*.tar.gz +tarballs/ +test-results/ + +# Mac bundle stuff +*.dmg +*.app + +# content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore +# Windows thumbnail cache files +Thumbs.db +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# JetBrains Rider +.idea/ +*.sln.iml + +## +## Visual Studio Code +## +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# 保留 Cowain.TestProject/Plugins 文件夹本身(关键:! 表示不忽略) +!Cowain.TestProject/Plugins/ +# 忽略 Plugins 文件夹下的所有内容(递归匹配所有文件/子文件夹) +Cowain.TestProject/Plugins/**/* diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..63b4b68 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..30c9952 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +# OPCUA读写复杂结构体示例 + +## 概述 + +欢迎使用OPCUA读写结构体示例资源库。本项目旨在为开发者提供一种直观且实用的方法,展示如何在OPC UA (Open Platform Communications Unified Architecture)框架下读写复杂的结构体数据。OPC UA是一种工业标准协议,用于实现不同系统间的数据交换,特别擅长处理和传输结构化的复杂数据。 + +## 特点 + +- **示例代码**: 提供了清晰的代码实例,演示如何构建和解析包含嵌套结构、数组等复杂数据类型的OPC UA变量。 +- **教程性引导**: 通过本示例,新手到中级开发者可以快速上手OPC UA中高级特性的应用。 +- **跨平台兼容**: 代码设计考虑到了多语言环境,主要以C#, Java或Python中的至少一种实现,确保广泛的应用场景支持。 +- **学习资源**: 包含详细的注释和解释,帮助理解OPC UA结构体序列化和反序列化的原理。 + +## 使用场景 + +- 工业自动化: 设备状态监控,其中设备参数可能是一个复杂的结构,如温度传感器包含位置信息、精度和实际读数等。 +- 数据集成: 当需要将多个不同类型数据整合成统一格式进行交换时,比如能源管理系统。 +- IIoT应用: 在物联网环境中,复杂的设备配置或诊断信息传递。 + +## 快速入门 + +1. **安装依赖**: 确保你的开发环境已安装必要的OPC UA库。对于不同语言,推荐使用官方或社区维护的OPC UA SDK。 +2. **获取代码**: 克隆此仓库到本地。 +3. **运行示例**: 查阅仓库内的`README`或特定语言文档,找到启动示例应用程序的步骤。 +4. **探索与实践**: 阅读代码,尝试修改结构体定义或读写逻辑来适应你的具体需求。 + +## 注意事项 + +- 在使用前,请确保你对OPC UA的基本概念有所了解,包括节点管理、数据模型和安全设置。 +- 实际部署中,考虑到生产环境的安全性和稳定性,应仔细测试所有自定义的结构体读写逻辑。 + +## 贡献与反馈 + +我们鼓励社区成员参与贡献,无论是代码改进、文档补充还是问题报告。请遵守仓库内的贡献指南,并通过GitHub Issue进行交流。 + +加入我们,共同推进工业通信技术的发展,享受高效、安全的数据交换带来的便利! + +--- + +开始您的OPCUA之旅,探索如何高效地管理和操作复杂数据结构,提升您的应用在现代工业环境下的交互能力。祝您编码愉快! \ No newline at end of file diff --git a/SampleOPCUAClient/SampleOPCUAClient.sln b/SampleOPCUAClient/SampleOPCUAClient.sln new file mode 100644 index 0000000..960b64f --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31321.278 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleOPCUAClient", "SampleOPCUAClient\SampleOPCUAClient.csproj", "{CE43F3F8-9FC1-4BC9-8947-AF18E536D005}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CE43F3F8-9FC1-4BC9-8947-AF18E536D005}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CE43F3F8-9FC1-4BC9-8947-AF18E536D005}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CE43F3F8-9FC1-4BC9-8947-AF18E536D005}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CE43F3F8-9FC1-4BC9-8947-AF18E536D005}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {92EE55D7-4E9A-4A7E-93AF-39122B7F1396} + EndGlobalSection +EndGlobal diff --git a/SampleOPCUAClient/SampleOPCUAClient/48.json b/SampleOPCUAClient/SampleOPCUAClient/48.json new file mode 100644 index 0000000..2d2ec1c --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/48.json @@ -0,0 +1,449 @@ +[ + { + "ItemID": "2", + "ItemName": "焊接时间", + "ItemAdress": "", + "Item_MQTT_Name": "v2", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "Cloos_Device_Status_Accumulation", + "IsCalculate": true, + "otherItemAdress": "13", + "ConstantValue": "1", + "AccumulationValue": [ + "4" + ] + } + ] + }, + { + "ItemID": "3", + "ItemName": "工作时间", + "ItemAdress": "", + "Item_MQTT_Name": "v3", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "Addition", + "IsCalculate": false, + "otherItemAdress": "2;35", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "4", + "ItemName": "焊接效率", + "ItemAdress": "", + "Item_MQTT_Name": "v4", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": false, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "Division", + "IsCalculate": false, + "otherItemAdress": "2;32", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "5", + "ItemName": "焊丝消耗", + "ItemAdress": "", + "Item_MQTT_Name": "v5", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "MaterialConsumption", + "IsCalculate": true, + "otherItemAdress": "50", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "6", + "ItemName": "电能消耗", + "ItemAdress": "", + "Item_MQTT_Name": "v6", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "PowerConsumption", + "IsCalculate": true, + "otherItemAdress": "20;22", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "7", + "ItemName": "气体流量源数据", + "ItemAdress": "ns=2;s=DynamicWeldData.GasFlow", + "Item_MQTT_Name": "", + "ItemLength": "1", + "ItemType": "String", + "IsRead": true, + "IsCalculate": false, + "CalculationRule": "NuN", + "otherItemAdress": "", + "ConstantValue": "1" + }, + { + "ItemID": "8", + "ItemName": "气体流量", + "ItemAdress": "", + "Item_MQTT_Name": "v7", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": false, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "ArrayAnalysis", + "IsCalculate": false, + "otherItemAdress": "7", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "9", + "ItemName": "气体消耗", + "ItemAdress": "", + "Item_MQTT_Name": "v8", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "MaterialConsumption", + "IsCalculate": true, + "otherItemAdress": "8", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "13", + "ItemName": "设备状态", + "ItemAdress": "", + "Item_MQTT_Name": "v12", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "UploadMode": "PeriodicUpload", + "calculates": [ + { + "CalculationRule": "Cloos_Device_Status", + "IsCalculate": false, + "otherItemAdress": "51;52;22;20;24", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "14", + "ItemName": "控制器序列号", + "ItemAdress": "ns=2;s=GeneralInfo.SerialNumber", + "Item_MQTT_Name": "v13", + "ItemLength": "1", + "ItemType": "String", + "IsRead": true, + "UploadMode": "ChangeUpload" + }, + { + "ItemID": "19", + "ItemName": "实际焊接电压源数据", + "ItemAdress": "ns=2;s=DynamicWeldData.Voltage", + "Item_MQTT_Name": "", + "ItemLength": "1", + "ItemType": "String", + "IsRead": true + }, + { + "ItemID": "20", + "ItemName": "实际焊接电压", + "ItemAdress": "", + "Item_MQTT_Name": "v16", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": false, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "ArrayAnalysis", + "IsCalculate": false, + "otherItemAdress": "19", + "ConstantValue": "1" + } + + ] + }, + { + "ItemID": "21", + "ItemName": "实际焊接电流源数据", + "ItemAdress": "ns=2;s=DynamicWeldData.Current", + "Item_MQTT_Name": "", + "ItemLength": "1", + "ItemType": "String", + "IsRead": true + }, + { + "ItemID": "22", + "ItemName": "实际焊接电流", + "ItemAdress": "", + "Item_MQTT_Name": "v17", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": false, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "ArrayAnalysis", + "IsCalculate": false, + "otherItemAdress": "21", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "23", + "ItemName": "送丝速度源数据", + "ItemAdress": "ns=2;s=DynamicWeldData.WireSpeed", + "Item_MQTT_Name": "", + "ItemLength": "1", + "ItemType": "String", + "IsRead": true + }, + { + "ItemID": "50", + "ItemName": "送丝速度", + "ItemAdress": "", + "Item_MQTT_Name": "v18", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": false, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "ArrayAnalysis", + "IsCalculate": false, + "otherItemAdress": "23", + "ConstantValue": "1" + } + ] + }, + { + "ItemID": "24", + "ItemName": "故障代码", + "ItemAdress": "ns=2;s=RobotData.ErrorNumber", + "Item_MQTT_Name": "v19", + "ItemLength": "1", + "ItemType": "String", + "IsRead": true, + "UploadMode": "ChangeUpload" + }, + { + "ItemID": "28", + "ItemName": "工艺编号", + "ItemAdress": "ns=2;s=RobotData.ProgramName", + "Item_MQTT_Name": "v23", + "ItemLength": "1", + "ItemType": "String", + "IsRead": true, + "UploadMode": "ChangeUpload" + }, + { + "ItemID": "29", + "ItemName": "焊接规范阈值", + "ItemAdress": "", + "Item_MQTT_Name": "v24", + "ItemLength": "1", + "ItemType": "String", + "ItemValue": "0.2", + "IsRead": false, + "UploadMode": "ChangeUpload" + }, + { + "ItemID": "30", + "ItemName": "额定功率", + "ItemAdress": "", + "Item_MQTT_Name": "v25", + "ItemLength": "1", + "ItemType": "String", + "ItemValue": "6", + "IsRead": false, + "UploadMode": "ChangeUpload" + }, + { + "ItemID": "31", + "ItemName": "起弧标志", + "Item_MQTT_Name": "v26", + "ItemAdress": "ns=2;s=RobotData.ArcSwitchOn", + "ItemLength": "1", + "ItemType": "String", + "IsRead": true, + "UploadMode": "ChangeUpload" + }, + { + "ItemID": "32", + "ItemName": "设备在线时长", + "ItemAdress": "", + "Item_MQTT_Name": "v27", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "Cloos_Device_Status_Accumulation", + "IsCalculate": true, + "otherItemAdress": "13", + "ConstantValue": "1", + "AccumulationValue": [ + "2", + "3", + "4", + "5" + ] + } + ] + }, + { + "ItemID": "33", + "ItemName": "停机状态时长", + "ItemAdress": "", + "Item_MQTT_Name": "", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "Cloos_Device_Status_Accumulation", + "IsCalculate": true, + "otherItemAdress": "13", + "ConstantValue": "1", + "AccumulationValue": [ + "1" + ] + } + ] + }, + { + "ItemID": "34", + "ItemName": "待机状态时长", + "ItemAdress": "", + "Item_MQTT_Name": "v28", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "Cloos_Device_Status_Accumulation", + "IsCalculate": true, + "otherItemAdress": "13", + "ConstantValue": "1", + "AccumulationValue": [ + "2" + ] + } + ] + }, + { + "ItemID": "35", + "ItemName": "空载状态时长", + "ItemAdress": "", + "Item_MQTT_Name": "v29", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "Cloos_Device_Status_Accumulation", + "IsCalculate": true, + "otherItemAdress": "13", + "ConstantValue": "1", + "AccumulationValue": [ + "3" + ] + } + ] + }, + { + "ItemID": "36", + "ItemName": "报警状态时长", + "ItemAdress": "", + "Item_MQTT_Name": "v30", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "IsSave": true, + "UploadMode": "ChangeUpload", + "calculates": [ + { + "CalculationRule": "Cloos_Device_Status_Accumulation", + "IsCalculate": true, + "otherItemAdress": "13", + "ConstantValue": "1", + "AccumulationValue": [ + "5" + ] + } + ] + }, + { + "ItemID": "51", + "ItemName": "设备通电", + "ItemAdress": "", + "Item_MQTT_Name": "", + "ItemLength": "1", + "ItemType": "String", + "IsRead": false, + "UploadMode": "ChangeUpload" + }, + { + "ItemID": "52", + "ItemName": "程序执行模式", + "ItemAdress": "ns=2;s=RobotData.InterpreterActive", + "Item_MQTT_Name": "", + "ItemLength": "1", + "ItemType": "Bool", + "IsRead": true, + "UploadMode": "ChangeUpload" + } +] \ No newline at end of file diff --git a/SampleOPCUAClient/SampleOPCUAClient/Form1.Designer.cs b/SampleOPCUAClient/SampleOPCUAClient/Form1.Designer.cs new file mode 100644 index 0000000..b58774c --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/Form1.Designer.cs @@ -0,0 +1,162 @@ + +namespace SampleOPCUAClient +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + textBox1 = new System.Windows.Forms.TextBox(); + button1 = new System.Windows.Forms.Button(); + label1 = new System.Windows.Forms.Label(); + button2 = new System.Windows.Forms.Button(); + button3 = new System.Windows.Forms.Button(); + button4 = new System.Windows.Forms.Button(); + button5 = new System.Windows.Forms.Button(); + button6 = new System.Windows.Forms.Button(); + SuspendLayout(); + // + // textBox1 + // + textBox1.Location = new System.Drawing.Point(204, 78); + textBox1.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); + textBox1.Name = "textBox1"; + textBox1.Size = new System.Drawing.Size(740, 38); + textBox1.TabIndex = 0; + textBox1.Text = "opc.tcp://192.168.250.1:4840"; + // + // button1 + // + button1.Location = new System.Drawing.Point(990, 67); + button1.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); + button1.Name = "button1"; + button1.Size = new System.Drawing.Size(178, 64); + button1.TabIndex = 1; + button1.Text = "连接"; + button1.UseVisualStyleBackColor = true; + button1.Click += button1_Click; + // + // label1 + // + label1.AutoSize = true; + label1.Location = new System.Drawing.Point(74, 84); + label1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + label1.Name = "label1"; + label1.Size = new System.Drawing.Size(113, 31); + label1.TabIndex = 2; + label1.Text = "OPC地址"; + // + // button2 + // + button2.Location = new System.Drawing.Point(1228, 67); + button2.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); + button2.Name = "button2"; + button2.Size = new System.Drawing.Size(178, 64); + button2.TabIndex = 3; + button2.Text = "读取"; + button2.UseVisualStyleBackColor = true; + button2.Click += button2_Click; + // + // button3 + // + button3.Location = new System.Drawing.Point(1228, 233); + button3.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); + button3.Name = "button3"; + button3.Size = new System.Drawing.Size(178, 64); + button3.TabIndex = 4; + button3.Text = "订阅"; + button3.UseVisualStyleBackColor = true; + button3.Click += button3_Click; + // + // button4 + // + button4.Location = new System.Drawing.Point(990, 233); + button4.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); + button4.Name = "button4"; + button4.Size = new System.Drawing.Size(178, 64); + button4.TabIndex = 5; + button4.Text = "结构体"; + button4.UseVisualStyleBackColor = true; + button4.Click += button4_Click; + // + // button5 + // + button5.Location = new System.Drawing.Point(770, 233); + button5.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); + button5.Name = "button5"; + button5.Size = new System.Drawing.Size(178, 64); + button5.TabIndex = 6; + button5.Text = "读取"; + button5.UseVisualStyleBackColor = true; + button5.Click += button5_Click; + // + // button6 + // + button6.Location = new System.Drawing.Point(990, 356); + button6.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); + button6.Name = "button6"; + button6.Size = new System.Drawing.Size(178, 64); + button6.TabIndex = 7; + button6.Text = "结构体写入"; + button6.UseVisualStyleBackColor = true; + button6.Click += button6_Click; + // + // Form1 + // + AutoScaleDimensions = new System.Drawing.SizeF(14F, 31F); + AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + ClientSize = new System.Drawing.Size(1600, 821); + Controls.Add(button6); + Controls.Add(button5); + Controls.Add(button4); + Controls.Add(button3); + Controls.Add(button2); + Controls.Add(label1); + Controls.Add(button1); + Controls.Add(textBox1); + Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); + Name = "Form1"; + Text = "Form1"; + FormClosing += Form1_FormClosing; + Load += Form1_Load; + ResumeLayout(false); + PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.Button button4; + private System.Windows.Forms.Button button5; + private System.Windows.Forms.Button button6; + } +} + diff --git a/SampleOPCUAClient/SampleOPCUAClient/Form1.cs b/SampleOPCUAClient/SampleOPCUAClient/Form1.cs new file mode 100644 index 0000000..fa4094e --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/Form1.cs @@ -0,0 +1,247 @@ +using Opc.Ua; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Treasure.DataModel; +using Treasure.通讯协议; + +namespace SampleOPCUAClient +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + List itemBases = new List(); + + private void button1_Click(object sender, EventArgs e) + { + //连接OPC + pro_OPCUAp = new Pro_OPCUA(textBox1.Text); + isRunning = true; + MessageBox.Show("连接完成"); + } + Pro_OPCUA pro_OPCUAp; + private void Form1_Load(object sender, EventArgs e) + { + itemBases = SystemConfigLoad>("48.json"); + } + + /// + /// 配置读取 + /// + /// + /// + public static T SystemConfigLoad(string filename = "System.json") + { + try + { + using (var sr = new System.IO.StreamReader(System.IO.Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, filename))) + { + return Newtonsoft.Json.JsonConvert.DeserializeObject(sr.ReadToEnd()); + } + } + catch (Exception ex) + { + return default(T); + } + } + bool isRunning = false; + private void button2_Click(object sender, EventArgs e) + { + if (pro_OPCUAp==null) + { + MessageBox.Show("请先建立连接"); + return; + } + //启动采集 + Task.Factory.StartNew(() => + { + try + { + //当设备启用时,进行数据采集 + while (isRunning) + { + try + { + pro_OPCUAp.ReadItems(itemBases); + + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + continue; + } + } + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + } + }); + } + /// + /// 订阅 + /// + /// + /// + private void button3_Click(object sender, EventArgs e) + { + //启动采集 + Task.Factory.StartNew(() => + { + try + { + //当设备启用时,进行数据采集 + try + { + pro_OPCUAp.subscription(itemBases); + + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + } + + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + } + }); + } + /// + /// 结构体 + /// + /// + /// + private void button4_Click(object sender, EventArgs e) + { + //启动采集 + Task.Factory.StartNew(() => + { + List items = new List() { "ns=4;s=StationStatus1"}; + while (isRunning) + { + for (int i = 0; i < items.Count; i++) + { + try + { + pro_OPCUAp.structItem(items[i]); + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + continue; + } + } + System.Threading.Thread.Sleep(2000); + } + }); + } + + private void Form1_FormClosing(object sender, FormClosingEventArgs e) + { + isRunning = false; + } + + private void button5_Click(object sender, EventArgs e) + { + if (pro_OPCUAp == null) + { + MessageBox.Show("请先建立连接"); + return; + } + //启动采集 + Task.Factory.StartNew(() => + { + try + { + //当设备启用时,进行数据采集 + while (isRunning) + { + try + { + pro_OPCUAp.readAndWrite(); + System.Threading.Thread.Sleep(2000); + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + System.Threading.Thread.Sleep(2000); + continue; + } + } + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + } + }); + } + + private void button6_Click(object sender, EventArgs e) + { + ExtensionObject[] AA = new ExtensionObject[3]; + WriteVar structs = new WriteVar + { + index = 0, + Name = "AA", + DataType = 0, + StringValue = "", + IntValue = 25, + FloatValue = 0.0F + }; + var result = pro_OPCUAp.GetValueByteFromObj(structs); + AA[0] = result; + + WriteVar structs1 = new WriteVar + { + index = 0, + Name = "BBB", + DataType = 1, + StringValue = "", + IntValue = 0, + FloatValue = 1.22F + }; + var result1 = pro_OPCUAp.GetValueByteFromObj(structs1); + AA[1] = result1; + + + WriteVar structs2 = new WriteVar + { + index = 0, + Name = "C", + DataType = 2, + StringValue = "WUXE", + IntValue = 0, + FloatValue = 0.0F + }; + var result2= pro_OPCUAp.GetValueByteFromObj(structs2); + AA[2] = result2; + //byte[] re = new byte[23] { 3,0,0,0,56,56,56,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0}; + for (int i = 0; i < AA.Length; i++) + { + AA[i] = new ExtensionObject { Body = getNewByte() }; + } + pro_OPCUAp.WriteVarStruct(AA); + } + + public byte[] getNewByte() + { + byte[] item = new byte[20]; + for (int i = 0; i < item.Length; i++) + { + item[i] = 0; + } + return item; + } + } +} diff --git a/SampleOPCUAClient/SampleOPCUAClient/Form1.resx b/SampleOPCUAClient/SampleOPCUAClient/Form1.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SampleOPCUAClient/SampleOPCUAClient/ItemBase.cs b/SampleOPCUAClient/SampleOPCUAClient/ItemBase.cs new file mode 100644 index 0000000..4117288 --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/ItemBase.cs @@ -0,0 +1,247 @@ +//****************************************************************************************************** +// +//文件名(FileName): ItemBase.cs +// +//功能描述(Description): 数据项模型 +// +//数据表(Tables): Nothing +// +//作者(Author): wudehang +// +//日期(Create Date): 2021-03-09 +// +//CLR版本(CLR Version): net Core 5.0 +// +//版本(Version): 1.0.0 +// +//公司(Company): 南京埃斯顿自动化股份有限公司 +// +//备注: 数据项定义分为两种,一种为从设备上读取的源数据,另一种为需要根据源数据计算的数据,源数据只从设备中读取,不进行边缘计算。 +//****************************************************************************************************** +using System; +using System.Collections.Generic; + +namespace Treasure.DataModel +{ + /// + /// 数据项模型 + /// + public class ItemBase + { + private string m_lastItemValue; + private string m_ItemValue="0"; + + /// + /// 数据项唯一标识 + /// + public string ItemID { get; set; } + /// + /// 数据项名称 + /// + public string ItemName { get; set; } + /// + /// 数据项名称 + /// + public string Item_MQTT_Name { get; set; } + + /// + /// 数据项地址 + /// + public string ItemAdress { get; set; } + + /// + /// 数据长度 + /// + public short ItemLength { get; set; } + + /// + /// 数据项类型 + /// + public DataType? ItemType { get; set; } + /// + /// 上传模式 + /// + public UploadMode UploadMode { get; set; } = UploadMode.PeriodicUpload; + /// + /// 是否从设备中读取 + /// + public bool IsRead { get; set; } + + /// + /// 数据项是否断电保持 + /// + public bool IsSave { get; set; } + + /// + /// 上次更新数据时间 + /// + public DateTime? LastUpDateTime { get; set; } + + /// + /// 当前更新数据时间 + /// + public DateTime? UpDateTime { get; set; } + + /// + /// 上次读取数据值 + /// + public string lastItemValue + { + get + { + return m_lastItemValue; + } + set + { + if (value == "") + m_lastItemValue = "0"; + else + m_lastItemValue = value; + } + } + /// + /// 计算后数据值 + /// + public string ItemValue + { + get + { + if(m_ItemValue==""|| m_ItemValue == null) + { + return "0"; + } + return m_ItemValue; + } + set + { + if (value == "") + m_ItemValue = "0"; + else + m_ItemValue = value; + } + } +#nullable enable + /// + /// 顺序计算规则组 + /// + public List? calculates = new List(); + } + /// + /// 数据计算规则配置项 + /// + public class Calculate + { + private string? m_ConstantValue; + /// + /// 计算规则索引 + /// + public int CalculateIndex { get; set; } + /// + /// 计算规则配置 + /// + public string? CalculationRule { get; set; } + + /// + /// 本数据项是否在计算中被用到 + /// + public bool IsCalculate { get; set; } + + /// + /// 计算所需另一数据地址 + /// + public string? otherItemAdress { get; set; } + + /// + /// 计算所需的常数值 + /// + public string? ConstantValue + { + get + { + return m_ConstantValue; + } + set + { + if (value == "") + m_ConstantValue = "0"; + else + m_ConstantValue = value; + } + } +#nullable enable + /// + /// 累计计算数据的标志值集合 + /// + public List? AccumulationValue { get; set; } = new List(); + /// + /// 数据映射集合 + /// + public List? m_dataMapp { get; set; } + } + /// + /// 数据映射项 + /// + public class DataMapp + { + /// + /// 数据地址或数据值索引 + /// + public dynamic? Index { get; set; } = null; + /// + /// 数据映射信息 + /// + public string Msg { get; set; } = ""; + } + /// + /// 数据项类型 + /// + public enum DataType + { + /// + /// 布尔值 + /// + Bool, + /// + /// 字节型 + /// + Byte, + /// + /// 短整型 + /// + Short, + /// + /// 整型 + /// + Int, + /// + /// 单精度浮点数 + /// + Float, + /// + /// 双精度浮点数 + /// + Double, + /// + /// 字符串类型 + /// + String, + /// + /// 结构体类型 + /// + Struct + } + /// + /// 数据项上行模式 + /// + public enum UploadMode + { + /// + /// 周期上传 + /// + PeriodicUpload, + /// + /// 变化上传 + /// + ChangeUpload + } +} diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC_UA_ConnectServer.cs b/SampleOPCUAClient/SampleOPCUAClient/OPC_UA_ConnectServer.cs new file mode 100644 index 0000000..f316eaf --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/OPC_UA_ConnectServer.cs @@ -0,0 +1,499 @@ +//****************************************************************************************************** +// +//ļFileName Pro_OPCUA.cs +// +//Description OPCUAͨѶЭ⣬OPCUA Client Server +// +//ݱTables Nothing +// +//ߣAuthor wudehang +// +//ڣCreate Date 2021-03-09 +// +//CLR汾CLR Version net Core 5.0 +// +//汾Version 1.0.0 +// +//˾Company Ͼ˹Զɷ޹˾ +// +//****************************************************************************************************** +using Opc.Ua; +using Opc.Ua.Client; +using Opc.Ua.Configuration; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Treasure.ͨѶЭ +{ + /// + /// A tool bar used to connect to a server. + /// + public partial class Pro_OPCUA + { + #region Constructors + /// + /// Initializes the object. + /// + public Pro_OPCUA() + { + m_endpoints = new Dictionary(); + } + #endregion + + #region Private Fields + private ApplicationConfiguration m_configuration; + private Session m_session; + private SessionReconnectHandler m_reconnectHandler; + private EventHandler m_ReconnectComplete; + private EventHandler m_ReconnectStarting; + private EventHandler m_KeepAliveComplete; + private EventHandler m_ConnectComplete; + private Dictionary m_endpoints; + #endregion + + #region Public Members + /// + /// Default session values. + /// + public static readonly uint DefaultSessionTimeout = 60000; + /// + /// ĬϷֳʱ + /// + public static readonly int DefaultDiscoverTimeout = 15000; + /// + /// Ĭʱ + /// + public static readonly int DefaultReconnectPeriod = 1000; + + /// + /// The name of the session to create. + /// + public string SessionName { get; set; } + + /// + /// Gets or sets a flag indicating that the domain checks should be ignored when connecting. + /// + public bool DisableDomainCheck { get; set; } + + /// + /// Gets the cached EndpointDescription for a Url. + /// + public EndpointDescription GetEndpointDescription(Uri url) + { + EndpointDescription endpointDescription; + if (m_endpoints.TryGetValue(url, out endpointDescription)) + { + return endpointDescription; + } + return null; + } + + /// + /// The URL displayed in the control. + /// + public string ServerUrl + { + get; + set; + } + + /// + /// Whether to use security when connecting. + /// + public bool UseSecurity + { + get; + set; + } + /// + /// Get the Client status. + /// + public string ConnectStatus + { + get { return m_ConnectStatus; } + } + private string m_ConnectStatus; + /// + /// The locales to use when creating the session. + /// + public string[] PreferredLocales { get; set; } + + /// + /// The user identity to use when creating the session. + /// + public IUserIdentity UserIdentity { get; set; } = new UserIdentity(); + + /// + /// The client application configuration. + /// + public ApplicationConfiguration Configuration + { + get => m_configuration; + + set + { + if (!Object.ReferenceEquals(m_configuration, value)) + { + m_configuration = value; + } + } + } + + /// + /// The currently active session. + /// + public Session Session => m_session; + + /// + /// The number of seconds between reconnect attempts (0 means reconnect is disabled). + /// + public int ReconnectPeriod { get; set; } = DefaultReconnectPeriod; + + /// + /// The discover timeout. + /// + public int DiscoverTimeout { get; set; } = DefaultDiscoverTimeout; + + /// + /// The session timeout. + /// + public uint SessionTimeout { get; set; } = DefaultSessionTimeout; + + /// + /// Raised when a good keep alive from the server arrives. + /// + public event EventHandler KeepAliveComplete + { + add { m_KeepAliveComplete += value; } + remove { m_KeepAliveComplete -= value; } + } + + /// + /// Raised when a reconnect operation starts. + /// + public event EventHandler ReconnectStarting + { + add { m_ReconnectStarting += value; } + remove { m_ReconnectStarting -= value; } + } + + /// + /// Raised when a reconnect operation completes. + /// + public event EventHandler ReconnectComplete + { + add { m_ReconnectComplete += value; } + remove { m_ReconnectComplete -= value; } + } + + /// + /// Raised after successfully connecting to or disconnecing from a server. + /// + public event EventHandler ConnectComplete + { + add { m_ConnectComplete += value; } + remove { m_ConnectComplete -= value; } + } + + /// + /// Creates a new session. + /// + /// The new session object. + private async Task Connect( + ITransportWaitingConnection connection, + EndpointDescription endpointDescription, + bool useSecurity, + uint sessionTimeout = 0) + { + // disconnect from existing session. + InternalDisconnect(); + // select the best endpoint. + if (endpointDescription == null) + { + endpointDescription = CoreClientUtils.SelectEndpoint(m_configuration, connection, useSecurity, DiscoverTimeout); + } + + EndpointConfiguration endpointConfiguration = EndpointConfiguration.Create(m_configuration); + ConfiguredEndpoint endpoint = new ConfiguredEndpoint(null, endpointDescription, endpointConfiguration); + + m_session = await Session.Create( + m_configuration, + connection, + endpoint, + false, + !DisableDomainCheck, + (String.IsNullOrEmpty(SessionName)) ? m_configuration.ApplicationName : SessionName, + sessionTimeout == 0 ? DefaultSessionTimeout : sessionTimeout, + UserIdentity, + PreferredLocales); + // set up keep alive callback. + m_session.KeepAlive += new KeepAliveEventHandler(Session_KeepAlive); + + // return the new session. + return m_session; + } + + /// + /// Creates a new session. + /// + /// The new session object. + private async Task ConnectServer( + string serverUrl, + bool useSecurity, + uint sessionTimeout = 0) + { + try + { + // disconnect from existing session. + InternalDisconnect(); + // select the best endpoint. + Console.WriteLine("ȡԶ̽ڵ1"); + var endpointDescription = CoreClientUtils.SelectEndpoint(serverUrl, useSecurity, 600000); + var endpointConfiguration = EndpointConfiguration.Create(m_configuration); + var endpoint = new ConfiguredEndpoint(null, endpointDescription, endpointConfiguration); + // Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(endpoint)); + Console.WriteLine("ʼ"); + m_session = await Session.Create( + m_configuration, + endpoint, + false, + !DisableDomainCheck, + (String.IsNullOrEmpty(SessionName)) ? m_configuration.ApplicationName : SessionName, + sessionTimeout == 0 ? DefaultSessionTimeout : sessionTimeout, + UserIdentity, + PreferredLocales); + // set up keep alive callback. + m_session.KeepAlive += new KeepAliveEventHandler(Session_KeepAlive); + Console.WriteLine(""); + Console.WriteLine(m_session.Connected); + isCconnect = true; + } + catch (Exception ex) + { + if (m_session!=null) + { + m_session.KeepAlive += new KeepAliveEventHandler(Session_KeepAlive); + } + else + { + isCconnect = false; + } + } + + try + { + UpdateStatus(false, DateTime.Now, "Connected, loading complex type system."); + } + catch (Exception e) + { + UpdateStatus(true, DateTime.Now, "Connected, failed to load complex type system."); + Utils.Trace(e, "Failed to load complex type system."); + } + + // return the new session. + return m_session; + } + + /// + /// Creates a new session. + /// + /// The URL of a server endpoint. + /// Whether to use security. + /// Ựʱʱ. + /// The new session object. + public async Task ConnectServerAsync( + string serverUrl = null, + bool useSecurity = false, + uint sessionTimeout = 0 + ) + { + return await Task.Run(() => ConnectServer(serverUrl, useSecurity, sessionTimeout)); + } + + /// + /// Create a new reverse connection. + /// + /// + /// + /// + /// + public async Task ConnectServerAsync( + ITransportWaitingConnection connection, + bool useSecurity, + int discoverTimeout = -1, + uint sessionTimeout = 0 + ) + { + if (connection.EndpointUrl == null) + { + throw new ArgumentException("Endpoint URL is not valid."); + } + + EndpointDescription endpointDescription = null; + + if (!m_endpoints.TryGetValue(connection.EndpointUrl, out endpointDescription)) + { + // Discovery uses the reverse connection and closes it + // return and wait for next reverse hello + endpointDescription = CoreClientUtils.SelectEndpoint(m_configuration, connection, useSecurity, discoverTimeout); + m_endpoints[connection.EndpointUrl] = endpointDescription; + return null; + } + + return await Connect(connection, endpointDescription, useSecurity, sessionTimeout); + } + + /// + /// Disconnects from the server. + /// + public Task DisconnectAsync() + { + UpdateStatus(false, DateTime.Now, "Disconnected"); + return Task.Run(() => InternalDisconnect()); + } + + /// + /// Disconnects from the server. + /// + private void InternalDisconnect() + { + // stop any reconnect operation. + if (m_reconnectHandler != null) + { + m_reconnectHandler.Dispose(); + m_reconnectHandler = null; + } + + // disconnect any existing session. + if (m_session != null) + { + m_session.KeepAlive -= Session_KeepAlive; + m_session.Close(10000); + m_session = null; + } + } + + /// + /// Disconnects from the server. + /// + public void Disconnect() + { + UpdateStatus(false, DateTime.Now, "Disconnected"); + + // stop any reconnect operation. + InternalDisconnect(); + } + + /// + /// Prompts the user to choose a server on another host. + /// + public void Discover(string hostName) + { + //޸ģӷֹ + // string endpointUrl = new DiscoverServerDlg().ShowDialog(m_configuration, hostName); + + //if (endpointUrl != null) + //{ + // ServerUrl = endpointUrl; + //} + } + #endregion + + #region Event Handlers + /// + /// Updates the status control. + /// + /// Whether the status represents an error. + /// The time associated with the status. + /// The status message. + /// Arguments used to format the status message. + private void UpdateStatus(bool error, DateTime time, string status, params object[] args) + { + m_ConnectStatus= String.Format(status, args); + } + + /// + /// Handles a keep alive event from a session. + /// + private void Session_KeepAlive(Session session, KeepAliveEventArgs e) + { + try + { + // check for events from discarded sessions. + if (!Object.ReferenceEquals(session, m_session)) + { + return; + } + + // start reconnect sequence on communication error. + if (Opc.Ua.ServiceResult.IsBad(e.Status)) + { + if (ReconnectPeriod <= 0) + { + UpdateStatus(true, e.CurrentTime, "Communication Error ({0})", e.Status); + return; + } + + UpdateStatus(true, e.CurrentTime, "Reconnecting in {0}s", ReconnectPeriod); + + if (m_reconnectHandler == null) + { + if (m_ReconnectStarting != null) + { + m_ReconnectStarting(this, e); + } + + m_reconnectHandler = new SessionReconnectHandler(); + m_reconnectHandler.BeginReconnect(m_session, ReconnectPeriod * 1000, Server_ReconnectComplete); + } + + return; + } + + // update status. + UpdateStatus(false, e.CurrentTime, "Connected [{0}]", session.Endpoint.EndpointUrl); + + // raise any additional notifications. + if (m_KeepAliveComplete != null) + { + m_KeepAliveComplete(this, e); + } + } + catch (Exception exception) + { + throw new Exception("Session_KeepAlive", exception); + } + } + /// + /// Handles a reconnect event complete from the reconnect handler. + /// + private void Server_ReconnectComplete(object sender, EventArgs e) + { + try + { + // ignore callbacks from discarded objects. + if (!Object.ReferenceEquals(sender, m_reconnectHandler)) + { + return; + } + + m_session = m_reconnectHandler.Session; + m_reconnectHandler.Dispose(); + m_reconnectHandler = null; + + // raise any additional notifications. + if (m_ReconnectComplete != null) + { + m_ReconnectComplete(this, e); + } + } + catch (Exception exception) + { + throw new Exception("Server_ReconnectComplete", exception); + } + } + #endregion + } +} diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Bindings.Https.dll b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Bindings.Https.dll new file mode 100644 index 0000000000000000000000000000000000000000..429b7806778cbdeb10f9dae12c3e6b447c3a09be GIT binary patch literal 29184 zcmeHv33yz^mF~H>Z{J=dwbb2Oti^U4FEo-YTb6AkV;jqo48kjxZ6L7`ZK-WHmio%Q z*a#sanI&<63hQ%Q+`o~?RI z7tsdIMK3=5h3`16y+~(7inPT<`#|w3>W=Gijo^I`-b7_m)|K5%VEg6uA|UAea?xei zu_*uNuQtjgymaW@%!PZ1F3Txlg8lj;Q89{txRz*}L;HKKk(}uw?FD{*LA|C-{E7_l zoqGVllfK$^1Cv(-CN-tfsXkz0+dU|lcwdfp!D|hMt0@&9upr2`(iib&T|;;myw(t{ zEkLEX9R24P+oqG7hE@|@yN*Z`>i<62F^4Yw&I3RA-Lu}RbPbVz%#X3DC#qd+(o6&z z^aknbT5$Y^Y1QExb_d;!UP^&8p!q30!GkdA?Ez4YACF+=A&47S_}JvzDAQ; z_w+FuIvx`8*3=&oiBnZ=o}J@Ec6%MM$HBk zQm8Ui8*N09D-{Kc8jHaT8rDJ)^FXc%C2J9*KoI!K%xE)8;o@L%+fzIo<>3+vnAQ>| zmNhI0l|@^)7^Gm(T8dJ&vMLk|HM*$53ZY@?d$}I7bH<9&07b ztzxd*Lj3rxa{(I50^Y{rfY(|Br1G@hpjCz|f)$M$DBTW9xUw=_)i8^Kl>u+C%0giJ zm7Wfiptq{(;&4^4%C3Lf2+s)4Sa^6!GLuE6V@w23Oa|Z4UFg(V$}?n21~iO)xqk9R_uD?%{RT_+6D^N z*2AY7@|8}VTFW5~;ZJmi9_``!^)(W`_2I=D6@iYR4O03H80v2zvpy%5mki9FU%x~j z31ALd$X@;&vfW0Y->`Nt;x8AyoIlX@An79|;ECb|q`O8Lt8YTdh+?9dRKFHw>mpQj z2$coh5pbU=|c^a$9wB8AQ(ZY*$nhCC3`GS?gZokP(17(R~C6i_nSy47}+4D{5lP# z)&Zm~sJRl#tsyqf9Dz^Skr>t`q%i9MI97^58lc2iUg(|-NLl0|Eo_`@rIQU|H>I{g zanL>Oz?z^-59lPBc0Eihqn_s!W)fX6Kn-mFEJ|mg`by`TqST#G>&#hw1QWryPen_; zBlN$zqJ{8cgQ{@#O5C{0%cGU(yN>UifdTl+P4w7js>oN8v(KP-ESlC9@cPVdV%*c?}kad^o>ltX%f}8`hCp% zhdj@)Zf43YOv&fdT8vjO1`9!syk7;gm<(W2Y5v`SyY9;q0JZa`EI)~%bPWgx#mGk{qRmjqIW>7D5RaPya;`hz#lDVC9cs5 zz8Kaq2#jLN7>0ExiheulF?rAuL(?jZbww$Ra78JMYegxHW~NMtW+q59n^s{A7my1h zw}4z2uLb17D9w=#>n`-j3D6vQLV)I|hV@S@Y{w>(4eM^ENNnov(HS7YUmpN%w3f@! zvt`JzSVvpc;DwQ+&%ziWs|58C9xOjrAy@Q+sFT@(0Vvk5Vyf2@)v+}CO;5{Dc&y*5 z-o1ZkJ!C7i$1zgSo(t(ph>8(8 z*8N~PX zh*dhshx3R&!ee56Bu|Na5qa5qhza_LXgh6oqJi{BL5hA1V1c4XKhA`Q3kU|BwLn+g zs+;y;;O18<`(*}|M?V4K`=Xx&l=)ZBG0^D5fKKP4e`q|IUMKyF9%n%WhJmgklNhFJ z6vJ+q6{F~}VP3_o5Jiz#8Wa-!7u2Z7K1ZiCbYUsQ{!m4knv^a(EDZ@obdYDT^$2SD zaic=fM^P#wkM${B)#_i0{Y=4q0}-S?4X)g%(CJEKG3Q3biEMjcd=|CrC_8I6H#deGPwuUdRQHXHgR`KO3W}zul`o>7~anz_!VPETxeilU}_<%852aXsgyVx{)ugQMAfUT)>yBn1v?1(gY)_iJZk@>`~zXLbky0z~?WlM68`QVWye>0?70Iqf9rgC)hjns|nlJ1>C?FfiEaDycTomW>|ok zh5661|`hVoVoT%NZGPD8I8ZNi1jE;keLhJWPz0^>;tAlyl{K7~u` zhp~RNo&$;224sWQLl``S7)S01XF=I@wtX2yP&tsTCt+FT<>@csVu8*xE=NyYiB;Hw z-U-ymAJK;Ol}S`NrwF-DS6~n{U-YZ2?`r_XAwBwaTo-ogm2eODRQHaa!I9={K85R6idIsO??wU?gFCEpv31SZ7|{g zrk6KQ*UQw+@W?d144WZSb#t9w<#aP>PU@$b>*pO97uCyQ4iUX^)BY^jq9N zPskJfHVTQ+MeIo#-~yp2TxVL}VM%Yu8$E%-!gczLoMGP4l@kWQ3&Z>}0B<6|^bzKU zz4}#rJzatLs?Cjn4t?K+zR_i@K_B7E=wdFHE7Axf?@Q<-Y?(S{!O7A8o6-3BTa1Q3 z9~r~xP!Jgwiz=y~uv8!vh`xxz=yKTAuv^!!;zINk zlh73`?IV0iZDGAX=5Vl;HZYA(pqIoc+YBYd%biB{ws zNSR(1ENd)fcQA95RW?+xU5wf)KFxN0!m*3BPF!E5q0<#Xo)QIl)h^2Ze1sJ%|6q^x zG8C#DK0%zby7epOwXn24BA3Y#wTA_kin@BP@FZ}3gbD9UyhY9~9BWRBQ`0xH@znHf z{W_-_`z6(ag*a15JRA%Koe5Qwn^3_?6DpXSP>=DTNg59ar=L(kHKEx1cJkn908E@$ zuDnt%eLoovhxA}*bRi2=$wGJ%+Id0bBiX7ZcdNne=_4$Wf$iGp3X~wjmsFAi69Ns< z|3H60EpR0Z$X%wzk^2@deT!xA570Sf8B}eG%ITJg@=&?*V~1Xw^JDoWKbAXwJejeb zSU$ZI%kxg;jx?}0*#{@*ge&yfr`2L>?;vEQ4OT>7VIQ2Vot7Q_Ei>!e`{7Ll$q^*G zG_HTcwF*~$G5uVm%k8)x#nquR4}PUTVY!-vwKFVv_v=nciVqj(i2jkbeEidKnn=3T1w8W`!{F?VgAyAi|7sP%g=^bxLS z{Q<>^Tagagif}{NigfU$L|40AJ>-fO$wGK54An=NiJb^v3U(q~)7gpGjr=DXDLT0U z=?v=vThLf+TY`LwPY@J??O}%4r5M-*VWh+sF(GI~|HL&;$_VD^p6H*M%s$o-t2(vO z^-oYWP?T%w^Uta>d;3?fQ4RZkvXA*34dVqLcft*6T3K`U?QgDx!bIb)j-Ex1oDRaj#+MaA6m&Aq`$beQfkXXjdO$W|4jsUrtw` zFKU}1HKFWpP&RrV*UuZKk1#<_iV^ISm~uXAy@6^A=;XE%-8XtZgw@%uKEmZ`Pn2x+ zbEGAa8ia~Mcc`OjoIFhs&3kJ$+cZ<^3z1c+Q{j^{N_c#wOX35cJp;=plI^KS?HD+I z!S(bby#F2VZFuu|;v#ctFG@+gXV~<~<9xT`VVp039T;c6t*C19H27PeM3vTh@X?bE zY@}=-PNTc2XE{wigHn;Fjl~=ZlqcUHNKK|s$c#B^sL1j z>rn{t4MK^;%~N6+a}iT~DVUaA)tQ#mFi6oe5!-e@vBaB_1j6o++eyK^Q0 zod!?t&_}qLuzULE+;$2+S%Zx{23pj~9cIuh9O*pW8EK;SI(GBKF|7fv<}T6No(tA$ zYS`so@8Hs=#Z4`XTbj`sK4lyL{0)-k+^dN$#>9RA5jeLelS(A_a@wZ9LDA0*(6;x` zi>SjfHTS&j-3Uf{75LF&;A;nXPRL6~j9oPQQ$;>M(7$LcoRBe+bSK`}@DTh!7vhcd z%V$7@u)#DTT8uZxBFjPtf3`yyEm;G6xK`uMJTCK_c|_3w(^z`k|GjdPUJ-b<@3!(% zGAfwtB(du3YkX(ewsV8sM1gSHHOE-59)sUjk^dk{o2zg`$J5b?|D!+>Bpd$bbra8 zAvw2O5a^6Dcq{dA7VEEM`-v}Mx2!Y3w;`dI!BjDkt;GP%56 zWB5df;kSf-(97KQCZ_IO(X-%-~JJhYIig3>FVyo6^Y~i@{ZWz4| zAvBEQ5Zzd76#JxyeM_Nqw>#m=jx*SCeZ?>nFqBVNRCwv6C2Y8=I$(kgCi7RJR-uNmy& zAsMMkPa|5?WPD$j5nNo(l3Ro9r6*;4zv*F5-WPZTJw08@@NAu1d54V7P#u@gL)lMl z5?A-RS;Il`^F`Gy)#yG%GpN7HD8_u5c`N+22>QE#j$<@=e!iEdH0Ccp@5Kj$_aJ9&6l@&%tpX2^a?m`%;vwb*=}f_%3NseMw!npYbCCkypgLMfF0_Yz z2-=&4^Ek#nAXtQOur{ZRz5>fO(p*|2yv@R!PaT3?BD^TA6O6OYM(F4kY`2TCPTC;Y zM!_z?lTAHipDeut@Ld9L75IHOQyv$%qm0YG~56@3iwhptZo-VSXVon6AUo}TeIpprjY z@&w9d;imvUQ~NaF_iMi8!R)R59^iXD&jQ|6`2ygrQogn36v`bnF9BY!{mQeP4(YFW zDzTRQP9#4J_^}y(0{j;J4e%!KZGf}Frq`rBbwz-8RkCf5P?=YwC$tJcm(IN?7g(>) z0A;oQJy0&t>rlR2j{uGcT_fh+PV*UR+@rs0^(gyAa*p1D@-L|s@T=M?wB@wE4&}kn z=3MJf(l*FEq+Mdm=Ox+ByDBdQ{S-Y58$P8eox2OP753#7$Z(5WA{ctQWyYcM0n}Bm zua+3*tFY0=+`Zl*@b*O*e@VNoHVf>5xr|*q;{fKij~*86B_G%G(IX1edc7a;`sf>i zU2jW%-{yS^-u2Os6wj;bom4#E&WZ<6@256qhQ6oy=(jeuvg}!4f3vY!bti%O=80v# zzXd*udc`*Oo!U>Mg?Tpii&_m>lftyaMW6KgX+;iu+*?c=Y^t$E%Zq(9qOMd=AI5(4&A?4^>@=e_0RwK2U0Yc0(e?3DIQbv>|! zHt&t<6W&T%W@E2bKkuDEt8DB+&k1ieb=lZId7k&y(iR<^KLDjxvIcQ*GrZy)&uy zEN)%-dN$1yY@FisYwv8jN3gGoujkT76h=I@bLokKdUNUPg5B=@$M9dl`?ife5GLPT z`jL{PVvosgug|wPpL`RruwXA~Jks+iBG^;FKINKEI}}giWdU7gOV*T@_!iKK2G;qK zc>XNmD5~+DMdgjc^ZgoFJ#DbDe{s$6HPE#-_HAH|^q9i5aB!h-A^l0P>%H9p zUBj{KLa~~@g;7~VKd`YDtRIW$MH~CMzRb6X8k>|Y8@;Q1i|KQMjnlcV3w$l)fgr9V_#atLaX`l;pYefX!pcb7^38UXu648sUQ-tcQ1F)9a$^ z%W&&JH()pGraxc{ZBi6v5B(T2Ug|Do`Gz8f`>~PStYxc5Inl^l_|d z8ge{CrsxwWTx&Y|R7uu3vBhmT$n+q>{Sj$BuP2L&szm#EN!c>Cx;xrUtx=lNk+O9aLQCIlW3I1E@p<5E5%c6y0;0w4xsBkb zCY_~o6rH7W?6wQ#LcnwJWZ;4F&D89=d*&V3F&(YDpBm}WnorY(u79ciEa)Gv{t{Mp z(I7gTu@-#?+^@Tz#T>XH@KeaVSo}+B1GfxtPVuXtv=o0D@T}@TfKp$~^ebzb{%!Mh zl&`5}%CC!cZ7F@i<<;7>Q*P#3GXq*D^_ACY8|c!SMVe3hwy_lDinq}bnVbto@@73J!)zcWSEjqXO zPW^<7*M;X?v)x(UhcUfCd)c+VdQ5-a#Ut{X>k0FEJtKNvrbVIK^w+h^gZBak4eT2X zj-uDKJG?72O~1V6Gy2P}*Yz*xS5X!GA2fpQ@9Nc%F=>vBZ?ndGfdgWHvvz3_mxqcp zYSvn%yk5$+Ces(0Oz)8LE|iZ*tpi$f-LLd!?QulN5$%~`mRT+39Vj2sl!l~G4ug`= z9;|##KcaoQ@=y9%V#yKhX*{=_(7s&fb{)~aU038vXkm=P0j;q-)0Y~ZuH*V=W?TTsqjOy6R*vhe^SI91j_a>_{-U)T zhs>R>Zez&3&(&@;7wvS7>tpVFU3E0({;2B`vFACNP0#5+DgBh|IsH-Nvw$XAe@?Hc z`jYEf@%#bf4<+Aq4IA&A`7DhaPt^R(b;Q^m`VZLiMD3SA`Bu%}Ty1)pjSOz+Kn<7j$*H|&NzxyHw5^>lI_Op@NKVgi}7&XyNx;8ONjP= zl6GIyXP4e)95W)-4;l%5pXZmx1E71gdyS72|IxVDc)~2BdyV(uLyd=wSM)cHm+9Zb zMeYOoJY$8{rvJqiM0pX`_Jsc1ntARM`X{g}ZFY@do}SQeFRph#K*dFiw2!0KIqpY@ zYdu1X?8v#q{g`$jwAX!Hy!4oMO=uA1#{(JnW5(LRmF`on8(ib=r;Uc%ce|f7MrPg! z{p+ibx<5zvSKsgMr&U$=(+T5-z{76M)mQ$A+vmEphFgEJ_;Gi$>&c=g0PhOCiaSz{ z^W(;M15ZJQbHxej2K|_RY3(=M$Mg-g&%5t6Zm9dY`-Jw2{wp`nn%}$I^nb=IXw%!! zyK2l7lTPR?GY91&bB@ajuzZmV=QqTDsCFgmy0oLjwT@C-jaM7imbqHYr=;)Sl)isc z`mX7B8-3;pz0Y_RYk)zwn*po`4+0j`g*3vft=h6=V8|W8+E%XN9IaKa%!ky@P!1dG%*h7~CzLV|*?4!>C z?x&N0X?h)SgjN-GV7C)5?w}j!{Gtx+F2Fv4*9g2{;FksdOyC@yW#;JLpq<6-Qf`-W zOv*7SUuLk(ivr2b<%r2}jljzUjtPu-?x&4K5zoiKy$t2|0&@99l)nMUX+iNC zFPF*pWtJ59MS&4NQ!b)sw4ZCg)OPE8^pEJL^lI0cu5(;lTqCaIE{`$KXfyU1DdQ^R zxbcSj3^QSRv62(+h}&`bp(}v(Tf^w^w`+Jc$CKRfw^vR-y=KOTT~h(Ptl|n#{GqD> z*OXlYxW4WPAeH_D;LEkQ0V?_LhL7dSy8<8Zd9l9h7;}7%Eq^Yw(Sml%u&Q$FCfe7f zbsg>dP%g$*$H`?0U;vL)>3HM8F4PFa;vgVL36=}oAXR}91=OhtdkUSFBTn3a^HKAC z*qjIGX6(dE=_tyjxNBYnEq9_^hWxMyy6!I*H(OuZXe4Tzw<=O&m2Uex8 zYBl;z`qTQ;u4ZGkaij5y(c0& zRJ=RG7Sn#+WV-oKcM|P+oHI|R{cM`Lzs5dyvYb&omG&L%V<*eCNnIa&hA+v$?{0YC z1J8TmIWIisg{O+(pfLiyKTzk3eC$|Zu3w)$s*0IjP+zS~(aWv{J)1!j^%SYk^g8|8U9jWnDJecUd!S z$_@;~b`Qi+?Cwft2jeLl+ZIdj2eG{`ldzJ^?XU(0;tnRRVUdmT%s#7sZ8kB`A5TH7 z>tH;YIX{-{9}tv9+7HDN8Ns?YB+?nywJjA(riZLlW^E$bj}Io+#riTZ9juO?c`H}9 z_V(hdc(H*rtUVYT$i}5lOQ<`UX<5RZj-fH80f}E>7r1x8xpzxweSCNaSKJayq%K3n z&V*PVLmNxz;$@55I^wBJVo#zkmWgvE_DqYq;u0T{2A9&xfp~InW*=iflo`utx4$!%i3x9O?2wcZrcSN=c%_@p ziznl$1XzwGbWsXpB1RF1dwUw65XEDIiqc^X4R5oYax$rg{UQt_#>yUC#oc11GkGn! zNkc2AOo-L}AWj?O;B;Lvgpi5%Z^Cz5yZfa_+lGg@IM_RYm|^pQoR`RSSc8L!49e~O z{S@o(@5RKk?L(+%vgwX}vE<%(Kcz4k4#wY-jZliG5M=uyDgnAZnU3v=Z%(3tp@Db? zWK7jmjH5qK;$i4c=kZPPL+51^=otq#8@YOaZ|_g)P)SFb&SD({ z3Cy{IfJXSlrLCTLUl!v$ECkV5NZ1HfvAyvLLfk={PMz^SC~~l_WFdBbCNs1Z26NCl z5{f3d%OUL(u?ZxM+g2VSVlT#0@vbZSWW+GJ4_f=xfIzG62V0c?1gBs_>Gv^~JSr0iJLAY-{ef#2|Pf0*Fokg~%5;o?Ho%oXDDj6Tx zkk}K?U_6!QC()z@+r`_^ndAg%$I%lxaKr9I5+=zs;-QUijP>nfQcpZH0Z$h)xh=## zqAtTzMcGq;+wQe9MpK8CiqpnKU&=~bdooS!>7h+=Or})4sVAN~7*92=$C86@Kr6xA zYKBpAvi{mwnoVM1DW>y9F&*K6rAS!a=`Gpa1Bt$^@qswk0-lOPxgcz~6FSt*3KMK7JL9{vd-uYnDeI6#vy3=ah34K~ z8E@jWyUt2ENhcT6NF*_6j50y zQaaCfOy82i_Mk5_mBGt)DzSIpv@9gsM4F+ZqG}t>I zj5nIaV(JiVvzzQeVa_&7tr66d-HjB+q<&c&xHNHxVDDh2?hPEqvX^ zlT<4OrfiTMqT_|N!@;7XaU#Xm)t*Ylh6{wyY#|A= zE0sxKlt2f#0+u=HNNy{Ru-b!3!F1+3tJM|@iG0|Ro=P3;&7y{^03G(ORP?Hqq96}; zWYZaI(9V#&t8%3Ci?Oqd%CQD}ot>`O#CH<~Yqz~56R#QRTt6J@v}38Pauz$?Eh};{Ozd6mM}30?VEeHz#L9ZWOq`w64GFMHnR`QA>Yuz zw~EfOHyyo$mqOh3qn+)_7PKF%@iRN!O?XRw+k_FP7xV_&>)e?j|O;|Fn@$!;J! zu@tl<9h{KkseNb&lR+v>WU&97A)d%_x;2qnIKd`z`s{NAWtE)NEl2pLOBuL4qtEpbV>5x4Oyo7}kONDczRWJqZ#96>Y2kiSXnsQ^ZSyn?e zA+G3)D{PaM>E>ImK?GmCA3GA8?!-FyJ=q~XEGXn+Z=4rxPwmCYMY4dx4ld|z;m8$| zRYVq23P-Y#u9C9aR439ZU~qGSA7z*}&u~(3A`%;INfMlGBnfASumT;B__DWyYH=0E zOr)rUuvOOH>07doUQ`C2aw0=W+>S(dLHIhf*wBzu?7k?zo0mEVAMD*%fUR7e>FwRE zj(G^V4<{+={xD@@>fS6R$=Kcts5`m|r1RCukVvWUa42@D^ER~88pLgg+RKWUoOMAQ zltZSj8%4acqiNX(Ra4<~E;LJKL1KRD>oY#Wg65kX+ zAGr1z8)Hp;<^?DhyViwSD-%oO)Z>6E*k0*O#P%k68`78N69w6jb@!*82y=Etvb(f~ zxKFsJn!AkFqpOb!VU)AkLnWD6#|ZQHC8T>MwI5Kxag1ODZk?EaEQDH3tQ$q-o3patd3mHyB zfz8itwVQahq-lF5F`%^fqzAA!%vgPvP2ia5#$8ng_YAUdi0v7y{b`wjxLcHiAwFY- z%kn;^i7Ce3dKK^y$OV|a@owjBJr0O@lqM=DkX1fc3rt$JWChIWBUEkcn+nwzL`K00 z39FkZX8SC^R4PwRi96dKnqVCb$YG(w6JzsZ-`*b^!qKF|wSA<<(;@ET4X=Z6k}6oK zIC)_1I=7x_vSgVp4ElnuDZS2qSnXvehrdn5sEes8EAES>a-riaa7}6%Q&H-axej{A z=Tr`f14`~Hx>6|%YK97t?k)Drr-Cd%yc8+DIN6tQ!#0d?EP}gq+PwR6oKV|IMwRUu zoL?gB$=b9Phnh0Yc#E4yr)-i(o4IjnqDj#|mkkXN9w&vsK|SMrmY{6d2?w1_RvMUNccv74GLPGwOPRTp=q&aii8y0)!=M*Ak@L9FP z6$ekErPK#qVhZ<4a+wsIy~xy_t0lg`73d=e2TmjK(Oh4A1AlHL1nz0>2%nGO@u`cn zFoihSYdJ^#jvSwju>3}xaBPa>cP3ezy{!>9gT$G463Mn}5;ZpkP)UXqR~-EC?Ye!S z>a1;QT1aF3Sqd)+l2#G)#J>#c+)Yq>a+tc+e9C{cCH3r&(!@HaoIf{rC{ree!;mRH zd5LqF`C85r=Wr%go6J2AyCQXW*_lXTs^U%;X{opCKo(o0jFh{R2nL1aCm+tH)eSjy z4GuvLUlLk`-`ULIZ-~Exif2_vXfciA$C38ssV+P+8Xh1EPgKP4ZK!=HrNO0PM`i^+ zLtg~y5G3~Cnx!P+!z9QgfF<$yyhYgjL1sI(<5Tx7z${26pe+vSHsCSHA#;gj1~f-^ z8uD3icSAafYl?W zWCo3?>tr(`FsRVf2y~@UgFBc89LgCSM~CrTZ$}qh0o`%Xoz559#g^EczZIaS9(XmzRvNpr$`Ke%l&PU7#Wq zM}=ELW4DFIjs6Td_WI`vM@{! zQwf^5TdN3;-^(-@j4$Enfxyfg@#@Dx~RJ%G|HXP!sLZvdLTId zFe(PnN0--2E^mM-?g+t3?tPe`3(9O=*ZCqOMxwf7tP#OeSEvyjKMqa0cwuZD)R}J9 zz>q@YkD_Jt2Heot5w9N%82@?J55X`gryci@?uH&VM|1lkdT9K~&~PXrI>(=c_u;;T z==+MmSTN$wJ2bQ_G#>Nd+hkt&0K#xi!0iG5Ay}j8jUD59V_$K3G_T)dgvOp>=buo` zKP|i?qWKw+yrJpBhX%YJR6?`AP>Q6% z!$CouO9d-CT&-y8G9EKMIcLEE20Xh9&*UM-7ly{04brqa(R?g8zDwM;OZ<5oe!nj? z-md=f^j_%j9Q9vZrnzQO*(`jma2C1!(9>Syalz&;o;H)Oem_Tyu)GM2Y+dN^StdI_ zjGvU%LQ6ShB=~}do7wE(;bq+a1JE^GhE~Tf#J@v;*@_VGmBG8hGhjg-h9NY*9fX+y z*4irlnCV%pX&MY=kyehSY%vU#$(q2t^w>qNu@cDm5kx&6bd(azL#>rOadKe`Acq9U#~HLCP`v6QLwupBgnb;rQmqKVk_{cc5Q$(FL?G*5tn1wUvRRtP zFFIPe?s&q>*?^lul%j9wv=FM%OLhadUgX#9QmC~=!jQw9qfnZ^L`B#og6!gH7CJ0p zb2!HR--Uz#N~})!33vnP4?R)dyc_MHK5%3-7q{Ezn38`pAj#kM1)3O5f?k0&>7ooY<%7COD(90|Yq%)%Eg z^gjI9aO+tw{PSgjW~{AC@m?%%e0N2mEwr4Lp}Y*=2b(vM*Z}z!y!mf2R^2|peyZP$ zMY0bywu97!pV#L_(%E>WLCJ5d{GC`gd3E1QTc%UB6i@EPpmZ^=+(-=9Ht1f0O08%* z2H1=@D_M@eC9v{r{IMiv6wP{jQ*={znZXMY2xGV4TLXN3l)+;RKJPL^5fsMTeVpng zF);l$rfp=v700(T?FfSx7}Zd#oC|Ig=HVU1dodH584QXpd-?^(XEJRWz!<)@Q0Fpd za;*g8zc5V1n-`OZS8O4jU{V{CB=DuciGX#m!1zrJZh?kIv|>jO)?|$n%C2YxA%g%) zga++3J~S+Ab!co{t>f3pqH~i(?n4~!V^2!?X{?hHbz_gJ(!+35F(R8&yhJ@Oq>P-Z zQ}O(q*PaG1ltv7&^2?b)6pFYpHlc`!jxU5FQ9gbNysBvJMVu=Nb~hLvY$kY$j4u=U z@tCr;IKpzA7~q0{EY-++Y}L4?bPcOZ))mFxB+7jC(lqzQz6c@gqD%Zl7hz!&=+$looD$mupnrw5e+wPI=@J!bbZ;&{YSQ zG&RG3KzZ(w82g!Jc>*r1QDF0yj>tMIi)!+@C;2sU%fm86i!`dwJwp=t(nFCYix)3l zxMcB?#gU1%8YA7wKEn5msE!%i+aq%SAF)3Zk8DWnPT>Qh2@-5>#IZLoQKM1Cq~mt` zypcLID#59al}_-10X|7zypPX4S1ekz7Y{LHcQ^G}gNx99zBh}uw=XPo3%&+`-o=v( z@lz*+FV5f@Z+xqM+U9ac9?scC!<5H%X^lqb{JoX=BfH$=u=X?L^bUOE|Lqmn$CM4z zJ#OCI@YWB|(lUI-bh2tW1I!MwGE~J`(u60}@z^aP9@VP}L%AuQ>faqp?r*}gbap)9 z^j>`&P~6hAq^YI3Y1#6YmSw7n_tDM2BW>dr9q6ripMM?Rdlio%s}AFRCf?73_j~~l zBs{G@@wK(5v*$NUyPwMrUAp0ex3|nU&pF1w7(^W_cJc=f>79qN{c${Sxp!x$)h8eK zrgu&n@15vz-~OGG{UE`))7pLcP6_m#$^5gom@dsFx`hoG2`+SiK_AD zd}x{MqC#c=UH&iW0sf5>`Q4+jiRP(aY+6h-h0b#4<9+cx$Wd7FoR?uNMR5m?1$qIy zaA?$nBNje1>cw>vj(s+Z=;w{!;wP8*dpk%^G^p{FaOLlv^NUsT94&lx0@0wAk3QC6 z$HnKG-Pm{WX(+$uNv-@r79aTJ4oyVjlSV&p7GM(}?5Tr|shZY^4DZO)-%{+n-~;q! zChGD*&LIBOArO`|^k@sHd~DPXnBVzDChZF&_?4CfbnyWwpRn?4HNFGn=;Q;xB`d-L`i)xte<6ZX;r_#+%s)kEh7=)+@?ps@Fc;3Mwg zUOB%;uAM@Q;9F)9?38)@mf}c{OZ<+!tv?&VXX~*^z<02@FPrUlI8wNE$IpzZ5&A#r z(>o-N)cJfrMwJiY@?Of1xr(PI@VemJh(s+%2%q|=0H=$m3$S`=_SwIqd-4cQ9KY#r zaCkghu|3of)9Mg<5Rp3o&qpu=Cq{&$Pu)~;&HsM=m-oP!`pxx=@ynh6{rdmU1OF3W Cr{~=O literal 0 HcmV?d00001 diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Bindings.Https.xml b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Bindings.Https.xml new file mode 100644 index 0000000..cd8e43d --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Bindings.Https.xml @@ -0,0 +1,262 @@ + + + + Opc.Ua.Bindings.Https + + + + + Creates a new with + interface. + + + + + The protocol supported by the listener. + + + + + The method creates a new instance of a . + + The transport listener. + + + + + Create a new service host for UA HTTPS. + + + + + Creates a new HttpsTransportChannel with ITransportChannel interface. + + + + + The protocol supported by the channel. + + + + + The method creates a new instance of a Https transport channel + + The transport channel + + + + Wraps the HttpsTransportChannel and provides an ITransportChannel implementation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes a secure channel with a waiting reverse connection. + + The connection to use. + The settings to use when creating the channel. + Thrown if any communication error occurs. + + + + + + + + + + The async result class for the Https transport. + + + + + + + + + + + Not implemented here. + + + + Not implemented here. + + + + Not implemented here. + + + + Not implemented here. + + + + Not implemented here. + + + + Not implemented here. + + + + Not implemented here. + + + + Not implemented here. + + + + + + + Save the settings for a connection. + + The server url. + The settings for the transport channel. + + + + Creates a new with + interface. + + + + + The protocol supported by the listener. + + + + + The method creates a new instance of a . + + The transport listener. + + + + Implements the kestrel startup of the Https listener. + + + + + Get the Https listener. + + + + + Configure the request pipeline for the listener. + + The application builder. + + + + Manages the connections for a UA HTTPS server. + + + + + Initializes a new instance of the class. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + The URI scheme handled by the listener. + + + + + Opens the listener and starts accepting connection. + + The base address. + The settings to use when creating the listener. + The callback to use when requests arrive via the channel. + Thrown if any parameter is null. + Thrown if any communication error occurs. + + + + Closes the listener and stops accepting connection. + + Thrown if any communication error occurs. + + + + Raised when a new connection is waiting for a client. + + + + + Raised when a monitored connection's status changed. + + + + + + Reverse connect for the https transport listener is not implemeted. + + + + + Gets the URL for the listener's endpoint. + + The URL for the listener's endpoint. + + + + Starts listening at the specified port. + + + + + Stops listening. + + + + + Handles requests arriving from a channel. + + + + + Called when a UpdateCertificate event occured. + + + + diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Client.dll b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Client.dll new file mode 100644 index 0000000000000000000000000000000000000000..5266c5d35381e41040f8719cad15c5a093c4d4ed GIT binary patch literal 154112 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%0A9#H($J?ORl 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 literal 0 HcmV?d00001 diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Client.xml b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Client.xml new file mode 100644 index 0000000..778e0eb --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Client.xml @@ -0,0 +1,2513 @@ + + + + Opc.Ua.Client + + + + + Stores the options to use for a browse operation. + + + + + Creates an unattached instance of a browser. + + + + + Creates new instance of a browser and attaches it to a session. + + + + + Creates a copy of a browser. + + + + + Sets all private fields to default values. + + + + + The session that the browse is attached to. + + + + + The view to use for the browse operation. + + + + + The maximum number of refrences to return in a single browse operation. + + + + + The direction to browse. + + + + + The reference type to follow. + + + + + Whether subtypes of the reference type should be included. + + + + + The classes of the target nodes. + + + + + The results to return. + + + + + Raised when a browse operation halted because of a continuation point. + + + + + Whether subsequent continuation points should be processed automatically. + + + + + Browses the specified node. + + + + + Checks the state of the browser. + + + + + Fetches the next batch of references. + + The continuation point. + if set to true the browse operation is cancelled. + The next batch of references + + + + The event arguments provided a browse operation returns a continuation point. + + + + + Creates a new instance. + + + + + Whether the browse operation should be cancelled. + + + + + Whether subsequent continuation points should be processed automatically. + + + + + The references that have been fetched so far. + + + + + A delegate used to received browser events. + + + + + Defines numerous re-useable utility functions for clients. + + + + + The default discover operation timeout. + + + + + Discovers the servers on the local machine. + + The configuration. + A list of server urls. + + + + Discovers the servers on the local machine. + + The configuration. + Operation timeout in milliseconds. + A list of server urls. + + + + Finds the endpoint that best matches the current settings. + + The discovery URL. + if set to true select an endpoint that uses security. + The best available endpoint. + + + + Finds the endpoint that best matches the current settings. + + The discovery URL. + if set to true select an endpoint that uses security. + Operation timeout in milliseconds. + The best available endpoint. + + + + Finds the endpoint that best matches the current settings. + + + + + Finds the endpoint that best matches the current settings. + + + + + Finds the endpoint that best matches the current settings. + + The application configuration. + The discovery URL. + if set to true select an endpoint that uses security. + The best available endpoint. + + + + Finds the endpoint that best matches the current settings. + + The application configuration. + The discovery URL. + if set to true select an endpoint that uses security. + The timeout for the discover operation. + The best available endpoint. + + + + Select the best supported endpoint from an + EndpointDescriptionCollection, with or without security. + + + + + + + + A class that holds the configuration for a UA service. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + The node id for the dictionary. + + + + + The display name for the dictionary. + + + + + The node id for the type system. + + + + + The display name for the type system. + + + + + The type dictionary. + + + + + The data type dictionary. + + + + + Loads the dictionary identified by the node id. + + + + + Loads the dictionary identified by the node id. + + + + + Returns true if the dictionary contains the data type description; + + + + + Returns the schema for the specified type (returns the entire dictionary if null). + + + + + Retrieves the type system for the dictionary. + + + + + Retrieves the data types in the dictionary. + + + In order to allow for fast Linq matching of dictionary + QNames with the data type nodes, the BrowseName of + the DataType node is replaced with Value string. + + + + + Reads the contents of a data dictionary. + + + + + Validates the type dictionary. + + + + + + The Opc.Ua.Client namespace defines classes which can be used to implement a UA client. + These classes manage client side state information, provide higher level abstractions for UA + tasks such as managing sessions/subscriptions and saving/restoring connection information for + later use. + + + + + + A monitored item. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The client handle. The caller must ensure it uniquely identifies the monitored item. + + + + Initializes a new instance of the class. + + The template used to specify the monitoring parameters. + + + + Initializes a new instance of the class. + + The template used to specify the monitoring parameters. + if set to true the event handlers are copied. + + + + Initializes a new instance of the class. + + The template used to specify the monitoring parameters. + if set to true the event handlers are copied. + if set to true the clientHandle is of the template copied. + + + + Called by the .NET framework during deserialization. + + + + + Sets the private members to default values. + + + + + A display name for the monitored item. + + + + + The start node for the browse path that identifies the node to monitor. + + + + + The relative path from the browse path to the node to monitor. + + + A null or empty string specifies that the start node id should be monitored. + + + + + The node class of the node being monitored (affects the type of filter available). + + + + + The attribute to monitor. + + + + + The range of array indexes to monitor. + + + + + The encoding to use when returning notifications. + + + + + The monitoring mode. + + + + + The sampling interval. + + + + + The filter to use to select values to return. + + + + + The length of the queue used to buffer values. + + + + + Whether to discard the oldest entries in the queue when it is full. + + + + + The subscription that owns the monitored item. + + + + + A local handle assigned to the monitored item. + + + + + Whether the item has been created on the server. + + + + + The identifier assigned by the client. + + + + + The node id to monitor after applying any relative path. + + + + + Whether the monitoring attributes have been modified since the item was created. + + + + + The status associated with the monitored item. + + + + + Returns the queue size used by the cache. + + + + + The last value or event received from the server. + + + + + Read all values in the cache queue. + + + + + Read all events in the cache queue. + + + + + The last message containing a notification for the item. + + + + + Raised when a new notification arrives. + + + + + Saves a data change or event in the cache. + + + + + Creates a deep copy of the object. + + + + + Sets the error status for the monitored item. + + + + + Updates the object with the results of a translate browse path request. + + + + + Updates the object with the results of a create monitored item request. + + + + + Updates the object with the results of a modify monitored item request. + + + + + Updates the object with the results of a modify monitored item request. + + + + + Returns the field name the specified SelectClause in the EventFilter. + + + + + Returns value of the field name containing the event type. + + + + + Returns value of the field name containing the event type. + + + + + Returns value of the field name containing the event type. + + + + + Returns value of the field name containing the event type. + + + + + Returns value of the field name containing the event type. + + + + + The service result for a data change notification. + + + + + The service result for a field in an notification (the field must contain a Status object). + + + + + Throws an exception if the flter cannot be used with the node class. + + + + + Sets the default event filter. + + + + + The event arguments provided when a new notification message arrives. + + + + + Creates a new instance. + + + + + The new notification. + + + + + The delegate used to receive monitored item value notifications. + + + + + An item in the cache + + + + + Constructs a cache for a monitored item. + + + + + The size of the queue to maintain. + + + + + The last value received from the server. + + + + + Returns all values in the queue. + + + + + Saves a notification in the cache. + + + + + Changes the queue size. + + + + + Saves the events received from the srever. + + + + + Constructs a cache for a monitored item. + + + + + The size of the queue to maintain. + + + + + The last event received. + + + + + Returns all events in the queue. + + + + + Saves a notification in the cache. + + + + + Changes the queue size. + + + + + The current status of monitored item. + + + + + Creates a empty object. + + + + + The identifier assigned by the server. + + + + + Whether the item has been created on the server. + + + + + Any error condition associated with the monitored item. + + + + + The node id being monitored. + + + + + The attribute being monitored. + + + + + The range of array indexes to being monitored. + + + + + The encoding to use when returning notifications. + + + + + The monitoring mode. + + + + + The identifier assigned by the client. + + + + + The sampling interval. + + + + + The filter to use to select values to return. + + + + + The length of the queue used to buffer values. + + + + + Whether to discard the oldest entries in the queue when it is full. + + + + + Updates the monitoring mode. + + + + + Updates the object with the results of a translate browse paths request. + + + + + Updates the object with the results of a create monitored item request. + + + + + Updates the object with the results of a modify monitored item request. + + + + + Updates the object with the results of a delete item request. + + + + + Sets the error state for the monitored item status. + + + + + A client side cache of the server's type model. + + + + + Initializes the object with default values. + + + + + + + + + + + + + + + + + + + + + + + + + + Determines whether a node id is a known type id. + + The type extended identifier. + + true if the specified type id is known; otherwise, false. + + + + + Determines whether a node id is a known type id. + + The type identifier. + + true if the specified type id is known; otherwise, false. + + + + + Returns the immediate supertype for the type. + + The extended type identifier. + + A type identifier of the + + + + + Returns the immediate supertype for the type. + + The type identifier. + + The immediate supertype idnetyfier for + + + + + Returns the immediate subtypes for the type. + + The extended type identifier. + + List of type identifiers for + + + + + Determines whether a type is a subtype of another type. + + The subtype identifier. + The supertype identifier. + + true if is supertype of ; otherwise, false. + + + + + Determines whether a type is a subtype of another type. + + The subtype identifier. + The supertype identyfier. + + true if is supertype of ; otherwise, false. + + + + + Returns the qualified name for the reference type id. + + The reference type + + A name qualified with a namespace for the reference . + + + + + Returns the node identifier for the reference type with the specified browse name. + + Browse name of the reference. + + The identifier for the + + + + + Checks if the identifier represents a that provides encodings + for the . + + The id the encoding node . + The id of the DataType node. + + true if is encoding of the ; otherwise, false. + + + + + Determines if the value contained in an extension object matches the expected data type. + + The identifier of the expected type . + The value. + + true if the value contained in an extension object matches the + expected data type; otherwise, false. + + + + + Determines if the value is an encoding of the + + The expected type id. + The value. + + true the value is an encoding of the ; otherwise, false. + + + + + Returns the data type for the specified encoding. + + The encoding id. + + + + + Returns the data type for the specified encoding. + + The encoding id. + + The data type for the + + + + + Loads the UA defined types into the cache. + + The context. + + + + Removes all nodes from the cache. + + + + + Fetches a node from the server and updates the cache. + + + + + Adds the supertypes of the node to the cache. + + + + + Returns the references of the specified node that meet the criteria specified. + + + + + Returns a display name for a node. + + + + + Returns a display name for a node. + + + + + Returns a display name for the target of a reference. + + + + + Builds the relative path from a type to a node. + + + + + The implementation of a reverse connect client manager. + + + This reverse connect manager allows to register for reverse connections + with various strategies: + i) take any connection. + ii) filter for a specific application Uri and Url scheme. + iii) filter for the Url. + Second, any filter can be combined with the Once or Always flag. + + + + + A default value for reverse hello configurations, if undefined. + + + This value is used as wait timeout if the value is undefined by a caller. + + + + + Internal state of the reverse connect manager. + + + + + Internal state of the reverse connect host. + + + + + Specify the strategy for the reverse connect registration. + + + + + Undefined strategy, defaults to Once. + + + + + Remove entry after reverse connect callback. + + + + + Always callback on matching url or uri. + + + + + Flag for masking any connection. + + + + + Respond to any incoming reverse connection, + remove entry after reverse connect callback. + + + + + Respond to any incoming reverse connection, + always callback. + + + + + Entry for a client reverse connect registration. + + + + + Record to store information on a client + registration for a reverse connect event. + + + + + Register with the server certificate. + + + + + + + + Initializes the object with default values. + + + + + Dispose implementation. + + + + + An overrideable version of the Dispose. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Raised when the configuration changes. + + The sender. + The instance containing the event data. + + + + Called when the configuration is changed on disk. + + The configuration. + + + + Called when the reverse connect configuration is changed. + + + An empty configuration or null stops service on all configured endpoints. + + The client endpoint configuration. + + + + Open host ports. + + + + + Close host ports. + + + + + Dispose the hosts; + + + + + Add endpoint for reverse connection. + + + + + + Starts the server application. + + The configuration. + + + + Starts the server application. + + The configuration. + + + + Clears all waiting reverse connectino handlers. + + + + + Helper to wait for a reverse connection. + + + + + + + + Register for a waiting reverse connection. + + The endpoint Url of the reverse connection. + Optional. The server application Uri of the reverse connection. + The callback + The reverse connect callback strategy. + + + + Unregister reverse connection callback. + + The hashcode returned by the registration. + + + + Called before the server stops + + + + + Called to start hosting the reverse connect ports. + + + + + Remove configuration endpoints from list. + + + + + Add endpoint for reverse connection. + + The endpoint Url of the reverse connect client endpoint. + Tf this is an entry in the application configuration. + + + + Raised when a reverse connection is waiting, + finds and calls a waiting connection. + + + + + Match the waiting connection with a registration, callback registration, + return if connection is accepted in event. + + true if a match was found. + + + + Raised when a connection status changes. + + + + + Renew the cancellation token after use. + + + + + Manages a session with a server. + + + + + Constructs a new instance of the class. + + The channel used to communicate with the server. + The configuration for the client application. + The endpoint use to initialize the channel. + + + + Constructs a new instance of the class. + + The channel used to communicate with the server. + The configuration for the client application. + The endpoint used to initialize the channel. + The certificate to use for the client. + The list of available endpoints returned by server in GetEndpoints() response. + The value of profileUris used in GetEndpoints() request. + + The application configuration is used to look up the certificate if none is provided. + The clientCertificate must have the private key. This will require that the certificate + be loaded from a certicate store. Converting a DER encoded blob to a X509Certificate2 + will not include a private key. + The availableEndpoints and discoveryProfileUris parameters are used to validate + that the list of EndpointDescriptions returned at GetEndpoints matches the list returned at CreateSession. + + + + + Initializes a new instance of the class. + + The channel. + The template session. + if set to true the event handlers are copied. + + + + Initializes the channel. + + + + + Sets the object members to default values. + + + + + Check if all required configuration fields are populated. + + + + + Validates the server nonce and security parameters of user identity. + + + + + Closes the session and the underlying channel. + + + + + Raised when a keep alive arrives from the server or an error is detected. + + + Once a session is created a timer will periodically read the server state and current time. + If this read operation succeeds this event will be raised each time the keep alive period elapses. + If an error is detected (KeepAliveStopped == true) then this event will be raised as well. + + + + + Raised when a notification message arrives in a publish response. + + + All publish requests are managed by the Session object. When a response arrives it is + validated and passed to the appropriate Subscription object and this event is raised. + + + + + Raised when an exception occurs while processing a publish response. + + + Exceptions in a publish response are not necessarily fatal and the Session will + attempt to recover by issuing Republish requests if missing messages are detected. + That said, timeout errors may be a symptom of a OperationTimeout that is too short + when compared to the shortest PublishingInterval/KeepAliveCount amount the current + Subscriptions. The OperationTimeout should be twice the minimum value for + PublishingInterval*KeepAliveCount. + + + + + Raised when a subscription is added or removed + + + + + Raised to indicate the session is closing. + + + + + Gets the endpoint used to connect to the server. + + + + + Gets the name assigned to the session. + + + + + Gets the period for wich the server will maintain the session if there is no communication from the client. + + + + + Gets the local handle assigned to the session + + + + + Gets the user identity currently used for the session. + + + + + Gets a list of user identities that can be used to connect to the server. + + + + + Gets the table of namespace uris known to the server. + + + + + Gest the table of remote server uris known to the server. + + + + + Gets the system context for use with the session. + + + + + Gets the factory used to create encodeable objects that the server understands. + + + + + Gets the cache of the server's type tree. + + + + + Gets the cache of nodes fetched from the server. + + + + + Gets the context to use for filter operations. + + + + + Gets the locales that the server should use when returning localized text. + + + + + Gets the data type system dictionaries in use. + + + + + Gets the subscriptions owned by the session. + + + + + Gets the number of subscriptions owned by the session. + + + + + Gets or Sets the default subscription for the session. + + + + + Gets or Sets how frequently the server is pinged to see if communication is still working. + + + This interval controls how much time elaspes before a communication error is detected. + If everything is ok the KeepAlive event will be raised each time this period elapses. + + + + + Returns true if the session is not receiving keep alives. + + + Set to true if the server does not respond for 2 times the KeepAliveInterval. + Set to false is communication recovers. + + + + + Gets the time of the last keep alive. + + + + + Gets the number of outstanding publish or keep alive requests. + + + + + Gets the number of outstanding publish or keep alive requests which appear to be missing. + + + + + Gets the number of good outstanding publish requests. + + + + + Creates a new communication session with a server by invoking the CreateSession service + + The configuration for the client application. + The endpoint for the server. + If set to true the discovery endpoint is used to update the endpoint description before connecting. + The name to assign to the session. + The timeout period for the session. + The identity. + The user identity to associate with the session. + The new session object + + + + Creates a new communication session with a server by invoking the CreateSession service + + The configuration for the client application. + The endpoint for the server. + If set to true the discovery endpoint is used to update the endpoint description before connecting. + If set to true then the domain in the certificate must match the endpoint used. + The name to assign to the session. + The timeout period for the session. + The user identity to associate with the session. + The preferred locales. + The new session object. + + + + Creates a new communication session with a server using a reverse connection. + + The configuration for the client application. + The client endpoint for the reverse connect. + The endpoint for the server. + If set to true the discovery endpoint is used to update the endpoint description before connecting. + If set to true then the domain in the certificate must match the endpoint used. + The name to assign to the session. + The timeout period for the session. + The user identity to associate with the session. + The preferred locales. + The new session object. + + + + Creates a new communication session with a server using a reverse connect manager. + + The configuration for the client application. + The reverse connect manager for the client connection. + The endpoint for the server. + If set to true the discovery endpoint is used to update the endpoint description before connecting. + If set to true then the domain in the certificate must match the endpoint used. + The name to assign to the session. + The timeout period for the session. + The user identity to associate with the session. + The preferred locales. + The cancellation token. + The new session object. + + + + Recreates a session based on a specified template. + + The Session object to use as template + The new session object. + + + + Recreates a session based on a specified template. + + The Session object to use as template + The waiting reverse connection. + The new session object. + + + + Used to handle renews of user identity tokens before reconnect. + + + + + Raised before a reconnect operation completes. + + + + + Reconnects to the server after a network failure. + + + + + Reconnects to the server after a network failure using a waiting connection. + + + + + Saves all the subscriptions of the session. + + The file path. + + + + Saves a set of subscriptions. + + + + + Load the list of subscriptions saved in a file. + + The file path. + The list of loaded subscriptions + + + + Updates the local copy of the server's namespace uri and server uri tables. + + + + + Updates the cache with the type and its subtypes. + + + This method can be used to ensure the TypeTree is populated. + + + + + Returns the available encodings for a node + + The variable node. + + + + + Returns the data description for the encoding. + + The encoding Id. + + + + + Returns the data dictionary that contains the description. + + The description id. + + + + + Returns the data dictionary that contains the description. + + The dictionary id. + + The dictionary. + + + + Loads all dictionaries of the OPC binary or Xml schema type system. + + The type system. + + + + + Reads the values for the node attributes and returns a node object. + + The nodeId. + + + + + Reads the value for a node. + + The node Id. + + + + + Reads the value for a node an checks that it is the specified type. + + The node id. + The expected type. + + + + + Fetches all references for the specified node. + + The node id. + + + + + Establishes a session with the server. + + The name to assign to the session. + The user identity. + + + + Establishes a session with the server. + + The name to assign to the session. + The session timeout. + The user identity. + The list of preferred locales. + + + + Establishes a session with the server. + + The name to assign to the session. + The session timeout. + The user identity. + The list of preferred locales. + If set to true then the domain in the certificate must match the endpoint used. + + + + Updates the preferred locales used for the session. + + The preferred locales. + + + + Updates the user identity and/or locales used for the session. + + The user identity. + The preferred locales. + + + + Finds the NodeIds for the components for an instance. + + + + + Reads the values for a set of variables. + + The variable ids. + The expected types. + The list of returned values. + The list of returned errors. + + + + Reads the display name for a set of Nodes. + + + + + Disconnects from the server and frees any network resources. + + + + + Disconnects from the server and frees any network resources with the specified timeout. + + + + + Adds a subscription to the session. + + The subscription to add. + + + + + Removes a subscription from the session. + + The subscription to remove. + + + + + Removes a list of subscriptions from the sessiont. + + The list of subscriptions to remove. + + + + + Invokes the Browse service. + + The request header. + The view to browse. + The node to browse. + The maximum number of returned values. + The browse direction. + The reference type id. + If set to true the subtypes of the ReferenceType will be included in the browse. + The node class mask. + The continuation point. + The list of node references. + + + + + Begins an asynchronous invocation of the Browse service. + + The request header. + The view to browse. + The node to browse. + The maximum number of returned values.. + The browse direction. + The reference type id. + If set to true the subtypes of the ReferenceType will be included in the browse. + The node class mask. + The callback. + + + + + + Finishes an asynchronous invocation of the Browse service. + + The result. + The continuation point. + The list of node references. + + + + + Invokes the BrowseNext service. + + + + + Begins an asynchronous invocation of the BrowseNext service. + + + + + Finishes an asynchronous invocation of the BrowseNext service. + + + + + Calls the specified method and returns the output arguments. + + The NodeId of the object that provides the method. + The NodeId of the method to call. + The input arguments. + The list of output argument values. + + + + Returns the software certificates assigned to the application. + + + + + Handles an error when validating the application instance certificate provided by the server. + + + + + Handles an error when validating software certificates provided by the server. + + + + + Inspects the software certificates provided by the server. + + + + + Starts a timer to check that the connection to the server is still available. + + + + + Removes a completed async request. + + + + + Adds a new async request. + + + + + Removes a completed async request. + + + + + Sends a keep alive by reading from the server. + + + + + Checks if a notification has arrived. Sends a publish if it has not. + + + + + Called when the server returns a keep alive response. + + + + + Called when a error occurs during a keep alive. + + + + + Sends an additional publish request. + + + + + Completes an asynchronous publish operation. + + + + + Sends a republish request. + + + + + Processes the response from a publish request. + + + + + Raises an event indicating that publish has returned a notification. + + + + + Invokes a DeleteSubscriptions call for the specified subscriptionId. + + + + + Load certificate chain for connection. + + + + + Load certificate chain for connection. + + + + + The event arguments provided when a keep alive response arrives. + + + + + Creates a new instance. + + + + + Gets the status associated with the keep alive operation. + + + + + Gets the current server state. + + + + + Gets the current server time. + + + + + Gets or sets a flag indicating whether the session should send another keep alive. + + + + + The delegate used to receive keep alive notifications. + + + + + Represents the event arguments provided when a new notification message arrives. + + + + + Creates a new instance. + + + + + Gets the subscription that the notification applies to. + + + + + Gets the notification message. + + + + + Gets the string table returned with the notification message. + + + + + The delegate used to receive publish notifications. + + + + + Represents the event arguments provided when a publish error occurs. + + + + + Creates a new instance. + + + + + Creates a new instance. + + + + + Gets the status associated with the keep alive operation. + + + + + Gets the subscription with the message that could not be republished. + + + + + Gets the sequence number for the message that could not be republished. + + + + + The delegate used to receive pubish error notifications. + + + + + Attempts to reconnect to the server. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Gets the session managed by the handler. + + The session. + + + + Begins the reconnect process. + + + + + Begins the reconnect process using a reverse connection. + + + + + Called when the reconnect timer expires. + + + + + Reconnects to the server. + + + + + A subscription + + + + + Creates a empty object. + + + + + Initializes the subscription from a template. + + + + + Initializes the subscription from a template. + + The template. + if set to true the event handlers are copied. + + + + Called by the .NET framework during deserialization. + + + + + Sets the private members to default values. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Raised to indicate that the state of the subscription has changed. + + + + + Raised to indicate the publishing state for the subscription has stopped or resumed (see PublishingStopped property). + + + + + A display name for the subscription. + + + + + The publishing interval. + + + + + The keep alive count. + + + + + The maximum number of notifications per publish request. + + + + + The maximum number of notifications per publish request. + + + + + Whether publishing is enabled. + + + + + The priority assigned to subscription. + + + + + The timestamps to return with the notification messages. + + + + + The maximum number of messages to keep in the internal cache. + + + + + The default monitored item. + + + + + The minimum lifetime for subscriptions in milliseconds. + + + + + Gets or sets a value indicating whether the notifications are cached within the monitored items. + + + true if monitored item cache is disabled; otherwise, false. + + + Applications must process the Session.Notication event if this is set to true. + This flag improves performance by eliminating the processing involved in updating the cache. + + + + + Gets or sets the fast data change callback. + + The fast data change callback. + + Only one callback is allowed at a time but it is more efficient to call than an event. + + + + + Gets or sets the fast event callback. + + The fast event callback. + + Only one callback is allowed at a time but it is more efficient to call than an event. + + + + + The items to monitor. + + + + + Allows the list of monitored items to be saved/restored when the object is serialized. + + + + + Returns true if the subscription has changes that need to be applied. + + + + + Returns the number of monitored items. + + + + + The session that owns the subscription item. + + + + + A local handle assigned to the subscription + + + + + The unique identifier assigned by the server. + + + + + Whether the subscription has been created on the server. + + + + + The current publishing interval. + + + + + The current keep alive count. + + + + + The current lifetime count. + + + + + Whether publishing is currently enabled. + + + + + The priority assigned to subscription when it was created. + + + + + The when that the last notification received was published. + + + + + The when that the last notification was received. + + + + + The sequence number assigned to the last notification message. + + + + + The number of notifications contained in the last notification message. + + + + + The last notification received from the server. + + + + + The cached notifications. + + + + + The sequence numbers that are available for republish requests. + + + + + Sends a notification that the state of the subscription has changed. + + + + + Returns true if the subscription is not receiving publishes. + + + + + Ensures sensible values for the counts. + + + + + Creates a subscription on the server. + + + + + Starts a timer to ensure publish requests are sent frequently enough to detect network interruptions. + + + + + Checks if a notification has arrived. Sends a publish if it has not. + + + + + Dumps the current state of the session queue. + + + + + Deletes a subscription on the server. + + + + + Modifies a subscription on the server. + + + + + Changes the publishing enabled state for the subscription. + + + + + Republishes the specified notification message. + + + + + Applies any changes to the subscription items. + + + + + Resolves all relative paths to nodes on the server. + + + + + Creates all items that have not already been created. + + + + + Modies all items that have been changed. + + + + + Deletes all items that have been marked for deletion. + + + + + Deletes all items that have been marked for deletion. + + + + + Adds the notification message to internal cache. + + + + + Processes the incoming messages. + + + + + Get the number of outstanding message workers + + + + + Adds an item to the subscription. + + + + + Adds an item to the subscription. + + + + + Removes an item from the subscription. + + + + + Removes an item from the subscription. + + + + + Returns the monitored item identified by the client handle. + + + + + Tells the server to refresh all conditions being monitored by the subscription. + + + + + Throws an exception if the subscription is not in the correct state. + + + + + Saves a data change in the monitored item cache. + + + + + Saves events in the monitored item cache. + + + + + A message received from the server cached until is processed or discarded. + + + + + Flags indicating what has changed in a subscription. + + + + + The subscription has not changed. + + + + + The subscription was created on the server. + + + + + The subscription was deleted on the server. + + + + + The subscription was modified on the server. + + + + + Monitored items were added to the subscription (but not created on the server) + + + + + Monitored items were removed to the subscription (but not deleted on the server) + + + + + Monitored items were created on the server. + + + + + Monitored items were deleted on the server. + + + + + Monitored items were modified on the server. + + + + + The delegate used to receive data change notifications via a direct function call instead of a .NET Event. + + + + + The delegate used to receive event notifications via a direct function call instead of a .NET Event. + + + + + The event arguments provided when the state of a subscription changes. + + + + + Creates a new instance. + + + + + The changes that have affected the subscription. + + + + + The delegate used to receive subscription state change notifications. + + + + + A collection of subscriptions. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + The existing collection to use as the basis of creating this collection + + + + Initializes the collection with the specified capacity. + + The max. capacity of the collection + + + diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Configuration.dll b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Configuration.dll new file mode 100644 index 0000000000000000000000000000000000000000..fd483f073290e3b867fb03f71a9e1b7fa16126f0 GIT binary patch literal 32256 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
Su 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 + + + Opc.Ua.Configuration + + + + + Interface to create application callbacks. + + + + + The application message. + + The text of the message. + If the application should ask the user. + + + + Show the message and return result. + + + + + A class that install, configures and runs a UA application. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The application configuration. + + + + Gets or sets the name of the application. + + The name of the application. + + + + Gets or sets the type of the application. + + The type of the application. + + + + Gets or sets the name of the config section containing the path to the application configuration file. + + The name of the config section. + + + + Gets or sets the type of configuration file. + + The type of configuration file. + + + + Gets the server. + + The server. + + + + Gets the application configuration used when the Start() method was called. + + The application configuration. + + + + Gets or sets a flag that indicates whether the application will be set up for management with the GDS agent. + + If true the application will not be visible to the GDS local agent after installation. + + + + Get or set the message dialog. + + + + + Get or set the certificate password provider. + + + + + Processes the command line. + + + True if the arguments were processed; False otherwise. + + + + + Starts the UA server as a Windows Service. + + The server. + + + + Starts the UA server. + + The server. + + + + Stops the UA server. + + + + + Helper to replace localhost with the hostname + in the application uri and base adresses of the + configuration. + + + + + + Loads the configuration. + + + + + Loads the application configuration. + + + + + Loads the application configuration. + + + + + Checks for a valid application instance certificate. + + if set to true no dialogs will be displayed. + Minimum size of the key. + + + + Checks for a valid application instance certificate. + + if set to true no dialogs will be displayed. + Minimum size of the key. + The lifetime in months. + + + + Handles a certificate validation error. + + + + + Creates an application instance certificate if one does not already exist. + + + + + Checks that the domains in the server addresses match the domains in the certificates. + + + + + Creates the application instance certificate. + + The configuration. + Size of the key. + The lifetime in months. + The new certificate + + + + Deletes an existing application instance certificate. + + The configuration instance that stores the configurable information for a UA application. + + + + Adds the certificate to the Trusted Certificate Store + + The application's configuration which specifies the location of the TrustedStore. + The certificate to register. + + + + Show a message for approval and return result. + + + + True if approved, false otherwise. + + + diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Core.dll b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Core.dll new file mode 100644 index 0000000000000000000000000000000000000000..905f4f466e9a6157c1db7ec894b29362596d5e83 GIT binary patch literal 8784384 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%0D&u9NBT(SH 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

Q-!#- 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

bcK41ZiVlb`Ju*173Oz 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

E2XX@|iV`AgOi^`WFM+TQKy_Fu5 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⁢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�D$(MM78 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

42XlIHQbt&UfW*Kqr7bv(SM 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


C)Gp;0)u-g|m3+xwm5as!m6!6Ne9JG2 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

I&}?Kf$r@{qAO{Eq@O~U%h*KSysUpma zptD~Wbowv(^C+Jhr`omPP1}^4FIzJj=7biXv)1hYK45$rg7y-J(Ks|QrAt{&u>401>idN)V{<*j&WeUu}1mB-yo z0ccT5jcCBp4si+oEr~ecPjNhkZMu zZ>N1bqi>geyP|KmeY>M?k9~Wh@49{0qi@VUeGprD7`Jac`kMANqwlbNhokR`efmIv z=nmL-Ao|YRcRu>&?3;_eoA%v|z6tv#qVK4EM^zWddfByL%}C3nxpMEXO+;0QDkvAk z7=n!qwO90Y_i3iUMm^6b`+`=4_CQkD?H*;_V#B~CulvZ#w5HLHe;R?Hl#v=}}< zz8&pxq)>vvFSIu_kk*H+h2r2st;>E&AnLhM&A+#)xD5tCXbz8vr81<{v~f*pl|uT3 zrYL)=)Bk~1y}3~6(Z#9L|DlIm^9p}}gn;q~r>EG(U~~g2*@=7-guC@Y86AnOjr8LxT7Md)&aGa@Afz?$-0n(DZ+Fb%PP7T7C0g zoF{GW)J4oRL2kPK)sm+^+0UZthn)V5XT<|Hxm2_?e@h46-zt4k($QooT(h>#og6%; z&mGp`bP0-7j!2X|rb?JA(+^-|^>0i66k@Sx<6;J|2-KBfF6M;Ni-K~v)A7UX0@D}= z=i!OSKMDbDO1wiEOsrB)!s0yiFx@l@$(vtg-jzhu{!D@n59K3Gevof5HS6KctPGO_ zl?pEkgFVtLUw8sRm4!vm5{f2zSjS-dj9|EowV9ySR=WmQd<;+#7{oX}r-S{�G7E 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

Uw~+HtSm?nO_>t+wO*3DEY;( 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Ƚ$xK(E@uhN!+i9xtb#&TL?u*46;wra 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%0DKkjrvZNka0u{c0Y3>C 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 z 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

3Yf{zRXcKl#Bq+T(lDR~7()+H0@d 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 z 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

80+mrt&O&{3TrP}E15yf1` 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�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 B!;=62 literal 0 HcmV?d00001 diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Core.xml b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Core.xml new file mode 100644 index 0000000..3319050 --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Core.xml @@ -0,0 +1,168459 @@ + + + + Opc.Ua.Core + + + +

+ The Opc.Ua.Bindings namespace contains classes that implement the bindings for the + mappings described in Part 6 of the UA specification. It also includes an implementation for + the UA TCP protocol. + + + + + + Provides stream access to a sequence of buffers. + + + + + Attaches the stream to a set of buffers + + The buffers. + + + + Creates a writeable stream that creates buffers as necessary. + + The buffer manager. + Size of the buffer. + The start. + The count. + + + + Returns ownership of the buffers stored in the stream. + + The owner. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sets the current buffer. + + + + + Returns the total length in all buffers. + + + + + Returns the current position. + + + + + Returns the number of bytes used in the buffer. + + + + + The binding for the UA native stack + + + + + Initializes the binding. + + + + + The message context to use with the binding. + + + + + A collection of buffers. + + + + + Creates an empty collection. + + + + + Creates an empty collection with the specified capacity. + + The capacity. + + + + Creates a collection with a single element. + + The segment. + + + + Creates a collection with a single element. + + The array. + The offset. + The count. + + + + Returns the buffers to the manager before clearing the collection. + + The buffer manager. + The owner. + Length of all buffers in this collection + + + + Returns the total amount of data in the buffers. + + The total size. + + + + A thread safe wrapper for the buffer manager class. + + + + + Constructs the buffer manager. + + The name. + Max size of the pool. + Max size of the buffer. + + + + Returns a buffer with at least the specified size. + + The size. + The owner. + The buffer content + + + + Changes the owner of a buffer (used for debugging only). + + The buffer. + The owner. + + + + Locks the buffer (used for debugging only). + + The buffer. + + + + Unlocks the buffer (used for debugging only). + + The buffer. + + + + Release the buffer. + + The buffer. + The owner. + + + + This is an interface to the scheme of a transport binding. + + + + + The protocol scheme supported by the binding. + + + + + This is an interface to the factory of a transport binding. + + + + + The factory to create a new transport. + + The transport. + + + + The interface to manage transport bindings. + + + + + Get a transport binding for a uri scheme. + + The uri scheme. + + + + Return if there is a transport listener for a uri scheme. + + The uri scheme. + + + + Set the transport factory to the binding. + Overrides other bindings with the same uri scheme. + + + + + Add all bindings with interface exported from a assembly. + + The assembly with the bindings. + + + + Add all bindings with interface from a list. + + The array of binding types with interface. + + + + This is the transport listener factory interface for a binding (server). + + + + + Create the service host for a server using + + The server base. + The service hosts are added to this list. + The application configuration. + The base addreses for the service host. + The server description. + The list of supported security policies. + The server certificate. + The cert cahin of the server certificate. + + + + This is the transport channel factory interface for a binding (client). + + + + + The transpaort bindings available for teh stack. + + + + + The bindings for transport channels (client). + + + + + The bindings for transport listeners (server). + + + + + The bindings for the transport channels. + + + + + Initialize the transport listener. + + List of known default bindings. + + + + Get a transport channel for the specified uri scheme. + + The uri scheme of the transport. + + + + The bindings for the transport listeners. + + + + + Initialize the transport listener. + + List of known default bindings. + + + + Get a transport listener for the specified uri scheme. + + The uri scheme of the transport. + + + + The bindings for the transport listeners. + + + + + Implement the default constructor. + + + The default constructor adds all interfaces T. + + + + + Initialize object with default list of bindings. + + + + + Dictionary of bindings. + + + + + + + + + + + + + + + + + + + + Validate the type is a transport listener. + + + + + Try to load a binding from well known assemblies at runtime. + + The uri scheme of the binding. + + + + Stores the results of an asynchronous operation. + + + + + Initializes the object with a callback + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Called when an asynchronous operation completes. + + + + + Called when an asynchronous operation completes. + + + + + Called when an asynchronous operation completes. + + + + + Called when an asynchronous operation completes. + + + + + Called when an asynchronous operation completes. + + + + + Called when an asynchronous operation completes. + + + + + Called when an asynchronous operation completes. + + + + + Called when an asynchronous operation completes. + + + + + The response returned from the server. + + + + + Stores additional state information associated with the operation. + + + + + + + + + + + + + + + + + Called when the operation times out. + + + + + Called when an asynchronous operation completes. + + + + + Stores various configuration parameters used by the channel. + + + + + Creates an object with default values. + + + + + The context to use when encoding/decoding messages. + + + + + Validator to use when handling certificates. + + + + + The maximum size for a message sent or received. + + + + + The maximum size for the send or receive buffers. + + + + + The default lifetime for the channel in milliseconds. + + + + + The default lifetime for a security token in milliseconds. + + + + + Represents a security token associate with a channel. + + + + + Creates an object with default values. + + + + + The id assigned to the channel that the token belongs to. + + + + + The id assigned to the token. + + + + + When the token was created by the server (refers to the server's clock). + + + + + The lifetime of the token in milliseconds. + + + + + Whether the token has expired. + + + + + Whether the token should be activated in case a new one is already created. + + + + + The nonce provided by the client. + + + + + The nonce provided by the server. + + + + + The key used to sign messages sent by the client. + + + + + The key used to encrypt messages sent by the client. + + + + + The initialization vector by the client when encrypting a message. + + + + + The key used to sign messages sent by the server. + + + + + The key used to encrypt messages sent by the server. + + + + + The initialization vector by the server when encrypting a message. + + + + + The SymmetricAlgorithm object used by the client to encrypt messages. + + + + + The SymmetricAlgorithm object used by the server to encrypt messages. + + + + + The HMAC object used by the client to sign messages. + + + + + The HMAC object used by the server to sign messages. + + + + + Interface between listener and UA TCP channel + + + + + The endpoint url of the listener + + + + + Binds a new socket to an existing channel. + + + + + + + + + + + + + Used to transfer a reverse connection socket to the client. + + + + + Called when a channel closes. + + + + + Manages the listening side of a UA TCP channel. + + + + + Attaches the object to an existing socket. + + + + + Attaches the object to an existing socket. + + + + + An overrideable version of the Dispose. + + + + + The channel name used in trace output. + + + + + The TCP channel listener. + + + + + Sets the callback used to receive notifications of new events. + + + + + Attaches the channel to an existing socket. + + + + + Sends the response for the specified request. + + + + + Handles a socket error. + + + + + Forces the channel into a faulted state as a result of a fatal error. + + + + + Forces the channel into a faulted state as a result of a fatal error. + + + + + Forces the channel into a faulted state as a result of a fatal error. + + + + + Starts a timer that will clean up the channel if it is not opened/re-opened. + + + + + Cleans up a timer that will clean up the channel if it is not opened/re-opened. + + + + + Called when the channel needs to be cleaned up. + + + + + Closes the channel and releases resources. + + + + + Called to send queued responses after a reconnect. + + + + + Sends an error message over the socket. + + + + + Sends a fault response secured with the symmetric keys. + + + + + Notify if the channel status changed. + + + + + Called to indicate an error or success if the listener + channel initiated a reverse hello connection. + + + The callback is only used by the server channel. + The listener channel uses the callback to indicate + an error condition to the server channel. + + + + + Sends a fault response secured with the asymmetric keys. + + + + + Handles a reconnect request. + + + + + Set the flag if a response is required for the use case of reverse connect. + + + + + Returns a new token id. + + + + + Reset the sorted dictionary of queued responses after reconnect. + + + + + The channel request event handler. + + + + + Used to report an incoming request. + + + + + Used to report the status of the channel. + + + + + Creates a transport channel with UA-TCP transport, UA-SC security and UA Binary encoding + + + + + Create a Tcp transport channel. + + + + + Creates a new TcpTransportChannel with ITransportChannel interface. + + + + + The protocol supported by the channel. + + + + + The method creates a new instance of a TCP transport channel + + The transport channel + + + + Handles async event callbacks from a socket + + + + + Create the event args for the async TCP message socket. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The socket event args. + + + + + Handles async event callbacks only for the ConnectAsync method + + + + + Create the async event args for a TCP message socket. + + The socket error. + + + + + + + + + + Not implemented here. + + + + + + + + + + Not implemented here. + + + + + + + Not implemented here. + + + + Not implememnted here. + + + + Creates a new TcpMessageSocket with IMessageSocket interface. + + + + + The method creates a new instance of a UA-TCP message socket + + the message socket + + + + Gets the implementation description. + + The implementation string. + + + + Handles reading and writing of message chunks over a socket. + + + + + Creates an unconnected socket. + + + + + Attaches the object to an existing socket. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Gets the socket handle. + + The socket handle. + + + + Gets the transport channel features implemented by this message socket. + + The transport channel feature. + + + + Connects to an endpoint. + + + + + Forcefully closes the socket. + + + + + Starts reading messages from the socket. + + + + + Changes the sink used to report reads. + + + + + Handles a read complete event. + + + + + Handles a read complete event. + + + + + Reads the next block of data from the socket. + + + + + Helper to read read next block or message based on current state. + + + + + delegate to handle internal callbacks with socket error + + + + + Try to connect to endpoint and do callback if connected successfully + + Endpoint address + Endpoint address family + Endpoint port + Callback that must be executed if the connection would be established + + + + Handle socket connection event + + + + + + + Sends a buffer. + + + + + Create event args for TcpMessageSocket. + + + + + States for the nested read handler. + + + + + Defines constants for the UA TCP message identifiers. + + + + + A final chunk for a message. + + + + + An intermediate chunk for a message. + + + + + A final chunk for a message which indicates that the message has been aborted by the sender. + + + + + A mask used to select the message type portion of the message id. + + + + + A mask used to select the chunk type portion of the message id. + + + + + A chunk for a generic message. + + + + + A chunk for a generic message. + + + + + A chunk for a generic message. + + + + + A chunk for an OpenSecureChannel message. + + + + + A chunk for a CloseSecureChannel message. + + + + + A hello message. + + + + + A reverse hello message. + + + + + An acknowledge message. + + + + + An error message. + + + + + Returns true if the message type is equal to the expected type. + + + + + Returns true if the message type indicates it is a final chunk. + + + + + Returns true if the message type indicates it is a abort chunk. + + + + + Returns true if the message type is recognized. + + + + + Defines constants for the UA TCP message identifiers. + + + + + The size of the message type and size prefix in each message. + + + + + The minimum send or receive buffer size. + + + + + Minimum message body size + + + + + The minimum send or receive buffer size. + + + + + The maximum length for the reason in an error message. + + + + + The maximum length for the endpoint url in the hello message. + + + + + The maximum length for an x509 certificate. + + + + + The maximum length for an a security policy uri. + + + + + The length of the base message header. + + + + + The length of the message header use with symmetric cryptography. + + + + + The length of the sequence message header. + + + + + The length a X509 certificate thumbprint. + + + + + The number of bytes required to specify the length of an encoding string or bytestring. + + + + + Sequence numbers may only rollover if they are larger than this value. + + + + + The first sequence number after a rollover must be less than this value. + + + + + The default buffer size to use for communication. + + + + + The default maximum message size. + + + + + How long a connection will remain in the server after it goes into a faulted state. + + + + + How long a security token lasts before it needs to be renewed. + + + + + The minimum lifetime for a security token lasts before it needs to be renewed. + + + + + The minimum time interval between reconnect attempts. + + + + + The maximum time interval between reconnect attempts. + + + + + The fraction of the lifetime to wait before renewing a token. + + + + + The fraction of the lifetime to wait before forcing the activation of the renewed token. + + + + + The certificates that have the key size larger than KeySizeExtraPadding need an extra padding byte in the transport message + + + + + Manages the reverse connect client UA TCP channel. + + + + + Attaches the object to an existing socket. + + + + + The channel name used in trace output. + + + + + Processes an incoming message. + + True if the implementor takes ownership of the buffer. + + + + Processes a ReverseHello message from the server. + + + + + Manages the server side of a UA TCP channel. + + + + + Attaches the object to an existing socket. + + + + + Attaches the object to an existing socket. + + + + + An overrideable version of the Dispose. + + + + + The channel name used in trace output. + + + + + The URL used to establish a connection to the client. + + + + + Raised when the connection status changes. + + + + + + + + + + + + + Reverse client is connected, send reverse hello message. + + + + + Handles a reconnect request. + + + + + Processes an incoming message. + + True if the implementor takes ownership of the buffer. + + + + Called to send queued responses after a reconnect. + + + + + Processes a Hello message from the client. + + + + + Processes an OpenSecureChannel request message. + + + + + + + + + + + Sends an OpenSecureChannel response. + + + + + Processes an CloseSecureChannel request message. + + + + + Processes a request message. + + + + + Creates a new Tcp service host. + + + This class can be used by a transport which + implements the + + + + + + + + + + + + Create a new service host for UA TCP. + + + + + Creates a new TcpTransportListener with ITransportListener interface. + + + + + + + + + + + Manages the transport for a UA TCP server. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + The URI scheme handled by the listener. + + + + + Opens the listener and starts accepting connection. + + The base address. + The settings to use when creating the listener. + The callback to use when requests arrive via the channel. + Thrown if any parameter is null. + Thrown if any communication error occurs. + + + + Closes the listener and stops accepting connection. + + Thrown if any communication error occurs. + + + + Gets the URL for the listener's endpoint. + + The URL for the listener's endpoint. + + + + Binds a new socket to an existing channel. + + + + + Called when a channel closes. + + + + + Raised when a new connection is waiting for a client. + + + + + Raised when a monitored connection's status changed. + + + + + + + + Indicate that the reverse hello connection attempt completed. + + + The server tried to connect to a client using a reverse hello message. + + + + + Starts listening at the specified port. + + + + + Stops listening. + + + + + Transfers the channel to a waiting connection. + + TRUE if the channel should be kept open; FALSE otherwise. + + + + Called when a UpdateCertificate event occured. + + + + + Handles a new connection. + + + + + Handles requests arriving from a channel. + + + + + Get the next channel id. Handles overflow. + + + + + Sets the URI for the listener. + + + + + The Tcp specific arguments passed to the ConnectionWaiting event. + + + + + + + + + + + Manages the server side of a UA TCP channel. + + + Manages the server side of a UA TCP channel. + + + Manages the server side of a UA TCP channel. + + + + + Returns the endpoint description selected by the client. + + + + + The certificate for the server. + + + + + The server certificate chain. + + + + + The security mode used with the channel. + + + + + The security policy used with the channel. + + + + + Whether the channel is restricted to discovery operations. + + + + + The certificate for the client. + + + + + The client certificate chain. + + + + + Creates a new nonce. + + + + + Returns the thumbprint as a uppercase string. + + + + + Returns the thumbprint as a uppercase string. + + + + + Compares two certificates. + + + + + Returns the length of the symmetric encryption key. + + + + + Validates the nonce. + + + + + Returns the plain text block size for key in the specified certificate. + + + + + Returns the cipher text block size for key in the specified certificate. + + + + + Calculates the size of the asymmetric security header. + + + + + Get asymmetric header size + + + + + Calculates the size of the footer with an asymmetric signature. + + + + + Writes the asymmetric security header to the buffer. + + + + + Writes the asymmetric security header to the buffer. + + + + + Sends a OpenSecureChannel request. + + + + + Sends a OpenSecureChannel request. + + + + + Reads the asymmetric security header to the buffer. + + + + + Checks if it is possible to revise the security mode. + + + + + Sets to endpoint according to the endpoint url. + + + + + Processes an OpenSecureChannel request message. + + + + + Adds an asymmetric signature to the end of the buffer. + + + Start and count specify the block of data to be signed. + The padding and signature must be written to the stream wrapped by the encoder. + + + + + Verifies an asymmetric signature at the end of the buffer. + + + Start and count specify the block of data including the signature and padding. + The current security policy uri and sender certificate specify the size of the signature. + This call also verifies that the padding is correct. + + + + + Encrypts the buffer using asymmetric encryption. + + + Start and count specify the block of data to be encrypted. + The caller must ensure that count is a multiple of the input block size for the current cipher. + The header specifies unencrypted data that must be copied to the output. + + + + + Decrypts the buffer using asymmetric encryption. + + + Start and count specify the block of data to be decrypted. + The header specifies unencrypted data that must be copied to the output. + + + + + Attaches the object to an existing socket. + + + + + Attaches the object to an existing socket. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + The identifier assigned to the channel by the server. + + + + + The globally unique identifier assigned to the channel by the server. + + + + + Raised when the state of the channel changes. + + + + + Reports that the channel state has changed (in another thread). + + + + + Returns a new sequence number. + + + + + Resets the sequence number after a connect. + + + + + Checks if the sequence number is valid. + + + + + Saves an intermediate chunk for an incoming message. + + + + + Returns the chunks saved for message. + + + + + Processes an incoming message. + + + + + Processes an incoming message. + + True if the implementor takes ownership of the buffer. + + + + Handles an error parsing or verifying a message. + + + + + Handles an error parsing or verifying a message. + + + + + Handles an error parsing or verifying a message. + + + + + Handles a receive error. + + + + + Handles a socket error. + + + + + Handles a write complete event. + + + + + Queues a write request. + + + + + Queues a write request. + + + + + Called after a write operation completes. + + + + + Writes an error to a stream. + + + + + Reads an error from a stream. + + + + + Checks if the message limits have been exceeded. + + + + + Updates the message type stored in the message header. + + + + + Updates the message size stored in the message header. + + + + + The synchronization object for the channel. + + + + + The socket for the channel. + + + + + Whether the client channel uses a reverse hello socket. + + + + + The buffer manager for the channel. + + + + + The resource quotas for the channel. + + + + + The size of the receive buffer. + + + + + The size of the send buffer. + + + + + The maximum size for a request message. + + + + + The maximum number of chunks per request message. + + + + + The maximum size for a response message. + + + + + The maximum number of chunks per response message. + + + + + The state of the channel. + + + + + The identifier assigned to the channel by the server. + + + + + A class that stores the state for a write operation. + + + + + Initializes the object with a callback + + + + + The request id associated with the operation. + + + + + The body of the request or response associated with the operation. + + + + + Creates an RSA PKCS#1 v1.5 or PSS signature of a hash algorithm for the stream. + + + + + Verifies an RSA PKCS#1 v1.5 or PSS signature of a hash algorithm for the stream. + + + + + Encrypts the message using RSA encryption. + + + + + Decrypts the message using RSA encryption. + + + + + Returns the current security token. + + + + + Returns the current security token. + + + + + Returns the renewed but not yet activated token. + + + + + Creates a new token. + + + + + Activates a new token. + + + + + Sets the renewed token + + + + + Discards the tokens. + + + + + The byte length of the MAC (a.k.a signature) attached to each message. + + + + + The byte length the encryption blocks. + + + + + Calculates the symmetric key sizes based on the current security policy. + + + + + Computes the keys for a token. + + + + + Secures the message using the security token. + + + + + Decrypts and verifies a message chunk. + + + + + Returns the symmetric signature for the data. + + + + + Returns the symmetric signature for the data. + + + + + Decrypts the data in a buffer using symmetric encryption. + + + + + Decrypts the data in a buffer using symmetric encryption. + + + + + Signs the message using SHA1 HMAC + + + + + Verifies a HMAC for a message. + + + + + Encrypts a message using a symmetric algorithm. + + + + + Decrypts a message using a symmetric algorithm. + + + + + The possible channel states. + + + + + The channel is closed. + + + + + The channel is closing. + + + + + The channel establishing a network connection. + + + + + The channel negotiating security parameters. + + + + + The channel is open and accepting messages. + + + + + The channel is in a error state. + + + + + Used to report changes to the channel state. + + + + + Manages the client side of a UA TCP channel. + + + + + Creates a channel for for a client. + + + + + Creates a channel for for a client. + + + + + An overrideable version of the Dispose. + + + + + Creates a connection with the server. + + + + + Finishes a connect operation. + + + + + Closes a connection with the server. + + + + + Sends a request to the server. + + + + + Returns the response to a previously sent request. + + + + + Sends a Hello message. + + + + + Processes an Acknowledge message. + + + + + Sends an OpenSecureChannel request. + + + + + Processes an OpenSecureChannel response message. + + + + + Handles a socket error. + + + + + Called when a write operation completes. + + + + + Processes an incoming message. + + True if the function takes ownership of the buffer. + + + + Called when the socket is connected. + + + + + Called when it is time to do a handshake. + + + + + Called when a token is renewed. + + + + + Sends a request to the server. + + + + + Parses the response return from the server. + + + + + Cancels all pending requests and closes the channel. + + + + + Closes the channel and attempts to reconnect. + + + + + Schedules the renewal of a token. + + + + + Creates a object to manage the state of an asynchronous operation. + + + + + Cleans up after an asychronous operation completes. + + + + + Stores the state of a operation that was queued while waiting for the channel to connect. + + + + + Called when the connect operation completes. + + The state. + + + + Processes an Error message received over the socket. + + + + + Sends an CloseSecureChannel request message. + + + + + Processes a response message. + + + + + Creates a transport channel for the ITransportChannel interface. + Implements the UA-SC security and UA Binary encoding. + The socket layer requires a IMessageSocketFactory implementation. + + + + + Create a transport channel from a message socket factory. + + The message socket factory. + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Returns the channel's underlying message socket if connected / available. + + + + + A masking indicating which features are implemented. + + + + + Gets the description for the endpoint used by the channel. + + + + + Gets the configuration for the channel. + + + + + Gets the context used when serializing messages exchanged via the channel. + + + + + Gets the the channel's current security token. + + + + + Gets or sets the default timeout for requests send via the channel. + + + + + Initializes a secure channel with the endpoint identified by the URL. + + The URL for the endpoint. + The settings to use when creating the channel. + Thrown if any communication error occurs. + + + + Initializes a secure channel with the endpoint identified by the connection. + + The connection to use. + The settings to use when creating the channel. + Thrown if any communication error occurs. + + + + Opens a secure channel with the endpoint identified by the URL. + + Thrown if any communication error occurs. + + + + Begins an asynchronous operation to open a secure channel with the endpoint identified by the URL. + + The callback to call when the operation completes. + The callback data to return with the callback. + + The result which must be passed to the EndOpen method. + + Thrown if any communication error occurs. + + + + + Completes an asynchronous operation to open a secure channel. + + The result returned from the BeginOpen call. + Thrown if any communication error occurs. + + + + + Closes any existing secure channel and opens a new one. + + Thrown if any communication error occurs. + + Calling this method will cause outstanding requests over the current secure channel to fail. + + + + + Closes any existing secure channel and opens a new one. + + A reverse connection, null otherwise. + Thrown if any communication error occurs. + + Calling this method will cause outstanding requests over the current secure channel to fail. + + + + + Begins an asynchronous operation to close the existing secure channel and open a new one. + + The callback to call when the operation completes. + The callback data to return with the callback. + + The result which must be passed to the EndReconnect method. + + Thrown if any communication error occurs. + + + + + Completes an asynchronous operation to close the existing secure channel and open a new one. + + The result returned from the BeginReconnect call. + Thrown if any communication error occurs. + + + + + Closes the secure channel. + + Thrown if any communication error occurs. + + + + Begins an asynchronous operation to close the secure channel. + + The callback to call when the operation completes. + The callback data to return with the callback. + + The result which must be passed to the EndClose method. + + Thrown if any communication error occurs. + + + + + Completes an asynchronous operation to close the secure channel. + + The result returned from the BeginClose call. + Thrown if any communication error occurs. + + + + + Sends a request over the secure channel. + + The request to send. + The response returned by the server. + Thrown if any communication error occurs. + + + + Begins an asynchronous operation to send a request over the secure channel. + + The request to send. + The callback to call when the operation completes. + The callback data to return with the callback. + + The result which must be passed to the EndSendRequest method. + + Thrown if any communication error occurs. + + + + + Completes an asynchronous operation to send a request over the secure channel. + + The result returned from the BeginSendRequest call. + + Thrown if any communication error occurs. + + + + + Saves the settings so the channel can be opened later. + + The URL. + The settings. + + + + Opens the channel before sending the request. + + A reverse connection, null otherwise. + + + + Represents an asynchronous message socket operation. + + + + + Gets the data buffer to use with an asynchronous socket method. + + + A System.Byte array that represents the data buffer to use with an asynchronous + socket method. + + + + + Gets or sets an array of data buffers to use with an asynchronous socket method. + + + An System.Collections.IList that represents an array of data buffers to use with + an asynchronous socket method. + + + + + Gets the number of bytes transferred in the socket operation. + + An System.Int32 that contains the number of bytes transferred in the socket operation. + + + + Gets the result of the asynchronous socket operation. + + true if error, false if ok + + + + Gets the SocketError string of the asynchronous socket operation. + + the socket error string + + + + Gets or sets a user or application object associated with this asynchronous socket + operation. + + + An object that represents the user or application object associated with this + asynchronous socket operation. + + + + + The event used to complete an asynchronous operation. + + the message socket + + + + Sets the data buffer to use with an asynchronous socket method. + + The data buffer to use with an asynchronous socket method. + The offset, in bytes, in the data buffer where the operation starts. + The maximum amount of data, in bytes, to send or receive in the buffer. + + + + + An interface to an object that received messages from the socket. + + + + + Called when a new message arrives. + + + + + Called when an error occurs during a read. + + + + + This is an interface to a message socket which supports a factory + + + + + Creates an unconnected socket. + + the message socket + + + + Gets the implementation description. + + The implementation string. + + + + Handles reading and writing of message chunks over a socket. + + + + + Gets the socket handle. + + The socket handle. + + + + Returns the features implemented by the message socket. + + + + + Connects to an endpoint. + + + + + Forcefully closes the socket. + + + + + Starts reading messages from the socket. + + + + + Changes the sink used to report reads. + + + + + Sends a buffer. + + + + + Get the message socket event args. + + + + + A channel, based on an underlying message socket + + + + + Returns the channel's underlying message socket if connected. + + + + + The Opc.Ua.Configuration namespace contains classes that used to manage the + configuration and security information for a UA application. + + + + + + The Opc.Ua namespace contains classes and interfaces which implement all of the types + and services defined by the UA specification. + + + + + + The Opc.Ua.Schema.Binary namespace provides classes which implement the OPC Binary + Type Description schema which is defined in Part 3 of the UA specification. + + + + + + A description of type, + + + + + + The qualifed name for the type. + + + + + + + + + + + + + + + + + Generates files used to describe data types. + + + + + Intializes the object with default values. + + + + + Intializes the object with a file table. + + + + + The dictionary that was validated. + + + + + The types defined in the dictionary. + + + + + Any warnings during validation. + + + + + Generates the code from the contents of the address space. + + + + + Generates the code from the contents of the address space. + + + + + Returns the schema for the specified type (returns the entire schema if null). + + + + + Generates the code from the contents of the address space. + + + + + Imports a dictionary identified by an import directive. + + + + + Returns true if the documentation element is empty. + + + + + Returns true if field is an integer type. + + + + + Returns the length of field in bits (-1 if the length is not fixed). + + + + + Checks if a string is a valid part of a qname. + + + + + Imports a type description. + + + + + Validates a type description. + + + + + Validates a field in a structured type description. + + + + + Well known embedded binary schemas. + + + + + The binary schema documentation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Opc.Ua.Schema namespace provides classes which facilitate manipulation of the schemas + used to describe data types exposed by a UA server. + + + + + + The Opc.Ua.Schema.Xml namespace provides classes which provide access to + XML schemas used to describe the data types provided by a UA Server. + + + + + + Generates files used to describe data types. + + + + + Intializes the object with default values. + + + + + Intializes the object with a file table. + + + + + The schema that was validated. + + + + + Generates the code from the contents of the address space. + + + + + Generates the code from the contents of the address space. + + + + + Returns the schema for the specified type (returns the entire schema if null). + + + + + A base class for schema validators. + + + + + Intializes the object with default values. + + + + + Intializes the object with a file table. + + + + + The file that was validated. + + + + + A table of known files. + + + + + A table of files which have been loaded. + + + + + Returns true if the QName is null, + + + + + Formats a string and throws an exception. + + + + + Formats a string and throws an exception. + + + + + Formats a string and throws an exception. + + + + + Formats a string and throws an exception. + + + + + Loads an input file for validation. + + + + + Loads an input file for validation. + + + + + Loads the dictionary from a file. + + + + + Loads a schema from a file. + + + + + Loads a schema from a file. + + + + + Loads a schema from an embedded resource. + + + + + Adds the embedded resources to the file table. + + + + + Returns the schema for the specified type (returns the entire schema if null). + + + + + Stores the configurable configuration information for a UA application. + + + Stores the configurable configuration information for a UA application. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + Gets an object used to synchronize access to the properties dictionary. + + + The object used to synchronize access to the properties dictionary. + + + + + Gets a dictionary used to save state associated with the application. + + + The dictionary used to save state associated with the application. + + + + + A descriptive name for the the application (not necessarily unique). + + The name of the application. + + + + A unique identifier for the application instance. + + The application URI. + + + + A unique identifier for the product. + + The product URI. + + + + The type of application. + + The type of the application. + + + + The security configuration for the application. + + The security configuration. + + + + The transport configuration for the application. + + The transport configurations. + + + + The quotas that are used at the transport layer. + + The transport quotas. + + + + Additional configuration for server applications. + + The server configuration. + + + + Additional configuration for client applications. + + The client configuration. + + + + Additional configuration of the discovery server. + + The discovery server configuration. + + + + A bucket to store additional application specific configuration data. + + The extensions. + + + + Configuration of the trace and information about log file + + The trace configuration. + + + + Disabling / enabling high resolution clock + + true if high resolution clock is disabled; otherwise, false. + + + + Gets the file that was used to load the configuration. + + The source file path. + + + + Gets or sets the certificate validator which is configured to use. + + + + + Returns the domain names which the server is configured to use. + + A list of domain names. + + + + Creates the message context from the configuration. + + A new instance of a ServiceMessageContext object. + + + + Creates the message context from the configuration. + + A new instance of a ServiceMessageContext object. + + + + Loads and validates the application configuration from a configuration section. + + Name of configuration section for the current application's default configuration containing . + Type of the application. + Application configuration + + + + Loads and validates the application configuration from a configuration section. + + Name of configuration section for the current application's default configuration containing . + A description for the ApplicationType DataType. + A user type of the configuration instance. + Application configuration + + + + Loads but does not validate the application configuration from a configuration section. + + The file. + Type of the system. + Application configuration + Use this method to ensure the configuration is not changed during loading. + + + + Loads and validates the application configuration from a configuration section. + + The file. + Type of the application. + Type of the system. + Application configuration + + + + Loads and validates the application configuration from a configuration section. + + The file. + Type of the application. + Type of the system. + if set to true apply trace settings after validation. + The certificate password provider. + Application configuration + + + + Reads the file path from the application configuration file. + + Name of configuration section for the current application's default configuration containing . + + File path from the application configuration file. + + + + Saves the configuration file. + + The file path. + Calls GetType() on the current instance and passes that to the DataContractSerializer. + + + + Ensures that the application configuration is valid. + + Type of the application. + + + + Loads the endpoints cached on disk. + + if set to true ConfiguredEndpointCollection is always returned, + even if loading from disk fails + Colection of configured endpoints from the disk. + + + + Loads the endpoints cached on disk. + + if set to true ConfiguredEndpointCollection is always returned, + even if loading from disk fails + if set to true overrides the configuration. + + Colection of configured endpoints from the disk. + + + + + Looks for an extension with the specified type and uses the DataContractSerializer to parse it. + + + + The deserialized extension. Null if an error occurs. + + + The containing element must use the name and namespace uri specified by the DataContractAttribute for the type. + + + + + Looks for an extension with the specified type and uses the DataContractSerializer to parse it. + + The type of extension. + Name of the element (null means use type name). + The extension if found. Null otherwise. + + + + Updates the extension. + + The type of extension. + Name of the element (null means use type name). + The value. + + + + Updates the extension. + + The type. + The value. + + + + Specifies various limits that apply to the transport or secure channel layers. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + The default timeout to use when sending requests. + + The operation timeout. + + + + The maximum length of string encoded in a message body. + + The max length of the string. + + + + The maximum length of a byte string encoded in a message body. + + The max length of the byte string. + + + + The maximum length of an array encoded in a message body. + + The max length of the array. + + + + The maximum length of a message body. + + The max size of the message. + + + + The maximum size of the buffer to use when sending messages. + + The max size of the buffer. + + + + The lifetime of a secure channel. + + The channel lifetime. + + + + The lifetime of a security token. + + The security token lifetime. + + + + Specifies parameters used for tracing. + + + Specifies parameters used for tracing. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + The output file used to log the trace information. + + The output file path. + + + + Whether the existing log file should be deleted when the application configuration is loaded. + + true if existing log file should be deleted when the application configuration is loaded; otherwise, false. + + + + The masks used to select what is written to the output + Masks supported by the trace feature: + - Do not output any messages -None = 0x0; + - Output error messages - Error = 0x1; + - Output informational messages - Information = 0x2; + - Output stack traces - StackTrace = 0x4; + - Output basic messages for service calls - Service = 0x8; + - Output detailed messages for service calls - ServiceDetail = 0x10; + - Output basic messages for each operation - Operation = 0x20; + - Output detailed messages for each operation - OperationDetail = 0x40; + - Output messages related to application initialization or shutdown - StartStop = 0x80; + - Output messages related to a call to an external system - ExternalSystem = 0x100; + - Output messages related to security. - Security = 0x200; + + The trace masks. + + + + Applies the trace settings to the current process. + + + + + Specifies the configuration information for a transport protocol + + + Each application is allows to have one transport configure per protocol type. + + + + + The default constructor. + + + + + The default constructor. + + The URL scheme. + The type. + + + + The URL prefix used by the application (http, opc.tcp, net.tpc, etc.). + + The URI scheme. + + + + The name of the class that defines the binding for the transport. + + The name of the type. + + This can be any instance of the System.ServiceModel.Channels.Binding class + that implements these constructors: + + XxxBinding(EndpointDescription description, EndpointConfiguration configuration); + XxxBinding(IList{EndpointDescription} descriptions, EndpointConfiguration configuration) + XxxBinding(EndpointConfiguration configuration) + + + + + A collection of TransportConfiguration objects. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + A collection of values to add to this new collection + + is null. + + + + + Initializes the collection with the specified capacity. + + The capacity. + + + + A class that defines a group of sampling rates supported by the server. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + Calculates the security level, given the security mode and policy + Invalid and none is discouraged + Just signing is always weaker than any use of encryption + + + + + Specifies whether the messages are signed and encrypted or simply signed + + The security mode. + + + + The security policy to use. + + The security policy URI. + + + + A collection of ServerSecurityPolicy objects. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + A collection of values to add to this new collection + + is null. + + + + + Initializes the collection with the specified capacity. + + The capacity. + + + + The security configuration for the application. + + + The security configuration for the application. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + + + + The application instance certificate. + + The application certificate. + + This certificate must contain the application uri. + For servers, URLs for each supported protocol must also be present. + + + + + The store containing any additional issuer certificates. + + + + + The trusted certificate store. + + + + + The length of nonce in the CreateSession service. + + + The length of nonce in the CreateSession service. + + + + + A store where invalid certificates can be placed for later review by the administrator. + + + A store where invalid certificates can be placed for later review by the administrator. + + + + + Gets or sets a value indicating whether untrusted certificates should be automatically accepted. + + + This flag can be set to by servers that allow anonymous clients or use user credentials for authentication. + It can be set by clients that connect to URLs specified in configuration rather than with user entry. + + + + + Gets or sets a directory which contains files representing users roles. + + + + + Gets or sets a value indicating whether SHA-1 signed certificates are accepted. + + + This flag can be set to false by servers that accept SHA-1 signed certificates. + + + + + Gets or sets a value indicating whether certificates with unavailable revocation lists are not accepted. + + + This flag can be set to true by servers that must have a revocation list for each CA (even if empty). + + + + + Gets or sets a value indicating which minimum certificate key strength is accepted. + + + This value can be set to 1024, 2048 or 4096 by servers + + + + + Gets or sets a value indicating whether the application cert should be copied to the trusted store. + + + It is useful for client/server applications running on the same host and sharing the cert store to autotrust. + + + + + Gets or sets a value indicating whether the application should send the complete certificate chain. + + + If set to true the complete certificate chain will be sent for CA signed certificates. + + + + + The store containing additional user issuer certificates. + + + + + The store containing trusted user certificates. + + + + + The store containing additional Https issuer certificates. + + + + + The store containing trusted Https certificates. + + + + + Gets or sets a value indicating whether the server nonce validation errors should be suppressed. + + + Allows client interoperability with legacy servers which do not comply with the specification for nonce usage. + If set to true the server nonce validation errors are suppressed. + Please set this flag to true only in close and secured networks since it can cause security vulnerabilities. + + + + + Adds a certificate as a trusted peer. + + + + + Validates the security configuration. + + + + + Ensure valid trust lists. + + + + + Get the provider which is invoked when a password + for a private key is requested. + + + + + A class that defines a group of sampling rates supported by the server. + + + + + The default constructor. + + + + + Creates a group with the specified settings. + + The start. + The increment. + The count. + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + The first sampling rate in the group (in milliseconds). + + The first sampling rate in the group (in milliseconds). + + + + The increment between sampling rates in the group (in milliseconds). + + The increment. + + An increment of 0 means the group only contains one sampling rate equal to the start. + + + + + The number of sampling rates in the group. + + The count. + + A count of 0 means there is no limit. + + + + + A collection of SamplingRateGroup objects. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + A collection of values to add to this new collection + + is null. + + + + + Initializes the collection with the specified capacity. + + The capacity. + + + + Specifies the configuration for a server application. + + + Specifies the configuration for a server application. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + Remove unsupported security policies and expand wild cards. + + + + + The base addresses for the server. + + The base addresses. + + The actually endpoints are constructed from the security policies. + On one base address per supported transport protocol is allowed. + + + + + Gets or sets the alternate base addresses. + + The alternate base addresses. + + These addresses are used to specify alternate paths to ther via firewalls, proxies + or similar network infrastructure. If these paths are specified in the configuration + file then the server will use the domain of the URL used by the client to determine + which, if any, or the alternate addresses to use instead of the primary addresses. + + + + + The security policies supported by the server. + + The security policies. + + An endpoint description is created for each combination of base address and security policy. + + + + + Gets or sets the minimum number of threads assigned to processing requests. + + The minimum request thread count. + + + + Gets or sets the maximum number of threads assigned to processing requests. + + The maximum request thread count. + + + + Gets or sets the maximum number of requests that will be queued waiting for a thread. + + The maximum queued request count. + + + + Validates the configuration. + + + + + Specifies the configuration for a server application. + + + Specifies the configuration for a server application. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + The user tokens accepted by the server. + + The user token policies. + + + + Whether diagnostics are enabled. + + true if diagnostic is enabled; otherwise, false. + + + + The maximum number of open sessions. + + The maximum session count. + + + + That minimum period of that a session is allowed to remain open without communication from the client (in milliseconds). + + The minimum session timeout. + + + + That maximum period of that a session is allowed to remain open without communication from the client (in milliseconds). + + The maximum session timeout. + + + + The maximum number of continuation points used for Browse/BrowseNext operations. + + The maximum number of continuation points used for Browse/BrowseNext operations + + + + The maximum number of continuation points used for Query/QueryNext operations. + + The maximum number of query continuation points. + + + + The maximum number of continuation points used for HistoryRead operations. + + The maximum number of history continuation points. + + + + The maximum age of an incoming request (old requests are rejected). + + The maximum age of an incoming request. + + + + The minimum publishing interval supported by the server (in milliseconds). + + The minimum publishing interval. + + + + The maximum publishing interval supported by the server (in milliseconds). + + The maximum publishing interval. + + + + The minimum difference between supported publishing interval (in milliseconds). + + The publishing resolution. + + + + How long the subscriptions will remain open without a publish from the client. + + The maximum subscription lifetime. + + + + The maximum number of messages saved in the queue for each subscription. + + The maximum size of the message queue. + + + + The maximum number of notificates saved in the queue for each monitored item. + + The maximum size of the notification queue. + + + + The maximum number of notifications per publish. + + The maximum number of notifications per publish. + + + + The minimum sampling interval for metadata. + + The minimum sampling interval for metadata. + + + + The available sampling rates. + + The available sampling rates. + + + + The endpoint description for the registration endpoint. + + The registration endpoint. + + + + The maximum time between registration attempts (in milliseconds). + + The maximum time between registration attempts (in milliseconds). + + + + The path to the file containing nodes persisted by the core node manager. + + The path to the file containing nodes persisted by the core node manager. + + + + The minimum lifetime for a subscription. + + The minimum lifetime for a subscription. + + + + Gets or sets the max publish request count. + + The max publish request count. + + + + Gets or sets the max subscription count. + + The max subscription count. + + + + Gets or sets the max size of the event queue. + + The max size of the event queue. + + + + Gets or sets the server profile array. + + The array of server profiles. + + + + Gets or sets the server shutdown delay. + + The array of server profiles. + + + + Gets or sets the server capabilities. + + The array of server profiles. + + + + Gets or sets the supported private key format. + + The array of server profiles. + + + + Gets or sets the max size of the trust list. + + + + + Gets or sets if multicast DNS is enabled. + + + + + Gets or sets reverse connect server configuration. + + + + + Validates the configuration. + + + + + Stores the configuration of the reverse connections. + + + + + The default constructor. + + + + + Initializes the object during deserialization. + + + + + Sets private members to default values. + + + + + A collection of reverse connect clients. + + + + + The interval after which a new reverse connection is attempted. + + + + + The default timeout to wait for a response to a reverse connection. + + + + + The timeout to wait to establish a new reverse + connection after a rejected attempt. + + + + + Stores the configuration of the reverse connections. + + + + + The default constructor. + + + + + Initializes the object during deserialization. + + + + + Sets private members to default values. + + + + + The endpoint Url of the reverse connect client endpoint. + + + + + The timeout to wait for a response to a reverse connection. + Overrides the default reverse connection setting. + + + + + The maximum count of active reverse connect sessions. + 0 or undefined means unlimited number of sessions. + 1 means a single connection is created at a time. + n disables reverse hello once the total number of sessions + in the server reaches n. + + + + + Specifies whether the sending of reverse connect attempts is enabled. + + + + + A collection of reverse connect clients. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + A collection of values to add to this new collection + + is null. + + + + + Initializes the collection with the specified capacity. + + The capacity. + + + + The configuration for a client application. + + + The configuration for a client application. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + The default session timeout. + + The default session timeout. + + + + The well known URLs for the local discovery servers. + + The well known discovery URLs. + + + + The endpoint descriptions for central discovery servers. + + The endpoint descriptions for central discovery servers. + + + + The path to the file containing the cached endpoints. + + The path to the file containing the cached endpoints. + + + + The minimum lifetime for a subscription. + + The minimum lifetime for a subscription. + + + + Gets or sets reverse connect Client configuration. + + + + + Validates the configuration. + + + + + Stores the configuration of the reverse connections. + + + + + The default constructor. + + + + + Initializes the object during deserialization. + + + + + Sets private members to default values. + + + + + A collection of reverse connect client endpoints. + + + + + The time a reverse hello port is held open to wait for a + reverse connection until the request is rejected. + + + + + The timeout to wait for a reverse hello message. + + + + + Stores the configuration of the reverse connections. + + + + + The default constructor. + + + + + Initializes the object during deserialization. + + + + + Sets private members to default values. + + + + + The endpoint Url of a reverse connect client. + + + + + A collection of reverse connect client endpoints. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + A collection of values to add to this new collection + + is null. + + + + + Initializes the collection with the specified capacity. + + The capacity. + + + + Specifies the configuration for a discovery server application. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + The localized names for the discovery server. + + The server names. + + + + The path to the file containing servers saved by the discovery server. + + The discovery server cache file. + + + + Gets or sets the server registrations associated with the discovery server. + + The server registrations. + + + + Specifies the configuration for a discovery server application. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + The context. + + + + Gets or sets the application URI of the server which the registration applies to. + + The application uri. + + + + Gets or sets the alternate discovery urls. + + The alternate discovery urls. + + These addresses are used to specify alternate paths to ther via firewalls, proxies + or similar network infrastructure. If these paths are specified in the configuration + file then the server will use the domain of the URL used by the client to determine + which, if any, or the alternate addresses to use instead of the primary addresses. + + In the ideal world the server would provide these URLs during registration but this + table allows the administrator to provide the information to the disovery server + directly without requiring a patch to the server. + + + + + A collection of AdditionalServerRegistrationInfo objects. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + A collection of values to add to this new collection + + is null. + + + + + Initializes the collection with the specified capacity. + + The capacity. + + + + Describes a certificate store. + + + Describes a certificate store. + + + + + The type of certificate store. + + + If the StoreName is not empty, the CertificateStoreType.X509Store is returned, otherwise the StoreType is returned. + + + + + The path that identifies the certificate store. + + + If the StoreName is not empty and the StoreLocation is empty, the Utils.Format("LocalMachine\\{0}", m_storeName) is returned. + If the StoreName is not empty and the StoreLocation is not empty, the Utils.Format("{1}\\{0}", m_storeName, m_storeLocation) is returned. + If the StoreName is empty, the m_storePath is returned. + + + + + The name of the certifcate store that contains the trusted certficates. + + + + + The location of the certifcate store that contains the trusted certficates. + + + + + Options that can be used to suppress certificate validation errors. + + + + + Creates a new object that is a copy of the current instance. + + + + + Formats the value of the current instance using the specified format. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Options that can be used to suppress certificate validation errors. + + + + + Detects the type of store represented by the path. + + + + + Returns an object that can be used to access the store. + + + + + Returns an object that can be used to access the store. + + + + + Opens the store. + + The path. + The store. + + + + A list of trusted certificates. + + + Administrators can create a list of trusted certificates by designating all certificates + in a particular certificate store as trusted and/or by explictly specifying a list of + individual certificates. + + A trust list can contain either instance certificates or certification authority certificates. + If the list contains instance certificates the application will trust peers that use the + instance certificate (provided the ApplicationUri and HostName match the certificate). + + If the list contains certification authority certificates then the application will trust + peers that have certificates issued by one of the authorities. + + Any certificate could be revoked by the issuer (CAs may issue certificates for other CAs). + The RevocationMode specifies whether this check should be done each time a certificate + in the list are used. + + + + + The default constructor. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + + + + The list of trusted certificates. + + + The list of trusted certificates is set when TrustedCertificates is not a null value, otherwise new CertificateIdentifierCollection is set. + + + + + Returns the certificates in the trust list. + + + + + A collection of CertificateIdentifier objects. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + A collection of values to add to this new collection + + + + Initializes the collection with the specified capacity. + + + + + Creates a new object that is a copy of the current instance. + + + A new object that is a copy of this instance. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Opens the store at the specified location. + + The location. + + The syntax depends on the store implementation. + + + + + Closes the store. + + + + + Enumerates the certificates in the store. + + + Identifiers which do not refer to valid certificates are ignored. + + The list of valid certificates in the store. + + + + Adds a certificate to the store. + + The certificate. + The password of the certificate. + + + + Deletes a certificate from the store. + + The thumbprint. + True if the certificate exists. + + + + Finds the certificate with the specified thumprint. + + The thumbprint. + The matching certificate + + + + Whether the store support CRLs. + + + + + Checks if issuer has revoked the certificate. + + + + + Returns the CRLs in the store. + + + + + Returns the CRLs for the issuer. + + + + + Adds a CRL to the store. + + + + + Removes a CRL from the store. + + + + + The identifier for an X509 certificate. + + + + + The default constructor. + + + + + Initializes the identifier with the raw data from a certificate. + + + + + Initializes the identifier with the raw data from a certificate. + + + + + Initializes the identifier with the raw data from a certificate. + + + + + Sets private members to default values. + + + + + Initializes the object during deserialization. + + + + + The type of certificate store. + + The type of the store - defined in the . + + + + The path that identifies the certificate store. + + The store path in the form StoreName\\Store Location . + + + + The name of the store that contains the certificate. + + The name of the store. + + + + + The location of the store that contains the certificate. + + The store location. + + + + + The certificate's subject name - the distinguished name of an X509 certificate. + + + The distinguished name of an X509 certificate acording to the Abstract Syntax Notation One (ASN.1) syntax. + + The subject field identifies the entity associated with the public key stored in the subject public + key field. The subject name MAY be carried in the subject field and/or the subjectAltName extension. + Where it is non-empty, the subject field MUST contain an X.500 distinguished name (DN). + Name is defined by the following ASN.1 structures: + Name ::= CHOICE {RDNSequence } + RDNSequence ::= SEQUENCE OF RelativeDistinguishedName + RelativeDistinguishedName ::= SET OF AttributeTypeAndValue + AttributeTypeAndValue ::= SEQUENCE {type AttributeType, value AttributeValue } + AttributeType ::= OBJECT IDENTIFIER + AttributeValue ::= ANY DEFINED BY AttributeType + DirectoryString ::= CHOICE { + teletexString TeletexString (SIZE (1..MAX)), + printableString PrintableString (SIZE (1..MAX)), + universalString UniversalString (SIZE (1..MAX)), + utf8String UTF8String (SIZE (1..MAX)), + bmpString BMPString (SIZE (1..MAX)) } + The Name describes a hierarchical name composed of attributes, such as country name, and + corresponding values, such as US. The type of the component AttributeValue is determined by + the AttributeType; in general it will be a DirectoryString. + String X.500 AttributeType: + + CN commonName + L localityName + ST stateOrProvinceName + O organizationName + OU organizationalUnitName + C countryName + STREET streetAddress + DC domainComponent + UID userid + + This notation is designed to be convenient for common forms of name. This section gives a few + examples of distinguished names written using this notation. First is a name containing three relative + distinguished names (RDNs): + CN=Steve Kille,O=Isode Limited,C=GB + + RFC 3280 Internet X.509 Public Key Infrastructure, April 2002 + RFC 2253 LADPv3 Distinguished Names, December 1997 + + + + + + + The certificate's thumbprint. + + The thumbprint of a certificate.. + + + + + Gets the DER encoded certificate data or create emebeded in this instance certifcate using the DER encoded certificate data. + + A byte array containing the X.509 certificate data. + + + + Gets or sets the XML encoded validation options - use to serialize the validation options. + + The XML encoded validation options. + + + + Formats the value of the current instance using the specified format. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Returns true if the objects are equal. + + + + + Returns a suitable hash code. + + + + + + Gets or sets the validation options. + + + The validation options that can be used to suppress certificate validation errors. + + + + + Gets or sets the actual certificate. + + The X509 certificate used by this instance. + + + + Finds a certificate in a store. + + + + + Loads the private key for the certificate with an optional password. + + + + + Loads the private key for the certificate with an optional password. + + + + + Finds a certificate in a store. + + if set to true the returned certificate must contain the private key. + An instance of the that is emebeded by this instance or find it in + the selected strore pointed out by the using selected . + + + + Updates the object from another object (usage is not updated). + + The certificate. + + + + Returns a display name for a certificate. + + The certificate. + + A string containg FriendlyName of the or created using Subject of + the . + + + + + Finds a certificate in the specified collection. + + The collection. + The thumbprint of the certificate. + Subject name of the certificate. + if set to true [need private key]. + + + + + Creates a DER blob from a certificate with zero or more supporting certificates. + + The certificates list to be returned as raw data. + + A DER blob containing zero or more certificates. + + If the is null or empty. + + + + Parses a blob with a list of DER encoded certificates. + + The encoded data. + + An object of containing + certificates created from a buffer with DER encoded certificate + + + Any supporting certificates found in the buffer are processed as well. + + + + + Returns an object that can be used to access the store containing the certificate. + + An instance of the poined out by the current value of + + + + Checks if the certificate data represents a valid X509v3 certificate. + + The raw data of a object. + + true if is a valid certificate BLOB; otherwise, false. + + + + + Stores a list of cached enpoints. + + + Stores a list of cached enpoints. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + A list of known hosts that can be used for discovery. + + + + + The default configuration to use when connecting to an endpoint. + + + + + The URL of the UA TCP proxy server. + + + + + Initializes the object with its default endpoint configuration. + + + + + Initializes the object from an application configuration. + + + + + Loads a collection of endpoints from a file and overrides the endpoint configuration. + + + + + Loads a collection of endpoints from a file and overrides the endpoint configuration. + + + + + Loads a collection of endpoints from a file. + + + + + Loads a collection of endpoints from a stream. + + + + + Saves a collection of endpoints the file that it was loaded from. + + + + + Saves a collection of endpoints to a file. + + + + + Saves a collection of endpoints to a stream. + + + + + Returns a deep copy of the collection. + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Gets or sets the at the specified index. + + The at the index + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies the elements of the to an , starting at a particular index. + + The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. + The zero-based index in at which copying begins. + + is null. + + is less than 0. + + is multidimensional.-or- is equal to or greater than the length of .-or-The number of elements in the source is greater than the available space from to the end of the destination ./>. + + + + Gets the number of elements contained in the . + + The number of elements contained in the . + + + + Gets a value indicating whether the is read-only. + + + true if the is read-only; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Add the endpoint description to the cache. + + + + + Add the endpoint description and configuration to the cache. + + + + + Adds a previous created endpoint to the collection. + + + + + Adds a previous created endpoint to the collection. + + + + + Removes the configured endpoint. + + + + + Removes all endpoints for the specified server. + + + + + Updates the server descrption for the endpoints. + + + + + Creates a new endpoint from a url that is not part of the collection. + + + Call the Add() method to add it to the collection. + + + + + Returns the configured endpoints for the server uri. + + + + + Returns the servers that are part of the collection. + + + + + Copies the endpoints. + + The server URI. + + + + + Updates an endpoint with information from the server's discovery endpoint. + + + + + A list of well known urls that can be used for discovery. + + + + + The default configuration for new ConfiguredEndpoints. + + + + + Throws exceptions if the endpoint is not valid. + + + + + Stores the configuration information for an endpoint. + + + Stores the configuration information for an endpoint. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + The description for the endpoint. + + + + + The configuration to use when connecting to an endpoint. + + + + + Whether the endpoint information should be updated before connecting to the server. + + + + + The user identity to use when connecting to the endpoint. + + + + + The user identity to use when connecting to the endpoint. + + + + + The user identity to use when connecting to the endpoint. + + + + + The reverse connect information. + + + + + A bucket to store additional application specific configuration data. + + + + + Creates a configured endpoint from the server description. + + + + + The default constructor. + + + + + The default constructor. + + + + + Returns a deep copy of the endpoint. + + + + + Returns the string representation of the object. + + + + + Returns the string representation of the object. + + (Unused). Always pass NULL/NOTHING + (Unused). Always pass NULL/NOTHING + Thrown if non-null parameters are used + + + + Determine if an update of the endpoint from the server is needed. + + + + + Updates the endpoint description. + + + + + Updates the endpoint description. + + + + + Updates the endpoint configuration. + + + + + Updates an endpoint with information from the server's discovery endpoint. + + + + + Updates an endpoint with information from the server's discovery endpoint. + + + + + Updates an endpoint with information from the server's discovery endpoint. + + + + + Updates an endpoint with information from the server's discovery endpoint. + + + + + Updates an endpoint with information from the server's discovery endpoint. + + + + + Updates an endpoint with information from the server's discovery endpoint. + + + + + Returns a discovery url that can be used to update the endpoint description. + + + + + Parses the extension. + + The type of extension. + Name of the element (null means use type name). + The extension if found. Null otherwise. + + + + Updates the extension. + + The type of extension. + Name of the element (null means use type name). + The value. + + + + The collection that the endpoint belongs to. + + + + + The URL used to create a sessions. + + + + + The user identity to use when connecting to the endpoint. + + + + + Select the best match from a security description. + + + + + The type of binary encoding support allowed by a channel. + + + + + The UA binary encoding may be used. + + + + + The UA binary encoding must be used. + + + + + The UA binary encoding may not be used. + + + + + Stores the reverse connect information for an endpoint. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + Whether reverse connect is enabled for the endpoint. + + + + + The server Uri of the endpoint. + + + + + The thumbprint of the certificate which contains + the server Uri. + + + + + Stores the security settings for an application. + + + + + The name of the application. + + + + + The uri of the application. + + + + + A store of certificates trusted by the application. + + + + + A list of certificates trusted by the application. + + + + + A store of certificate issuers used by the application. + + + + + A list of certificate issuers used by the application. + + + + + Casts a ApplicationType value. + + + + + Casts a ApplicationType value. + + + + + Creates a CertificateIdentifier object. + + + + + Creates a CertificateIdentifier object. + + + + + Creates a CertificateStoreIdentifier object. + + + + + Creates a CertificateTrustList object. + + + + + Creates a CertificateStoreIdentifier object. + + + + + Creates a CertificateTrustList object. + + + + + Creates a CertificateList object. + + + + + Creates a CertificateIdentifierCollection object. + + + + + Creates a ListOfBaseAddresses object. + + + + + Creates a ListOfBaseAddresses object. + + + + + Creates a ListOfSecurityProfiles object. + + + + + Creates a ServerSecurityPolicyCollection object. + + + + + Creates a new policy object. + Always uses sign and encrypt for all security policies except none + + + + + Creates a new policy object. + + + + + An identifier for a certificate. + + + + + Gets the certificate associated with the identifier. + + + + + Gets the certificate associated with the identifier. + + + + + Opens the certificate store. + + + + + An identifier for a certificate store. + + + + + Opens the certificate store. + + + + + A class which is used to report events which have security implications. + + + + + Called when a secure channel is created by the client. + + Information about the secure channel implementation. + The identifier assigned to the secure channel + The identifier assigned to the secure channel + The endpoint. + The client certificate. + The server certificate. + The type of encoding supported by the channel. + + + + Called when a secure channel is renewed by the client. + + Information about the secure channel implementation. + The identifier assigned to the secure channel. + + + + Implemented by types that have knownledge of an application configuration. + + + + + Exports the security configuration for an application identified by a file or url. + + The file path. + The security configuration. + + + + Updates the security configuration for an application identified by a file or url. + + The file path. + The configuration. + + + + A class used to create instances of ISecurityConfigurationManager. + + + + + Returns an instance of the type identified by the assembly qualified name. + + Name of the type. + The new instance. + + + + Provides access to security configuration for windows based .NET application. + + + + + Exports the security configuration for an application identified by a file or url. + + The file path. + The security configuration. + + + + Finds the specified parent. + + The parent. + Name of the local. + The namespace URI. + + + + + Updates the security configuration for an application identified by a file or url. + + The file path. + The configuration. + + + + Updates the XML document with the new configuration information. + + + + + Reads an object from the body of an XML element. + + + + + Reads an object from the body of an XML element. + + + + + + A set of nodes in an address space. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates an empty nodeset. + + + + + Loads a nodeset from a stream. + + The input stream. + The set of nodes + + + + Write a nodeset to a stream. + + The input stream. + + + + Adds an alias to the node set. + + + + + Imports a node from the set. + + + + + Adds a node to the set. + + + + + Creates an encoder to save Variant values. + + + + + Creates an decoder to restore Variant values. + + + + + Imports a node from the set. + + + + + Exports a NodeId as an alias. + + + + + Exports a NodeId + + + + + Imports a NodeId + + + + + Exports a ExpandedNodeId + + + + + Imports a ExpandedNodeId + + + + + Exports a QualifiedName + + + + + Exports a DataTypeDefinition + + + + + Imports a DataTypeDefinition + + + + + Imports a QualifiedName + + + + + Exports the array dimensions. + + + + + Imports the array dimensions. + + + + + Exports localized text. + + + + + Exports localized text. + + + + + Imports localized text. + + + + + Exports a namespace index. + + + + + Exports a namespace index. + + + + + Exports a namespace uri. + + + + + Exports a server index. + + + + + Exports a server index. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates certificates. + + + + + The default key size for RSA certificates in bits. + + + Supported values are 1024(deprecated), 2048, 3072 or 4096. + + + + + The default hash size for RSA certificates in bits. + + + Supported values are 160 for SHA-1(deprecated) or 256, 384 and 512 for SHA-2. + + + + + The default lifetime of certificates in months. + + + + + Creates a certificate from a buffer with DER encoded certificate. + + The encoded data. + if set to true the copy of the certificate in the cache is used. + The certificate. + + + + Loads the cached version of a certificate. + + The certificate to load. + If true a key container is created for a certificate that must be deleted by calling Cleanup. + The cached certificate. + + This function is necessary because all private keys used for cryptography + operations must be in a key container. + Private keys stored in a PFX file have no key container by default. + + + + + Create a certificate for any use. + + The subject of the certificate + Return the Certificate builder. + + + + Create a certificate for an OPC UA application. + + The application Uri + The friendly name of the application + The subject of the certificate + The domain names for the alt name extension + + Return the Certificate builder with X509 Subject Alt Name extension + to create the certificate. + + + + + Creates a self-signed, signed or CA certificate. + + Type of certificate store (Directory) . + The store path (syntax depends on storeType). + The password to use to protect the certificate. + The application uri (created if not specified). + Name of the application (optional if subjectName is specified). + The subject used to create the certificate (optional if applicationName is specified). + The domain names that can be used to access the server machine (defaults to local computer name if not specified). + Size of the key (1024, 2048 or 4096). + The start time. + The lifetime of the key in months. + The hash size in bits. + if set to true then a CA certificate is created. + The CA cert with the CA private key. + The public key if no new keypair is created. + The path length constraint for CA certs. + The certificate with a private key. + + + + Revoke the certificate. + The CRL number is increased by one and the new CRL is returned. + + + + + Revoke the certificates. + + + Merge all existing revoked certificates from CRL list. + Add serialnumbers of new revoked certificates. + The CRL number is increased by one and the new CRL is returned. + + + + + Creates a certificate signing request from an existing certificate. + + + + + Create a X509Certificate2 with a private key by combining + the new certificate with a private key from an existing certificate + + + + + Create a X509Certificate2 with a private key by combining + the certificate with a private key from a PEM stream + + + + + Creates a self-signed, signed or CA certificate. + + The application uri (created if not specified). + Name of the application (optional if subjectName is specified). + The subject used to create the certificate (optional if applicationName is specified). + The domain names that can be used to access the server machine (defaults to local computer name if not specified). + Size of the key (1024, 2048 or 4096). + The start time. + The lifetime of the key in months. + The hash size in bits. + if set to true then a CA certificate is created. + The CA cert with the CA private key. + The public key if no new keypair is created. + The path length constraint for CA certs. + The certificate with a private key. + + + + Sets the parameters to suitable defaults. + + + + + Options that can be used to suppress certificate validation errors. + + + + + Use the default options. + + + + + Ignore expired certificates. + + + + + Ignore mismatches between the URL and the DNS names in the certificate. + + + + + Ignore errors when it is not possible to check the revocation status for a certificate. + + + + + Attempt to check the revocation status online. + + + + + Attempt to check the revocation status offline. + + + + + Never trust the certificate. + + + + + An interface for a password provider for certificate private keys. + + + + + Return the password for a certificate private key. + + The certificate identifier for which the password is needed. + + + + The default certificate password provider implementation. + + + + + Constructor which takes a password string. + + + + + + Return the password used for the certificate. + + + + + The type of certificate store. + + + + + A windows certificate store. + + + + + A directory certificate store. + + + + + Validates certificates. + + + + + The default constructor. + + + + + Raised when a certificate validation error occurs. + + + + + Raised when an application certificate update occurs. + + + + + Updates the validator with the current state of the configuration. + + + + + Updates the validator with a new set of trust lists. + + + + + Updates the validator with the current state of the configuration. + + + + + Updates the validator with a new application certificate. + + + + + Validates the specified certificate against the trust list. + + The certificate. + + + + Validates a certificate. + + + Each UA application may have a list of trusted certificates that is different from + all other UA applications that may be running on the same machine. As a result, the + certificate validator cannot rely completely on the Windows certificate store and + user or machine specific CTLs (certificate trust lists). + + The validator constructs the trust chain for the certificate and follows the chain + until it finds a certification that is in the application trust list. Non-fatal trust + chain errors (i.e. certificate expired) are ignored if the certificate is in the + application trust list. + + If no certificate in the chain is trusted then the validator will still accept the + certification if there are no trust chain errors. + + The validator may be configured to ignore the application trust list and/or trust chain. + + + + + Validates a certificate with domain validation check. + + + + + + recursively checks whether any of the service results or inner service results + of the input sr must not be suppressed. + The list of supressible status codes is - for backwards compatibiliyt - longer + than the spec would imply. + (BadCertificateUntrusted and BadCertificateChainIncomplete + must not be supressed according to (e.g.) version 1.04 of the spec) + + + + + + List all reasons for failing cert validation. + + + + + Saves the certificate in the rejected certificate store. + + + + + Returns the certificate information for a trusted peer certificate. + + + + + Returns true if the certificate matches the criteria. + + + + + Returns the issuers for the certificates. + + + + + Returns the issuers for the certificate. + + The certificate. + The issuers. + + + + + Returns the certificate information for a trusted issuer certificate. + + + + + Throws an exception if validation fails. + + The certificates to be checked. + The endpoint for domain validation. + If certificate[0] cannot be accepted + + + + Returns an object that can be used with a UA channel. + + + + + Validate domains in a server certificate against endpoint used to connect a session. + + The server certificate returned by a session connect. + The endpoint used to connect to a server. + + + + Returns an error if the chain status indicates a fatal error. + + + + + Returns if a certificate is signed with a SHA1 algorithm. + + + + + Returns a certificate information message. + + + + + Returns if a self signed certificate is properly signed. + + + + + The list of suppressible status codes. + + + + + Find the domain in a certificate in the + endpoint that was used to connect a session. + + The server certificate which is tested for domain names. + The endpoint which was used to connect. + True if domain was found. + + + + The event arguments provided when a certificate validation error occurs. + + + + + Creates a new instance. + + + + + The error that occurred. + + + + + The certificate. + + + + + Whether the current error reported for + a certificate should be accepted and suppressed. + + + + + Whether all the errors reported for + a certificate should be accepted and suppressed. + + + + + Used to handled certificate validation errors. + + + + + The event arguments provided when a certificate validation error occurs. + + + + + Creates a new instance. + + + + + The new security configuration. + + + + + The new certificate validator. + + + + + Used to handle certificate update events. + + + + + Provides access to a simple file based certificate store. + + + + + Initializes a store with the specified directory path. + + + + + May be called by the application to clean up resources. + + + + + Cleans up all resources held by the object. + + + + + The directory containing the certificate store. + + + + + Gets or sets a value indicating whether any private keys are found in the store. + + + true if [no private keys]; otherwise, false. + + + + + + + + + + + + + + + + + + + + + + + Returns the path to the public key file. + + The thumbprint of the certificate. + The path. + + + + Returns the path to the private key file. + + The thumbprint of the certificate. + The path. + + + + Loads the private key from a PFX file in the certificate store. + + + + + Checks if issuer has revoked the certificate. + + + + + Whether the the store support CRLs. + + + + + Returns the CRLs in the store. + + + + + Returns the CRLs for the issuer. + + + + + Adds a CRL to the store. + + + + + Removes a CRL from the store. + + + + + Reads the current contents of the directory from disk. + + + + + Finds the public key for the certificate. + + + + + Returns the file name to use for the certificate. + + + + + Writes the data to a file. + + + + + Stores a block of encypted data. + + + + + The algorithm used to encrypt the data. + + + + + The encrypted data. + + + + + An abstract interface to certficate stores. + + + + + Opens the store at the specified location. + + The location. + + The syntax depends on the store implementation. + + + + + Closes the store. + + + + + Enumerates the certificates in the store. + + + + + Adds a certificate to the store. + + The certificate. + The certificate password. + + + + Deletes a certificate from the store. + + The thumbprint. + True if the certificate exists. + + + + Finds the certificate with the specified thumprint. + + The thumbprint. + The matching certificate + + + + Checks if issuer has revoked the certificate. + + + + + Whether the store supports CRLs. + + + + + Returns the CRLs in the store. + + + + + Returns the CRLs for the issuer. + + + + + Adds a CRL to the store. + + + + + Removes a CRL from the store. + + + + + An abstract interface to the certificate validator. + + + + + Validates a certificate. + + + + + Defines internal functions to implement RSA cryptography. + + + + + Return the plaintext block size for RSA OAEP encryption. + + + + + Return the plaintext block size for RSA OAEP encryption. + + + + + Return the ciphertext block size for RSA OAEP encryption. + + + + + Return the ciphertext block size for RSA OAEP encryption. + + + + + Returns the length of a RSA PKCS#1 v1.5 signature of a digest. + + + + + Computes a RSA signature. + + + + + Verifies a RSA signature. + + + + + Encrypts the data using RSA encryption. + + + + + Encrypts the data using RSA PKCS#1 v1.5 or OAEP encryption. + + + + + Decrypts the data using RSA encryption. + + + + + Decrypts the message using RSA encryption. + + + + + Helper to test for RSASignaturePadding.Pss support, some platforms do not support it. + + + + + Lazy helper to allow runtime to check for Pss support. + + + + + Dispose RSA object only if not running on Mono runtime. + Workaround due to a Mono bug in the X509Certificate2 implementation of RSA. + see also: https://github.com/mono/mono/issues/6306 + On Mono GetRSAPrivateKey/GetRSAPublickey returns a reference instead of a disposable object. + Calling Dispose on RSA makes the X509Certificate2 keys unusable on Mono. + Only call dispose when using .Net and .Net Core runtimes. + + RSA object returned by GetRSAPublicKey/GetRSAPrivateKey + + + + Provides access to a simple X509Store based certificate store. + + + + + Create an instance of the certificate store. + + + + + + + + Dispose method for derived classes. + + + + + + Syntax: StoreLocation\StoreName + Example: + CurrentUser\My + + + + + + + + + + + + + + + + + + + + CRLs are not supported here. + + + + CRLs are not supported here. + + + + CRLs are not supported here. + + + + CRLs are not supported here. + + + + CRLs are not supported here. + + + + CRLs are not supported here. + + + + Utility functions for X509 certificates. + + + + + Extracts the DNS names specified in the certificate. + + The certificate. + The DNS names. + + + + Returns the size of the public key and disposes RSA key. + + The certificate + + + + Extracts the application URI specified in the certificate. + + The certificate. + The application URI. + + + + Check if certificate has an application urn. + + The certificate. + true if the application URI starts with urn: + + + + Checks that the domain in the URL provided matches one of the domains in the certificate. + + The certificate. + The endpoint url to verify. + True if the certificate matches the url. + + + + Determines whether the certificate is allowed to be an issuer. + + + + + Determines whether the certificate is issued by a Certificate Authority. + + + + + Return the key usage flags of a certificate. + + + + + Compares two distinguished names. + + + + + Compares two distinguished names. + + + + + Parses a distingushed name. + + + + + Verify RSA key pair of two certificates. + + + + + Verify the signature of a self signed certificate. + + + + + Creates a certificate from a PKCS #12 store with a private key. + + The raw PKCS #12 store data. + The password to use to access the store. + The certificate with a private key. + + + + Get the certificate by issuer and serial number. + + + + + Extension to add a certificate to a . + + + Saves also the private key, if available. + If written to a Pfx file, the password is used for protection. + + The certificate to store. + Type of certificate store (Directory) . + The store path (syntax depends on storeType). + The password to use to protect the certificate. + + + + + Get the hash algorithm from the hash size in bits. + + + + + + Defines constants for key security policies. + + + + + The HMAC-SHA1 algorithm used to create symmetric key signatures. + + + + + The HMAC-SHA256 algorithm used to create symmetric key signatures. + + + + + The RSA-SHA1 algorithm used to create asymmetric key signatures. + + + + + The RSA-SHA256 algorithm used to create asymmetric key signatures. + + + + + The RSA-PSS-SHA256 algorithm used to create asymmetric key signatures. + + + + + The AES128 algorithm used to encrypt data. + + + + + The AES256 algorithm used to encrypt data. + + + + + The RSA-OAEP algorithm used to encrypt data. + + + + + The RSA-OAEP-SHA256 algorithm used to encrypt data. + + + + + The RSA-PKCSv1.5 algorithm used to encrypt data. + + + + + The RSA-PKCSv1.5 SHA256 algorithm used to encrypt data. + + + + + The RSA-OAEP algorithm used to encrypt keys. + + + + + The RSA-PKCSv1.5 algorithm used to encrypt keys. + + + + + The P-SHA1 algorithm used to generate keys. + + + + + The P-SHA256 algorithm used to generate keys. + + + + + Common profiles that UA applications may support. + + + + + Communicates with UA TCP, UA Security and UA Binary. + + + + + Communicates with UA TCP over secure Websockets, UA Security and UA Binary. + + + + + Communicates with UA Binary over HTTPS. + + + + + Communicates with PubSub for UADP transport protocol. + + + + + An Issued User Token that complies with the JWT specification. + + + + + Converts the URI to a URI that can be used for comparison. + + The profile URI. + The normalixed URI. + + + + Defines constants for key security policies. + + + + + The base URI for all policy URIs. + + + + + The URI for a policy that uses no security. + + + + + The URI for the Basic128Rsa15 security policy. + + + + + The URI for the Basic256 security policy. + + + + + The URI for the Aes128_Sha256_RsaOaep security policy. + + + + + The URI for the Basic256Sha256 security policy. + + + + + The URI for the Aes256_Sha256_RsaPss security policy. + + + + + The URI for the Https security policy. + + + + + Returns the uri associated with the display name. + + + + + Returns a display name for a security policy uri. + + + + + Returns the display names for all security policy uris. + + + + + Returns the default security policy uri. + + + + + Encrypts the text using the SecurityPolicyUri and returns the result. + + + + + Decrypts the CipherText using the SecurityPolicyUri and returns the PlainTetx. + + + + + Signs the data using the SecurityPolicyUri and returns the signature. + + + + + Verifies the signature using the SecurityPolicyUri and return true if valid. + + + + + The client side interface with a UA server. + + + + + Intializes the object with a channel and a message context. + + The channel. + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + The description of the endpoint. + + + + + The configuration for the endpoint. + + + + + The message context used when serializing messages. + + The message context. + + + + Gets or set the channel being wrapped by the client object. + + The transport channel. + + + + The channel being wrapped by the client object. + + + + + What diagnostics the server should return in the response. + + The diagnostics. + + + + Sets the timeout for an operation. + + + + + Gets a value that indicates whether to use the TransportChannel when sending requests. + + + + + Closes the channel. + + + + + Whether the object has been disposed. + + true if disposed; otherwise, false. + + + + Generates a unique request handle. + + + + + Closes the channel. + + + + + Disposes the channel. + + + + + An object used to synchronize access to the session state. + + The synchronization object. + + + + The authorization token used to connect to the server. + + The authentication token. + + + + Updates the header of a service request. + + The request. + + + + Updates the header of a service request. + + The request. + if set to true use defaults]. + + + + Updates the header of a service request. + + The request. + if set to true the no request header was provided. + The name of the service. + + + + Called when a request completes. + + The request. + The response. + The name of the service. + + + + Creates an audit log entry for the request. + + The request. + log entry + + + + Throws an exception if a response contains an error. + + The header. + + + + Validates a response returned by the server. + + The response. + The request. + + + + Validates a response returned by the server. + + The response. + The request. + + + + Converts a service response to a ServiceResult object. + + The status code. + The index. + The diagnostic information. + The response header. + Converted service response. + + + + Validates a DataValue returned from the server. + + The value. + The expected type. + The index. + The diagnostic information. + The response header. + Result of the vaidation + + + + The client side interface with a UA server. + + + The client side interface for a UA server. + + + + + + An overrideable version of the Dispose. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + The server assigned identifier for the current session. + + The session id. + + + + Whether a session has beed created with the server. + + true if connected; otherwise, false. + + + + Called when a new session is created. + + The session id. + The session cookie. + + + + Intializes the object with a channel and a message context. + + + + + The component contains classes object use to communicate with the server. + + + + + Invokes the CreateSession service. + + + + + Begins an asynchronous invocation of the CreateSession service. + + + + + Finishes an asynchronous invocation of the CreateSession service. + + + + + Invokes the ActivateSession service. + + + + + Begins an asynchronous invocation of the ActivateSession service. + + + + + Finishes an asynchronous invocation of the ActivateSession service. + + + + + Invokes the CloseSession service. + + + + + Begins an asynchronous invocation of the CloseSession service. + + + + + Finishes an asynchronous invocation of the CloseSession service. + + + + + Invokes the Cancel service. + + + + + Begins an asynchronous invocation of the Cancel service. + + + + + Finishes an asynchronous invocation of the Cancel service. + + + + + Invokes the AddNodes service. + + + + + Begins an asynchronous invocation of the AddNodes service. + + + + + Finishes an asynchronous invocation of the AddNodes service. + + + + + Invokes the AddReferences service. + + + + + Begins an asynchronous invocation of the AddReferences service. + + + + + Finishes an asynchronous invocation of the AddReferences service. + + + + + Invokes the DeleteNodes service. + + + + + Begins an asynchronous invocation of the DeleteNodes service. + + + + + Finishes an asynchronous invocation of the DeleteNodes service. + + + + + Invokes the DeleteReferences service. + + + + + Begins an asynchronous invocation of the DeleteReferences service. + + + + + Finishes an asynchronous invocation of the DeleteReferences service. + + + + + Invokes the Browse service. + + + + + Begins an asynchronous invocation of the Browse service. + + + + + Finishes an asynchronous invocation of the Browse service. + + + + + Invokes the BrowseNext service. + + + + + Begins an asynchronous invocation of the BrowseNext service. + + + + + Finishes an asynchronous invocation of the BrowseNext service. + + + + + Invokes the TranslateBrowsePathsToNodeIds service. + + + + + Begins an asynchronous invocation of the TranslateBrowsePathsToNodeIds service. + + + + + Finishes an asynchronous invocation of the TranslateBrowsePathsToNodeIds service. + + + + + Invokes the RegisterNodes service. + + + + + Begins an asynchronous invocation of the RegisterNodes service. + + + + + Finishes an asynchronous invocation of the RegisterNodes service. + + + + + Invokes the UnregisterNodes service. + + + + + Begins an asynchronous invocation of the UnregisterNodes service. + + + + + Finishes an asynchronous invocation of the UnregisterNodes service. + + + + + Invokes the QueryFirst service. + + + + + Begins an asynchronous invocation of the QueryFirst service. + + + + + Finishes an asynchronous invocation of the QueryFirst service. + + + + + Invokes the QueryNext service. + + + + + Begins an asynchronous invocation of the QueryNext service. + + + + + Finishes an asynchronous invocation of the QueryNext service. + + + + + Invokes the Read service. + + + + + Begins an asynchronous invocation of the Read service. + + + + + Finishes an asynchronous invocation of the Read service. + + + + + Invokes the HistoryRead service. + + + + + Begins an asynchronous invocation of the HistoryRead service. + + + + + Finishes an asynchronous invocation of the HistoryRead service. + + + + + Invokes the Write service. + + + + + Begins an asynchronous invocation of the Write service. + + + + + Finishes an asynchronous invocation of the Write service. + + + + + Invokes the HistoryUpdate service. + + + + + Begins an asynchronous invocation of the HistoryUpdate service. + + + + + Finishes an asynchronous invocation of the HistoryUpdate service. + + + + + Invokes the Call service. + + + + + Begins an asynchronous invocation of the Call service. + + + + + Finishes an asynchronous invocation of the Call service. + + + + + Invokes the CreateMonitoredItems service. + + + + + Begins an asynchronous invocation of the CreateMonitoredItems service. + + + + + Finishes an asynchronous invocation of the CreateMonitoredItems service. + + + + + Invokes the ModifyMonitoredItems service. + + + + + Begins an asynchronous invocation of the ModifyMonitoredItems service. + + + + + Finishes an asynchronous invocation of the ModifyMonitoredItems service. + + + + + Invokes the SetMonitoringMode service. + + + + + Begins an asynchronous invocation of the SetMonitoringMode service. + + + + + Finishes an asynchronous invocation of the SetMonitoringMode service. + + + + + Invokes the SetTriggering service. + + + + + Begins an asynchronous invocation of the SetTriggering service. + + + + + Finishes an asynchronous invocation of the SetTriggering service. + + + + + Invokes the DeleteMonitoredItems service. + + + + + Begins an asynchronous invocation of the DeleteMonitoredItems service. + + + + + Finishes an asynchronous invocation of the DeleteMonitoredItems service. + + + + + Invokes the CreateSubscription service. + + + + + Begins an asynchronous invocation of the CreateSubscription service. + + + + + Finishes an asynchronous invocation of the CreateSubscription service. + + + + + Invokes the ModifySubscription service. + + + + + Begins an asynchronous invocation of the ModifySubscription service. + + + + + Finishes an asynchronous invocation of the ModifySubscription service. + + + + + Invokes the SetPublishingMode service. + + + + + Begins an asynchronous invocation of the SetPublishingMode service. + + + + + Finishes an asynchronous invocation of the SetPublishingMode service. + + + + + Invokes the Publish service. + + + + + Begins an asynchronous invocation of the Publish service. + + + + + Finishes an asynchronous invocation of the Publish service. + + + + + Invokes the Republish service. + + + + + Begins an asynchronous invocation of the Republish service. + + + + + Finishes an asynchronous invocation of the Republish service. + + + + + Invokes the TransferSubscriptions service. + + + + + Begins an asynchronous invocation of the TransferSubscriptions service. + + + + + Finishes an asynchronous invocation of the TransferSubscriptions service. + + + + + Invokes the DeleteSubscriptions service. + + + + + Begins an asynchronous invocation of the DeleteSubscriptions service. + + + + + Finishes an asynchronous invocation of the DeleteSubscriptions service. + + + + + An object used by clients to access a UA discovery service. + + + The client side interface for a UA server. + + + + + + Creates a binding for to use for discovering servers. + + + + + Creates a binding for to use for discovering servers. + + + + + Creates a binding for to use for discovering servers. + + + + + Creates a binding for to use for discovering servers. + + The discovery URL. + + + + + Creates a binding for to use for discovering servers. + + The discovery URL. + The configuration. + + + + + Creates a binding for to use for discovering servers. + + + + + Creates a binding for to use for discovering servers. + + The discovery URL. + The endpoint configuration. + /// The application configuration. + + + + + Invokes the GetEndpoints service. + + The collection of profile URIs. + + + + + Invokes the GetEndpoints service async. + + The collection of profile URIs. + + + + + Invokes the FindServers service. + + The collection of server URIs. + + + + + Invokes the FindServersOnNetwork service. + + + + + + + + + + Helper to get endpoints async. + + + + + Patch returned endpoints urls with url used to reached the endpoint. + + + + + Intializes the object with a channel and a message context. + + + + + The component contains classes object use to communicate with the server. + + + + + Invokes the FindServers service. + + + + + Begins an asynchronous invocation of the FindServers service. + + + + + Finishes an asynchronous invocation of the FindServers service. + + + + + Invokes the FindServersOnNetwork service. + + + + + Begins an asynchronous invocation of the FindServersOnNetwork service. + + + + + Finishes an asynchronous invocation of the FindServersOnNetwork service. + + + + + Invokes the GetEndpoints service. + + + + + Begins an asynchronous invocation of the GetEndpoints service. + + + + + Finishes an asynchronous invocation of the GetEndpoints service. + + + + + A channel object used by clients to access a UA discovery service. + + + A channel object used by clients to access a UA service. + + + + + + Creates a new transport channel that supports the ISessionChannel service contract. + + The discovery url. + The configuration to use with the endpoint. + The message context to use when serializing the messages. + The client certificate to use. + + + + + Creates a new transport channel that supports the ITransportWaitingConnection service contract. + + + + + Creates a new transport channel that supports the IDiscoveryChannel service contract. + + + + + Initializes the object with the endpoint address. + + + + + The client side implementation of the FindServers service contract. + + + + + The client side implementation of the BeginFindServers service contract. + + + + + The client side implementation of the EndFindServers service contract. + + + + + The client side implementation of the FindServersOnNetwork service contract. + + + + + The client side implementation of the BeginFindServersOnNetwork service contract. + + + + + The client side implementation of the EndFindServersOnNetwork service contract. + + + + + The client side implementation of the GetEndpoints service contract. + + + + + The client side implementation of the BeginGetEndpoints service contract. + + + + + The client side implementation of the EndGetEndpoints service contract. + + + + + The base interface for client proxies. + + + + + Gets the endpoint that the channel is connected to. + + + + + Gets the endpoint configuration used when the channel was connected. + + + + + Gets the message context to use with the service. + + + + + Returns true if the channel uses the UA Binary encoding. + + + + + Opens the channel with the server. + + + + + Closes the channel with the server. + + + + + Schedules an outgoing request. + + The request. + + + + The operation contract for the InvokeService service. + + + + + The operation contract for the InvokeService service. + + + + + The method used to retrieve the results of a InvokeService service request. + + + + + An interface to an object that manages a request received from a client. + + + + + Gets the request. + + The request. + + + + Gets the handler that must be used to send the request. + + The send request handler. + + + + Used to call the default synchronous handler. + + + This method may block the current thread so the caller must not call in the + thread that calls IServerBase.ScheduleIncomingRequest(). + This method always traps any exceptions and reports them to the client as a fault. + + + + + Used to indicate that the asynchronous operation has completed. + + The response. May be null if an error is provided. + An error to result as a fault. + + + + A delegate used to dispatch outgoing service requests. + + + + + The message contract for the InvokeService service. + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + The invoke service request. + + + + The message contract for the InvokeService service response. + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + The invoke service response. + + + + An interface to a service request. + + + + + The header for the request. + + The request header. + + + + An interface to a service response. + + + + + The header for the response. + + The response header. + + + + An interface to a service message. + + + + + Returns the request contained in the message. + + + + + + Creates an instance of a response message. + + The response. + + + + + An interface to an object with stores the identity of a user. + + + + + A display name that identifies the user. + + The display name. + + + + The user token policy. + + The user token policy. + + + + The type of identity token used. + + The type of the token. + + + + The type of issued token. + + The type of the issued token. + + + + Whether the object can create signatures to prove possession of the user's credentials. + + true if signatures are supported; otherwise, false. + + + + Get or sets the list of granted role ids associated to the UserIdentity. + + + + + Returns a UA user identity token containing the user information. + + UA user identity token containing the user information. + + + + An object used by clients to access a UA discovery service. + + + The client side interface for a UA server. + + + + + + Creates a binding for to use for discovering servers. + + The configuration. + The description. + The endpoint configuration. + The instance certificate. + + + + + Intializes the object with a channel and a message context. + + + + + The component contains classes object use to communicate with the server. + + + + + Invokes the RegisterServer service. + + + + + Begins an asynchronous invocation of the RegisterServer service. + + + + + Finishes an asynchronous invocation of the RegisterServer service. + + + + + Invokes the RegisterServer2 service. + + + + + Begins an asynchronous invocation of the RegisterServer2 service. + + + + + Finishes an asynchronous invocation of the RegisterServer2 service. + + + + + A channel object used by clients to access a UA discovery service. + + + A channel object used by clients to access a UA service. + + + + + + Creates a new transport channel that supports the IRegistrationChannel service contract. + + The application configuration. + The description for the endpoint. + The configuration to use with the endpoint. + The client certificate. + The message context to use when serializing the messages. + + + + + Initializes the object with the endpoint address. + + + + + The client side implementation of the RegisterServer service contract. + + + + + The client side implementation of the BeginRegisterServer service contract. + + + + + The client side implementation of the EndRegisterServer service contract. + + + + + The client side implementation of the RegisterServer2 service contract. + + + + + The client side implementation of the BeginRegisterServer2 service contract. + + + + + The client side implementation of the EndRegisterServer2 service contract. + + + + + Reverse Connect Client Host. + + + + + Creates a new reverse listener host for a client. + + + + + The Url which is used by the transport listener. + + + + + Opens a reverse listener host. + + + + + Close the reverse connect listener. + + + + + A channel object used by clients to access a UA service. + + + A channel object used by clients to access a UA service. + + + + + + Creates a new transport channel that supports the ISessionChannel service contract. + + The application configuration. + The description for the endpoint. + The configuration to use with the endpoint. + The client certificate. + The message context to use when serializing the messages. + + + + + Creates a new transport channel that supports the ISessionChannel service contract. + + The application configuration. + The description for the endpoint. + The configuration to use with the endpoint. + The client certificate. + The client certificate chain. + The message context to use when serializing the messages. + + + + + Creates a new transport channel that supports the ISessionChannel service contract. + + The application configuration. + + The description for the endpoint. + The configuration to use with the endpoint. + The client certificate. + The client certificate chain. + The message context to use when serializing the messages. + + + + + Initializes the object with the endpoint address. + + + + + The client side implementation of the CreateSession service contract. + + + + + The client side implementation of the BeginCreateSession service contract. + + + + + The client side implementation of the EndCreateSession service contract. + + + + + The client side implementation of the ActivateSession service contract. + + + + + The client side implementation of the BeginActivateSession service contract. + + + + + The client side implementation of the EndActivateSession service contract. + + + + + The client side implementation of the CloseSession service contract. + + + + + The client side implementation of the BeginCloseSession service contract. + + + + + The client side implementation of the EndCloseSession service contract. + + + + + The client side implementation of the Cancel service contract. + + + + + The client side implementation of the BeginCancel service contract. + + + + + The client side implementation of the EndCancel service contract. + + + + + The client side implementation of the AddNodes service contract. + + + + + The client side implementation of the BeginAddNodes service contract. + + + + + The client side implementation of the EndAddNodes service contract. + + + + + The client side implementation of the AddReferences service contract. + + + + + The client side implementation of the BeginAddReferences service contract. + + + + + The client side implementation of the EndAddReferences service contract. + + + + + The client side implementation of the DeleteNodes service contract. + + + + + The client side implementation of the BeginDeleteNodes service contract. + + + + + The client side implementation of the EndDeleteNodes service contract. + + + + + The client side implementation of the DeleteReferences service contract. + + + + + The client side implementation of the BeginDeleteReferences service contract. + + + + + The client side implementation of the EndDeleteReferences service contract. + + + + + The client side implementation of the Browse service contract. + + + + + The client side implementation of the BeginBrowse service contract. + + + + + The client side implementation of the EndBrowse service contract. + + + + + The client side implementation of the BrowseNext service contract. + + + + + The client side implementation of the BeginBrowseNext service contract. + + + + + The client side implementation of the EndBrowseNext service contract. + + + + + The client side implementation of the TranslateBrowsePathsToNodeIds service contract. + + + + + The client side implementation of the BeginTranslateBrowsePathsToNodeIds service contract. + + + + + The client side implementation of the EndTranslateBrowsePathsToNodeIds service contract. + + + + + The client side implementation of the RegisterNodes service contract. + + + + + The client side implementation of the BeginRegisterNodes service contract. + + + + + The client side implementation of the EndRegisterNodes service contract. + + + + + The client side implementation of the UnregisterNodes service contract. + + + + + The client side implementation of the BeginUnregisterNodes service contract. + + + + + The client side implementation of the EndUnregisterNodes service contract. + + + + + The client side implementation of the QueryFirst service contract. + + + + + The client side implementation of the BeginQueryFirst service contract. + + + + + The client side implementation of the EndQueryFirst service contract. + + + + + The client side implementation of the QueryNext service contract. + + + + + The client side implementation of the BeginQueryNext service contract. + + + + + The client side implementation of the EndQueryNext service contract. + + + + + The client side implementation of the Read service contract. + + + + + The client side implementation of the BeginRead service contract. + + + + + The client side implementation of the EndRead service contract. + + + + + The client side implementation of the HistoryRead service contract. + + + + + The client side implementation of the BeginHistoryRead service contract. + + + + + The client side implementation of the EndHistoryRead service contract. + + + + + The client side implementation of the Write service contract. + + + + + The client side implementation of the BeginWrite service contract. + + + + + The client side implementation of the EndWrite service contract. + + + + + The client side implementation of the HistoryUpdate service contract. + + + + + The client side implementation of the BeginHistoryUpdate service contract. + + + + + The client side implementation of the EndHistoryUpdate service contract. + + + + + The client side implementation of the Call service contract. + + + + + The client side implementation of the BeginCall service contract. + + + + + The client side implementation of the EndCall service contract. + + + + + The client side implementation of the CreateMonitoredItems service contract. + + + + + The client side implementation of the BeginCreateMonitoredItems service contract. + + + + + The client side implementation of the EndCreateMonitoredItems service contract. + + + + + The client side implementation of the ModifyMonitoredItems service contract. + + + + + The client side implementation of the BeginModifyMonitoredItems service contract. + + + + + The client side implementation of the EndModifyMonitoredItems service contract. + + + + + The client side implementation of the SetMonitoringMode service contract. + + + + + The client side implementation of the BeginSetMonitoringMode service contract. + + + + + The client side implementation of the EndSetMonitoringMode service contract. + + + + + The client side implementation of the SetTriggering service contract. + + + + + The client side implementation of the BeginSetTriggering service contract. + + + + + The client side implementation of the EndSetTriggering service contract. + + + + + The client side implementation of the DeleteMonitoredItems service contract. + + + + + The client side implementation of the BeginDeleteMonitoredItems service contract. + + + + + The client side implementation of the EndDeleteMonitoredItems service contract. + + + + + The client side implementation of the CreateSubscription service contract. + + + + + The client side implementation of the BeginCreateSubscription service contract. + + + + + The client side implementation of the EndCreateSubscription service contract. + + + + + The client side implementation of the ModifySubscription service contract. + + + + + The client side implementation of the BeginModifySubscription service contract. + + + + + The client side implementation of the EndModifySubscription service contract. + + + + + The client side implementation of the SetPublishingMode service contract. + + + + + The client side implementation of the BeginSetPublishingMode service contract. + + + + + The client side implementation of the EndSetPublishingMode service contract. + + + + + The client side implementation of the Publish service contract. + + + + + The client side implementation of the BeginPublish service contract. + + + + + The client side implementation of the EndPublish service contract. + + + + + The client side implementation of the Republish service contract. + + + + + The client side implementation of the BeginRepublish service contract. + + + + + The client side implementation of the EndRepublish service contract. + + + + + The client side implementation of the TransferSubscriptions service contract. + + + + + The client side implementation of the BeginTransferSubscriptions service contract. + + + + + The client side implementation of the EndTransferSubscriptions service contract. + + + + + The client side implementation of the DeleteSubscriptions service contract. + + + + + The client side implementation of the BeginDeleteSubscriptions service contract. + + + + + The client side implementation of the EndDeleteSubscriptions service contract. + + + + + A base class for UA channel objects used to access UA interfaces + + + + + Initializes the object with the specified binding and endpoint address. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Returns true if the channel uses the UA Binary encoding. + + + + + Gets the binary encoding support. + + + + + Opens the channel with the server. + + + + + Closes the channel with the server. + + + + + Schedules an outgoing request. + + The request. + + + + A masking indicating which features are implemented. + + + + + Gets the description for the endpoint used by the channel. + + + + + Gets the configuration for the channel. + + + + + Gets the context used when serializing messages exchanged via the channel. + + + + + Gets the the channel's current security token. + + + + + Gets or sets the default timeout for requests send via the channel. + + + + + Initializes a secure channel with the endpoint identified by the URL. + + The URL for the endpoint. + The settings to use when creating the channel. + Thrown if any communication error occurs. + + + + Initializes a secure channel with the endpoint identified by the URL. + + The connection to use. + The settings to use when creating the channel. + Thrown if any communication error occurs. + + + + Opens a secure channel with the endpoint identified by the URL. + + + + + Begins an asynchronous operation to open a secure channel with the endpoint identified by the URL. + + + + + Completes an asynchronous operation to open a communication object. + + + + + Closes any existing secure channel and opens a new one. + + Thrown if any communication error occurs. + + Calling this method will cause outstanding requests over the current secure channel to fail. + + + + + Closes any existing secure channel and opens a new one using an existing channel. + + The reverse transport connection for the Reconnect. + Thrown if any communication error occurs. + + Calling this method will cause outstanding requests over the current secure channel to fail. + + + + + Begins an asynchronous operation to close the existing secure channel and open a new one. + + + + + Completes an asynchronous operation to close the existing secure channel and open a new one. + + + + + Closes any existing secure channel. + + + + + Begins an asynchronous operation to close the secure channel. + + + + + Completes an asynchronous operation to close a communication object. + + + + + Sends a request over the secure channel. + + + + + Begins an asynchronous operation to send a request over the secure channel. + + + + + Completes an asynchronous operation to send a request over the secure channel. + + + + + The client side implementation of the InvokeService service contract. + + + + + The client side implementation of the BeginInvokeService service contract. + + + + + The client side implementation of the EndInvokeService service contract. + + + + + Creates a new UA-binary transport channel if requested. Null otherwise. + + + + + Creates a new UA-binary transport channel if requested. Null otherwise. + + The application configuration. + The description for the endpoint. + The configuration to use with the endpoint. + The client certificate. + The message context to use when serializing the messages. + + + + + Creates a new UA-binary transport channel if requested. Null otherwise. + + The application configuration. + The description for the endpoint. + The configuration to use with the endpoint. + The client certificate. + The client certificate chain. + The message context to use when serializing the messages. + + + + + Handles the Opened event of the InnerChannel control. + + The source of the event. + The instance containing the event data. + + + + Converts a FaultException into a ServiceResultException. + + + + + A base class for UA channel objects used access UA interfaces + + + + + An overrideable version of the Dispose. + + + + + The client side implementation of the InvokeService service contract. + + + + + The client side implementation of the BeginInvokeService service contract. + + + + + The client side implementation of the EndInvokeService service contract. + + + + + Closes any existing secure channel and opens a new one. + + + + + + + + An async result object that wraps the WCF channel. + + + + + Initializes a new instance of the class. + + The channel. + The callback. + The callback data. + + + + Gets the wrapped channel. + + The wrapped channel. + + + + Called when asynchronous operation completes. + + The asynchronous result object. + + + + Checks for a valid IAsyncResult object and waits for the operation to complete. + + The IAsyncResult object for the operation. + The oject that + + + + Gets the inner channel. + + The channel. + + + + A generic user identity class. + + + + + Initializes the object as an anonymous user. + + + + + Initializes the object with a username and password. + + The user name. + The password. + + + + Initializes the object with a UA identity token. + + The token. + + + + Initializes the object with an X509 certificate identifier + + + + + Initializes the object with an X509 certificate + + + + + Initializes the object with a UA identity token. + + The user identity token. + + + + Gets or sets the UserIdentityToken PolicyId associated with the UserIdentity. + + + This value is used to initialize the UserIdentityToken object when GetIdentityToken() is called. + + + + + + + + + + + + + + + + + Get or sets the list of granted role ids associated to the UserIdentity. + + + + + + + + Initializes the object with a UA identity token + + + + + Initializes the object with an X509 certificate + + + + + Stores information about the user that is currently being impersonated. + + + + + Loads the configuration section for an application. + + + + + Creates the configuration object from the configuration section. + + The parent object. + The configuration context object. + The section as XML node. + The created section handler object. + + + + Represents the location of a configuration file. + + + + + Gets or sets the relative or absolute path to the configuration file. + + The file path. + + + + Watches the configuration file and reports any changes. + + + + + Creates the watcher for the configuration. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Raised when the configuration file changes. + + + + + Handles a file changed event. + + + + + Stores the arguments passed when the configuration file changes. + + + + + Initializes the object with a configuration and a file path. + + + + + The application configuration which changed. + + + + + The path to the application configuration file. + + + + + Describes how to connect to an endpoint. + + + + + + + + + Creates an instance of a configuration with reasonable default values. + + + + + Creates an instance of a configuration with reasonable default values. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Describes how to connect to an endpoint. + + + + + + + + + Creates an endpoint configuration from a url. + + + + + The encodings supported by the configuration. + + + + + The proxy url to use when connecting to the endpoint. + + + + + Finds the user token policy with the specified id. + + + + + Finds a token policy that matches the user identity specified. + + + + + Finds a token policy that matches the user identity specified. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Initializes the object during deserialization. + + + + + Sets private members to default values. + + + + + The properties of the current server instance. + + + + + The default constructor. + + + + + The unique identifier for the product. + + + + + The name of the product + + + + + The name of the manufacturer + + + + + The software version for the application + + + + + The build number for the application + + + + + When the application was built. + + + + + The assemblies that contain encodeable types that could be uses a variable values. + + + + + The software certificates granted to the server. + + + + + Defines the default names for the condition states. + + + + + The name of the Disabled state. + + + + + The name of the Enabled state. + + + + + The name of the Inactive state. + + + + + The name of the Active state. + + + + + The name of the Unacknowledged state. + + + + + The name of the Acknowledged state. + + + + + The name of the Unconfirmed state. + + + + + The name of the Confirmed state. + + + + + The name of the Unsuppressed state. + + + + + The name of the Suppressed state. + + + + + The name of the HighHighActive state. + + + + + The name of the HighActive state. + + + + + The name of the LowActive state. + + + + + The name of the LowLowActive state. + + + + + A class that defines constants used by UA applications. + + + A class that declares constants for all DataTypes in the Model Design. + + + + + + Returns the browse name for the attribute. + + + + + Returns the browse names for all attributes. + + + + + Returns the id for the attribute with the specified browse name. + + + + + Returns the data type id that describes a value. + + + + + Returns the data type id that describes a value. + + + + + Returns the data type id that describes a value. + + + + + Returns the array rank for a value. + + + + + Returns the array rank for a type. + + + + + Returns the BuiltInType type for the DataTypeId. + + + + + Returns the BuiltInType type for the DataTypeId. + + + + + Returns the system type for the datatype. + + + + + The identifier for the BaseDataType DataType. + + + + + The identifier for the Number DataType. + + + + + The identifier for the Integer DataType. + + + + + The identifier for the UInteger DataType. + + + + + The identifier for the Enumeration DataType. + + + + + The identifier for the Boolean DataType. + + + + + The identifier for the SByte DataType. + + + + + The identifier for the Byte DataType. + + + + + The identifier for the Int16 DataType. + + + + + The identifier for the UInt16 DataType. + + + + + The identifier for the Int32 DataType. + + + + + The identifier for the UInt32 DataType. + + + + + The identifier for the Int64 DataType. + + + + + The identifier for the UInt64 DataType. + + + + + The identifier for the Float DataType. + + + + + The identifier for the Double DataType. + + + + + The identifier for the String DataType. + + + + + The identifier for the DateTime DataType. + + + + + The identifier for the Guid DataType. + + + + + The identifier for the ByteString DataType. + + + + + The identifier for the XmlElement DataType. + + + + + The identifier for the NodeId DataType. + + + + + The identifier for the ExpandedNodeId DataType. + + + + + The identifier for the StatusCode DataType. + + + + + The identifier for the QualifiedName DataType. + + + + + The identifier for the LocalizedText DataType. + + + + + The identifier for the Structure DataType. + + + + + The identifier for the DataValue DataType. + + + + + The identifier for the DiagnosticInfo DataType. + + + + + The identifier for the Image DataType. + + + + + The identifier for the Decimal DataType. + + + + + The identifier for the NamingRuleType DataType. + + + + + The identifier for the ImageBMP DataType. + + + + + The identifier for the ImageGIF DataType. + + + + + The identifier for the ImageJPG DataType. + + + + + The identifier for the ImagePNG DataType. + + + + + The identifier for the AudioDataType DataType. + + + + + The identifier for the BitFieldMaskDataType DataType. + + + + + The identifier for the KeyValuePair DataType. + + + + + The identifier for the EndpointType DataType. + + + + + The identifier for the RationalNumber DataType. + + + + + The identifier for the Vector DataType. + + + + + The identifier for the ThreeDVector DataType. + + + + + The identifier for the CartesianCoordinates DataType. + + + + + The identifier for the ThreeDCartesianCoordinates DataType. + + + + + The identifier for the Orientation DataType. + + + + + The identifier for the ThreeDOrientation DataType. + + + + + The identifier for the Frame DataType. + + + + + The identifier for the ThreeDFrame DataType. + + + + + The identifier for the OpenFileMode DataType. + + + + + The identifier for the IdentityCriteriaType DataType. + + + + + The identifier for the IdentityMappingRuleType DataType. + + + + + The identifier for the CurrencyUnitType DataType. + + + + + The identifier for the TrustListMasks DataType. + + + + + The identifier for the TrustListDataType DataType. + + + + + The identifier for the DecimalDataType DataType. + + + + + The identifier for the DataTypeSchemaHeader DataType. + + + + + The identifier for the DataTypeDescription DataType. + + + + + The identifier for the StructureDescription DataType. + + + + + The identifier for the EnumDescription DataType. + + + + + The identifier for the SimpleTypeDescription DataType. + + + + + The identifier for the UABinaryFileDataType DataType. + + + + + The identifier for the PubSubState DataType. + + + + + The identifier for the DataSetMetaDataType DataType. + + + + + The identifier for the FieldMetaData DataType. + + + + + The identifier for the DataSetFieldFlags DataType. + + + + + The identifier for the ConfigurationVersionDataType DataType. + + + + + The identifier for the PublishedDataSetDataType DataType. + + + + + The identifier for the PublishedDataSetSourceDataType DataType. + + + + + The identifier for the PublishedVariableDataType DataType. + + + + + The identifier for the PublishedDataItemsDataType DataType. + + + + + The identifier for the PublishedEventsDataType DataType. + + + + + The identifier for the DataSetFieldContentMask DataType. + + + + + The identifier for the DataSetWriterDataType DataType. + + + + + The identifier for the DataSetWriterTransportDataType DataType. + + + + + The identifier for the DataSetWriterMessageDataType DataType. + + + + + The identifier for the PubSubGroupDataType DataType. + + + + + The identifier for the WriterGroupDataType DataType. + + + + + The identifier for the WriterGroupTransportDataType DataType. + + + + + The identifier for the WriterGroupMessageDataType DataType. + + + + + The identifier for the PubSubConnectionDataType DataType. + + + + + The identifier for the ConnectionTransportDataType DataType. + + + + + The identifier for the NetworkAddressDataType DataType. + + + + + The identifier for the NetworkAddressUrlDataType DataType. + + + + + The identifier for the ReaderGroupDataType DataType. + + + + + The identifier for the ReaderGroupTransportDataType DataType. + + + + + The identifier for the ReaderGroupMessageDataType DataType. + + + + + The identifier for the DataSetReaderDataType DataType. + + + + + The identifier for the DataSetReaderTransportDataType DataType. + + + + + The identifier for the DataSetReaderMessageDataType DataType. + + + + + The identifier for the SubscribedDataSetDataType DataType. + + + + + The identifier for the TargetVariablesDataType DataType. + + + + + The identifier for the FieldTargetDataType DataType. + + + + + The identifier for the OverrideValueHandling DataType. + + + + + The identifier for the SubscribedDataSetMirrorDataType DataType. + + + + + The identifier for the PubSubConfigurationDataType DataType. + + + + + The identifier for the DataSetOrderingType DataType. + + + + + The identifier for the UadpNetworkMessageContentMask DataType. + + + + + The identifier for the UadpWriterGroupMessageDataType DataType. + + + + + The identifier for the UadpDataSetMessageContentMask DataType. + + + + + The identifier for the UadpDataSetWriterMessageDataType DataType. + + + + + The identifier for the UadpDataSetReaderMessageDataType DataType. + + + + + The identifier for the JsonNetworkMessageContentMask DataType. + + + + + The identifier for the JsonWriterGroupMessageDataType DataType. + + + + + The identifier for the JsonDataSetMessageContentMask DataType. + + + + + The identifier for the JsonDataSetWriterMessageDataType DataType. + + + + + The identifier for the JsonDataSetReaderMessageDataType DataType. + + + + + The identifier for the DatagramConnectionTransportDataType DataType. + + + + + The identifier for the DatagramWriterGroupTransportDataType DataType. + + + + + The identifier for the BrokerConnectionTransportDataType DataType. + + + + + The identifier for the BrokerTransportQualityOfService DataType. + + + + + The identifier for the BrokerWriterGroupTransportDataType DataType. + + + + + The identifier for the BrokerDataSetWriterTransportDataType DataType. + + + + + The identifier for the BrokerDataSetReaderTransportDataType DataType. + + + + + The identifier for the DiagnosticsLevel DataType. + + + + + The identifier for the PubSubDiagnosticsCounterClassification DataType. + + + + + The identifier for the AliasNameDataType DataType. + + + + + The identifier for the IdType DataType. + + + + + The identifier for the NodeClass DataType. + + + + + The identifier for the PermissionType DataType. + + + + + The identifier for the AccessLevelType DataType. + + + + + The identifier for the AccessLevelExType DataType. + + + + + The identifier for the EventNotifierType DataType. + + + + + The identifier for the AccessRestrictionType DataType. + + + + + The identifier for the RolePermissionType DataType. + + + + + The identifier for the DataTypeDefinition DataType. + + + + + The identifier for the StructureType DataType. + + + + + The identifier for the StructureField DataType. + + + + + The identifier for the StructureDefinition DataType. + + + + + The identifier for the EnumDefinition DataType. + + + + + The identifier for the Node DataType. + + + + + The identifier for the InstanceNode DataType. + + + + + The identifier for the TypeNode DataType. + + + + + The identifier for the ObjectNode DataType. + + + + + The identifier for the ObjectTypeNode DataType. + + + + + The identifier for the VariableNode DataType. + + + + + The identifier for the VariableTypeNode DataType. + + + + + The identifier for the ReferenceTypeNode DataType. + + + + + The identifier for the MethodNode DataType. + + + + + The identifier for the ViewNode DataType. + + + + + The identifier for the DataTypeNode DataType. + + + + + The identifier for the ReferenceNode DataType. + + + + + The identifier for the Argument DataType. + + + + + The identifier for the EnumValueType DataType. + + + + + The identifier for the EnumField DataType. + + + + + The identifier for the OptionSet DataType. + + + + + The identifier for the Union DataType. + + + + + The identifier for the NormalizedString DataType. + + + + + The identifier for the DecimalString DataType. + + + + + The identifier for the DurationString DataType. + + + + + The identifier for the TimeString DataType. + + + + + The identifier for the DateString DataType. + + + + + The identifier for the Duration DataType. + + + + + The identifier for the UtcTime DataType. + + + + + The identifier for the LocaleId DataType. + + + + + The identifier for the TimeZoneDataType DataType. + + + + + The identifier for the Index DataType. + + + + + The identifier for the IntegerId DataType. + + + + + The identifier for the ApplicationType DataType. + + + + + The identifier for the ApplicationDescription DataType. + + + + + The identifier for the RequestHeader DataType. + + + + + The identifier for the ResponseHeader DataType. + + + + + The identifier for the VersionTime DataType. + + + + + The identifier for the ServiceFault DataType. + + + + + The identifier for the SessionlessInvokeRequestType DataType. + + + + + The identifier for the SessionlessInvokeResponseType DataType. + + + + + The identifier for the FindServersRequest DataType. + + + + + The identifier for the FindServersResponse DataType. + + + + + The identifier for the ServerOnNetwork DataType. + + + + + The identifier for the FindServersOnNetworkRequest DataType. + + + + + The identifier for the FindServersOnNetworkResponse DataType. + + + + + The identifier for the ApplicationInstanceCertificate DataType. + + + + + The identifier for the MessageSecurityMode DataType. + + + + + The identifier for the UserTokenType DataType. + + + + + The identifier for the UserTokenPolicy DataType. + + + + + The identifier for the EndpointDescription DataType. + + + + + The identifier for the GetEndpointsRequest DataType. + + + + + The identifier for the GetEndpointsResponse DataType. + + + + + The identifier for the RegisteredServer DataType. + + + + + The identifier for the RegisterServerRequest DataType. + + + + + The identifier for the RegisterServerResponse DataType. + + + + + The identifier for the DiscoveryConfiguration DataType. + + + + + The identifier for the MdnsDiscoveryConfiguration DataType. + + + + + The identifier for the RegisterServer2Request DataType. + + + + + The identifier for the RegisterServer2Response DataType. + + + + + The identifier for the SecurityTokenRequestType DataType. + + + + + The identifier for the ChannelSecurityToken DataType. + + + + + The identifier for the OpenSecureChannelRequest DataType. + + + + + The identifier for the OpenSecureChannelResponse DataType. + + + + + The identifier for the CloseSecureChannelRequest DataType. + + + + + The identifier for the CloseSecureChannelResponse DataType. + + + + + The identifier for the SignedSoftwareCertificate DataType. + + + + + The identifier for the SessionAuthenticationToken DataType. + + + + + The identifier for the SignatureData DataType. + + + + + The identifier for the CreateSessionRequest DataType. + + + + + The identifier for the CreateSessionResponse DataType. + + + + + The identifier for the UserIdentityToken DataType. + + + + + The identifier for the AnonymousIdentityToken DataType. + + + + + The identifier for the UserNameIdentityToken DataType. + + + + + The identifier for the X509IdentityToken DataType. + + + + + The identifier for the IssuedIdentityToken DataType. + + + + + The identifier for the RsaEncryptedSecret DataType. + + + + + The identifier for the ActivateSessionRequest DataType. + + + + + The identifier for the ActivateSessionResponse DataType. + + + + + The identifier for the CloseSessionRequest DataType. + + + + + The identifier for the CloseSessionResponse DataType. + + + + + The identifier for the CancelRequest DataType. + + + + + The identifier for the CancelResponse DataType. + + + + + The identifier for the NodeAttributesMask DataType. + + + + + The identifier for the NodeAttributes DataType. + + + + + The identifier for the ObjectAttributes DataType. + + + + + The identifier for the VariableAttributes DataType. + + + + + The identifier for the MethodAttributes DataType. + + + + + The identifier for the ObjectTypeAttributes DataType. + + + + + The identifier for the VariableTypeAttributes DataType. + + + + + The identifier for the ReferenceTypeAttributes DataType. + + + + + The identifier for the DataTypeAttributes DataType. + + + + + The identifier for the ViewAttributes DataType. + + + + + The identifier for the GenericAttributeValue DataType. + + + + + The identifier for the GenericAttributes DataType. + + + + + The identifier for the AddNodesItem DataType. + + + + + The identifier for the AddNodesResult DataType. + + + + + The identifier for the AddNodesRequest DataType. + + + + + The identifier for the AddNodesResponse DataType. + + + + + The identifier for the AddReferencesItem DataType. + + + + + The identifier for the AddReferencesRequest DataType. + + + + + The identifier for the AddReferencesResponse DataType. + + + + + The identifier for the DeleteNodesItem DataType. + + + + + The identifier for the DeleteNodesRequest DataType. + + + + + The identifier for the DeleteNodesResponse DataType. + + + + + The identifier for the DeleteReferencesItem DataType. + + + + + The identifier for the DeleteReferencesRequest DataType. + + + + + The identifier for the DeleteReferencesResponse DataType. + + + + + The identifier for the AttributeWriteMask DataType. + + + + + The identifier for the BrowseDirection DataType. + + + + + The identifier for the ViewDescription DataType. + + + + + The identifier for the BrowseDescription DataType. + + + + + The identifier for the BrowseResultMask DataType. + + + + + The identifier for the ReferenceDescription DataType. + + + + + The identifier for the ContinuationPoint DataType. + + + + + The identifier for the BrowseResult DataType. + + + + + The identifier for the BrowseRequest DataType. + + + + + The identifier for the BrowseResponse DataType. + + + + + The identifier for the BrowseNextRequest DataType. + + + + + The identifier for the BrowseNextResponse DataType. + + + + + The identifier for the RelativePathElement DataType. + + + + + The identifier for the RelativePath DataType. + + + + + The identifier for the BrowsePath DataType. + + + + + The identifier for the BrowsePathTarget DataType. + + + + + The identifier for the BrowsePathResult DataType. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsRequest DataType. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsResponse DataType. + + + + + The identifier for the RegisterNodesRequest DataType. + + + + + The identifier for the RegisterNodesResponse DataType. + + + + + The identifier for the UnregisterNodesRequest DataType. + + + + + The identifier for the UnregisterNodesResponse DataType. + + + + + The identifier for the Counter DataType. + + + + + The identifier for the NumericRange DataType. + + + + + The identifier for the Time DataType. + + + + + The identifier for the Date DataType. + + + + + The identifier for the EndpointConfiguration DataType. + + + + + The identifier for the QueryDataDescription DataType. + + + + + The identifier for the NodeTypeDescription DataType. + + + + + The identifier for the FilterOperator DataType. + + + + + The identifier for the QueryDataSet DataType. + + + + + The identifier for the NodeReference DataType. + + + + + The identifier for the ContentFilterElement DataType. + + + + + The identifier for the ContentFilter DataType. + + + + + The identifier for the FilterOperand DataType. + + + + + The identifier for the ElementOperand DataType. + + + + + The identifier for the LiteralOperand DataType. + + + + + The identifier for the AttributeOperand DataType. + + + + + The identifier for the SimpleAttributeOperand DataType. + + + + + The identifier for the ContentFilterElementResult DataType. + + + + + The identifier for the ContentFilterResult DataType. + + + + + The identifier for the ParsingResult DataType. + + + + + The identifier for the QueryFirstRequest DataType. + + + + + The identifier for the QueryFirstResponse DataType. + + + + + The identifier for the QueryNextRequest DataType. + + + + + The identifier for the QueryNextResponse DataType. + + + + + The identifier for the TimestampsToReturn DataType. + + + + + The identifier for the ReadValueId DataType. + + + + + The identifier for the ReadRequest DataType. + + + + + The identifier for the ReadResponse DataType. + + + + + The identifier for the HistoryReadValueId DataType. + + + + + The identifier for the HistoryReadResult DataType. + + + + + The identifier for the HistoryReadDetails DataType. + + + + + The identifier for the ReadEventDetails DataType. + + + + + The identifier for the ReadRawModifiedDetails DataType. + + + + + The identifier for the ReadProcessedDetails DataType. + + + + + The identifier for the ReadAtTimeDetails DataType. + + + + + The identifier for the ReadAnnotationDataDetails DataType. + + + + + The identifier for the HistoryData DataType. + + + + + The identifier for the ModificationInfo DataType. + + + + + The identifier for the HistoryModifiedData DataType. + + + + + The identifier for the HistoryEvent DataType. + + + + + The identifier for the HistoryReadRequest DataType. + + + + + The identifier for the HistoryReadResponse DataType. + + + + + The identifier for the WriteValue DataType. + + + + + The identifier for the WriteRequest DataType. + + + + + The identifier for the WriteResponse DataType. + + + + + The identifier for the HistoryUpdateDetails DataType. + + + + + The identifier for the HistoryUpdateType DataType. + + + + + The identifier for the PerformUpdateType DataType. + + + + + The identifier for the UpdateDataDetails DataType. + + + + + The identifier for the UpdateStructureDataDetails DataType. + + + + + The identifier for the UpdateEventDetails DataType. + + + + + The identifier for the DeleteRawModifiedDetails DataType. + + + + + The identifier for the DeleteAtTimeDetails DataType. + + + + + The identifier for the DeleteEventDetails DataType. + + + + + The identifier for the HistoryUpdateResult DataType. + + + + + The identifier for the HistoryUpdateRequest DataType. + + + + + The identifier for the HistoryUpdateResponse DataType. + + + + + The identifier for the CallMethodRequest DataType. + + + + + The identifier for the CallMethodResult DataType. + + + + + The identifier for the CallRequest DataType. + + + + + The identifier for the CallResponse DataType. + + + + + The identifier for the MonitoringMode DataType. + + + + + The identifier for the DataChangeTrigger DataType. + + + + + The identifier for the DeadbandType DataType. + + + + + The identifier for the MonitoringFilter DataType. + + + + + The identifier for the DataChangeFilter DataType. + + + + + The identifier for the EventFilter DataType. + + + + + The identifier for the AggregateConfiguration DataType. + + + + + The identifier for the AggregateFilter DataType. + + + + + The identifier for the MonitoringFilterResult DataType. + + + + + The identifier for the EventFilterResult DataType. + + + + + The identifier for the AggregateFilterResult DataType. + + + + + The identifier for the MonitoringParameters DataType. + + + + + The identifier for the MonitoredItemCreateRequest DataType. + + + + + The identifier for the MonitoredItemCreateResult DataType. + + + + + The identifier for the CreateMonitoredItemsRequest DataType. + + + + + The identifier for the CreateMonitoredItemsResponse DataType. + + + + + The identifier for the MonitoredItemModifyRequest DataType. + + + + + The identifier for the MonitoredItemModifyResult DataType. + + + + + The identifier for the ModifyMonitoredItemsRequest DataType. + + + + + The identifier for the ModifyMonitoredItemsResponse DataType. + + + + + The identifier for the SetMonitoringModeRequest DataType. + + + + + The identifier for the SetMonitoringModeResponse DataType. + + + + + The identifier for the SetTriggeringRequest DataType. + + + + + The identifier for the SetTriggeringResponse DataType. + + + + + The identifier for the DeleteMonitoredItemsRequest DataType. + + + + + The identifier for the DeleteMonitoredItemsResponse DataType. + + + + + The identifier for the CreateSubscriptionRequest DataType. + + + + + The identifier for the CreateSubscriptionResponse DataType. + + + + + The identifier for the ModifySubscriptionRequest DataType. + + + + + The identifier for the ModifySubscriptionResponse DataType. + + + + + The identifier for the SetPublishingModeRequest DataType. + + + + + The identifier for the SetPublishingModeResponse DataType. + + + + + The identifier for the NotificationMessage DataType. + + + + + The identifier for the NotificationData DataType. + + + + + The identifier for the DataChangeNotification DataType. + + + + + The identifier for the MonitoredItemNotification DataType. + + + + + The identifier for the EventNotificationList DataType. + + + + + The identifier for the EventFieldList DataType. + + + + + The identifier for the HistoryEventFieldList DataType. + + + + + The identifier for the StatusChangeNotification DataType. + + + + + The identifier for the SubscriptionAcknowledgement DataType. + + + + + The identifier for the PublishRequest DataType. + + + + + The identifier for the PublishResponse DataType. + + + + + The identifier for the RepublishRequest DataType. + + + + + The identifier for the RepublishResponse DataType. + + + + + The identifier for the TransferResult DataType. + + + + + The identifier for the TransferSubscriptionsRequest DataType. + + + + + The identifier for the TransferSubscriptionsResponse DataType. + + + + + The identifier for the DeleteSubscriptionsRequest DataType. + + + + + The identifier for the DeleteSubscriptionsResponse DataType. + + + + + The identifier for the BuildInfo DataType. + + + + + The identifier for the RedundancySupport DataType. + + + + + The identifier for the ServerState DataType. + + + + + The identifier for the RedundantServerDataType DataType. + + + + + The identifier for the EndpointUrlListDataType DataType. + + + + + The identifier for the NetworkGroupDataType DataType. + + + + + The identifier for the SamplingIntervalDiagnosticsDataType DataType. + + + + + The identifier for the ServerDiagnosticsSummaryDataType DataType. + + + + + The identifier for the ServerStatusDataType DataType. + + + + + The identifier for the SessionDiagnosticsDataType DataType. + + + + + The identifier for the SessionSecurityDiagnosticsDataType DataType. + + + + + The identifier for the ServiceCounterDataType DataType. + + + + + The identifier for the StatusResult DataType. + + + + + The identifier for the SubscriptionDiagnosticsDataType DataType. + + + + + The identifier for the ModelChangeStructureVerbMask DataType. + + + + + The identifier for the ModelChangeStructureDataType DataType. + + + + + The identifier for the SemanticChangeStructureDataType DataType. + + + + + The identifier for the Range DataType. + + + + + The identifier for the EUInformation DataType. + + + + + The identifier for the AxisScaleEnumeration DataType. + + + + + The identifier for the ComplexNumberType DataType. + + + + + The identifier for the DoubleComplexNumberType DataType. + + + + + The identifier for the AxisInformation DataType. + + + + + The identifier for the XVType DataType. + + + + + The identifier for the ProgramDiagnosticDataType DataType. + + + + + The identifier for the ProgramDiagnostic2DataType DataType. + + + + + The identifier for the Annotation DataType. + + + + + The identifier for the ExceptionDeviationFormat DataType. + + + + + Defines well-known namespaces. + + + Defines constants for all namespaces referenced by the model design. + + + + + The XML Schema namespace. + + + + + The XML Schema Instance namespace. + + + + + The WS Secuirity Extensions Namespace. + + + + + The WS Secuirity Utilities Namespace. + + + + + The URI for the UA WSDL. + + + + + The URI for the UA SecuredApplication schema. + + + + + The base URI for the Global Discovery Service. + + + + + The base URI for SDK related schemas. + + + + + The URI for the UA SDK Configuration Schema. + + + + + The URI for the built-in types namespace. + + + + + The URI for the OPC Binary Schema. + + + + + The URI representing all resources in at a site managed by an OAuthe Authorization Service. + + + + + The URI for the OpcUa namespace (.NET code namespace is 'Opc.Ua'). + + + + + The URI for the OpcUaXsd namespace (.NET code namespace is 'Opc.Ua'). + + + + + A class that defines constants used by UA applications. + + + A class that declares constants for all ReferenceTypes in the Model Design. + + + + + + Returns the browse name for the attribute. + + + + + Returns the browse names for all attributes. + + + + + Returns the id for the attribute with the specified browse name. + + + + + The identifier for the References ReferenceType. + + + + + The identifier for the NonHierarchicalReferences ReferenceType. + + + + + The identifier for the HierarchicalReferences ReferenceType. + + + + + The identifier for the HasChild ReferenceType. + + + + + The identifier for the Organizes ReferenceType. + + + + + The identifier for the HasEventSource ReferenceType. + + + + + The identifier for the HasModellingRule ReferenceType. + + + + + The identifier for the HasEncoding ReferenceType. + + + + + The identifier for the HasDescription ReferenceType. + + + + + The identifier for the HasTypeDefinition ReferenceType. + + + + + The identifier for the GeneratesEvent ReferenceType. + + + + + The identifier for the AlwaysGeneratesEvent ReferenceType. + + + + + The identifier for the Aggregates ReferenceType. + + + + + The identifier for the HasSubtype ReferenceType. + + + + + The identifier for the HasProperty ReferenceType. + + + + + The identifier for the HasComponent ReferenceType. + + + + + The identifier for the HasNotifier ReferenceType. + + + + + The identifier for the HasOrderedComponent ReferenceType. + + + + + The identifier for the FromState ReferenceType. + + + + + The identifier for the ToState ReferenceType. + + + + + The identifier for the HasCause ReferenceType. + + + + + The identifier for the HasEffect ReferenceType. + + + + + The identifier for the HasSubStateMachine ReferenceType. + + + + + The identifier for the HasHistoricalConfiguration ReferenceType. + + + + + The identifier for the HasArgumentDescription ReferenceType. + + + + + The identifier for the HasOptionalInputArgumentDescription ReferenceType. + + + + + The identifier for the HasGuard ReferenceType. + + + + + The identifier for the HasDictionaryEntry ReferenceType. + + + + + The identifier for the HasInterface ReferenceType. + + + + + The identifier for the HasAddIn ReferenceType. + + + + + The identifier for the HasTrueSubState ReferenceType. + + + + + The identifier for the HasFalseSubState ReferenceType. + + + + + The identifier for the HasAlarmSuppressionGroup ReferenceType. + + + + + The identifier for the AlarmGroupMember ReferenceType. + + + + + The identifier for the HasCondition ReferenceType. + + + + + The identifier for the HasEffectDisable ReferenceType. + + + + + The identifier for the HasEffectEnable ReferenceType. + + + + + The identifier for the HasEffectSuppressed ReferenceType. + + + + + The identifier for the HasEffectUnsuppressed ReferenceType. + + + + + The identifier for the HasPubSubConnection ReferenceType. + + + + + The identifier for the DataSetToWriter ReferenceType. + + + + + The identifier for the HasDataSetWriter ReferenceType. + + + + + The identifier for the HasWriterGroup ReferenceType. + + + + + The identifier for the HasDataSetReader ReferenceType. + + + + + The identifier for the HasReaderGroup ReferenceType. + + + + + The identifier for the AliasFor ReferenceType. + + + + + Stores an instance of the ServerType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ServerCapabilitiesType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ServerDiagnosticsType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the SessionsDiagnosticsSummaryType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the SessionDiagnosticsObjectType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the VendorServerInfoType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ServerRedundancyType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the TransparentRedundancyType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the NonTransparentRedundancyType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the NonTransparentNetworkRedundancyType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the OperationLimitsType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the FileType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AddressSpaceFileType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the NamespaceMetadataType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the NamespacesType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the BaseEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Initializes a new event. + + The current system context. + The source of the event. + The severity for the event. + The default message. + + + + Stores an instance of the AuditEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Initializes a new event. + + The current system context. + The source of the event. + The severity for the event. + The default message. + Whether the operation that caused the event succeeded. + When the operation started. + + + + Stores an instance of the AuditSecurityEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditChannelEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditOpenSecureChannelEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditSessionEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditCreateSessionEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditUrlMismatchEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditActivateSessionEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditCancelEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditCertificateEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditCertificateDataMismatchEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditCertificateExpiredEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditCertificateInvalidEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditCertificateUntrustedEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditCertificateRevokedEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditCertificateMismatchEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditNodeManagementEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditAddNodesEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditDeleteNodesEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditAddReferencesEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditDeleteReferencesEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditUpdateEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditWriteUpdateEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditHistoryUpdateEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditUpdateMethodEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the SystemEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the DeviceFailureEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the SystemStatusChangeEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the BaseModelChangeEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the GeneralModelChangeEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the SemanticChangeEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the EventQueueOverflowEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ProgressEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AggregateFunctionType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ServerVendorCapabilityType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + A typed version of the ServerVendorCapabilityType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the ServerStatusType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the BuildInfoType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the ServerDiagnosticsSummaryType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the SamplingIntervalDiagnosticsArrayType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the SamplingIntervalDiagnosticsType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the SubscriptionDiagnosticsArrayType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the SubscriptionDiagnosticsType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the SessionDiagnosticsArrayType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the SessionDiagnosticsVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the SessionSecurityDiagnosticsArrayType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the SessionSecurityDiagnosticsType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the OptionSetType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the OptionSetType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the SelectionListType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the SelectionListType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the AudioVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the GetMonitoredItemsMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the ResendDataMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the SetSubscriptionDurableMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RequestServerStateChangeMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the StateMachineType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the StateVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the TransitionVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the FiniteStateMachineType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Initializes the object as a collection of counters which change value on read. + + + + + Stores information about a statemachine element. + + + + + Creates a new instance of the object. + + + + + The node id for the element. + + + + + The browse name of the element. + + + + + A number assigned to the element. + + + + + The namespace index used to qualify the element browse names and node ids. + + + + + The table of states belonging to the state machine. + + + + + The table of states belonging to the state machine. + + + + + The table of transitions belonging to the state machine. + + + + + The mapping between transitions and their from and to states. + + + + + The mapping between causes, the current state and a transition. + + + + + The last state that the machine was in. + + + + + Returns the current state of for the state machine. + + + + + Returns the new state for the specified transition. Returns 0 if the transition is not allowed. + + + + + Checks if the transition has an effect. + + + + + Returns the transition for the cause given the current state. + + + + + Returns the transition from the current state to the target state. + + + + + Updates the current state variable. + + + + + Updates the last transition variable. + + + + + Raised to check whether the current user is allowed to execute the command. + + + + + Raised before a transition occurs. + + + + + Raises after a transition occurs. Errors are ignored. + + + + + If true transition events will not be produced by the state machine. + + + + + Invokes the callback function if it has been specified. + + + + + Checks if the cause is permitted given the current state and returns the associated transition. + + + + + Forces the machine into the specified state. + + + + + Invokes the specified cause. + + + + + Creates an instance of an audit event. + + + + + Updates an audit event after the method is invoked. + + + + + Updates the state machine to reflect the successful processing of a method. + + The context. + The cause id. + + + + + Causes the specified transition to occur. + + + + + Creates an instance of an transition event. + + + + + Updates a transition event after the transition is complete. + + + + + Stores an instance of the FiniteStateVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the FiniteTransitionVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the StateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the InitialStateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the TransitionType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ChoiceStateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the GuardVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ExpressionGuardVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ElseGuardVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the RationalNumberType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the VectorType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ThreeDVectorType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the CartesianCoordinatesType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ThreeDCartesianCoordinatesType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the OrientationType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ThreeDOrientationType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the FrameType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ThreeDFrameType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the TransitionEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditUpdateStateEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the OpenMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the CloseMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the ReadMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the WriteMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the GetPositionMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the SetPositionMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the FileDirectoryType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the CreateDirectoryMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the CreateFileMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the DeleteFileMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the MoveOrCopyMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the TemporaryFileTransferType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the GenerateFileForReadMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the GenerateFileForWriteMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the CloseAndCommitMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the FileTransferStateMachineType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the RoleSetType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AddRoleMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveRoleMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RoleType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AddIdentityMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveIdentityMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddApplicationMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveApplicationMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddEndpointMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveEndpointMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RoleMappingRuleChangedAuditEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the DictionaryEntryType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the DictionaryFolderType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the IrdiDictionaryEntryType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the UriDictionaryEntryType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the BaseInterfaceType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the IOrderedObjectType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the OrderedListType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the DataItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the DataItemType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the BaseAnalogType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the BaseAnalogType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the AnalogItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + A typed version of the AnalogItemType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the AnalogUnitType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + A typed version of the AnalogUnitType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the AnalogUnitRangeType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + A typed version of the AnalogUnitRangeType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the DiscreteItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + A typed version of the DiscreteItemType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the TwoStateDiscreteType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the MultiStateDiscreteType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + A typed version of the MultiStateDiscreteType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the MultiStateValueDiscreteType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the MultiStateValueDiscreteType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the ArrayItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the ArrayItemType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the YArrayItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the YArrayItemType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the XYArrayItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ImageItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the ImageItemType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the CubeItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the CubeItemType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the NDimensionArrayItemType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the NDimensionArrayItemType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the TwoStateVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ConditionVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the ConditionVariableType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the ConditionType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Called after a node is created. + + + + + Gets or sets a value indicating whether the condition will automatically report an event when a method call completes. + + + true if the condition automatically reports ecents; otherwise, false. + + + + + Called when one or more sub-states change state. + + The context. + The display name for the effective state. + The transition time. + + + + Sets the enable state for the condition without raising events. + + The system context. + If true the condition is put into the Enabled state. + This method ensures all related variables are set correctly. + + + + Sets the severity for the condition without raising events. + + The system context. + The event severity. + This method ensures all related variables are set correctly. + + + + Updates the condition after adding a comment. + + The system context. + The comment. + The user that added the comment. + + + + Raised when the condition is enabled or disabled. + + + Return code can be used to cancel the operation. + + + + + Raised when a comment is added to the condition. + + + Return code can be used to cancel the operation. + + + + + Handles a condition refresh. + + + + + Reports the state change for the condition. + + The context. + if set to true the event is reported event if the condition is in the disabled state. + + + + Updates the effective state for the condition. + + The context. + + + + Called when the add comment method is called. + + The system context. + The method being called. + The id of the object. + The identifier for the event which is the target for the comment. + The comment. + Any error. + + + + Gets the current user id from the system context. + + The system context. + The display name for the current user. + + + + Does any processing before adding a comment to a condition. + + The system context. + The identifier for the event which is the target for the comment. + The comment. + + + + Handles the Enable method. + + + + + Handles the Disable method. + + + + + Does any processing before a condition is enabled or disabled. + + The system context. + True is the condition is being enabled. + + + + Updates the condition state after enabling. + + The system context. + + + + Updates the condition state after disabling. + + The system context. + + + + Stores an instance of the ConditionRefresh2MethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the ConditionRefreshMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddCommentMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the DialogConditionType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Called after a node is created. + + + + + Activates the dialog. + + The system context. + + + + Sets the response to the dialog. + + The system context. + The selected response. + + + + Raised when a dialog receives a Response. + + + Return code can be used to cancel the operation. + + + + + Updates the effective state for the condition. + + The context. + + + + Called when the Respond method is called. + + The system context. + The method being called. + The id of the object. + The selected response. + Any error. + + + + Stores an instance of the DialogResponseMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AcknowledgeableConditionType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Called after a node is created. + + + + + Sets the acknowledged state of the condition. + + The system context. + if set to true the condition is acknowledged. + + + + Sets the confirmed state of the condition. + + The context. + if set to true the condition is confirmed. + + + + Raised when a condition is acknowledged. + + + Return code can be used to cancel the operation. + + + + + Raised when a condition is confirmed. + + + Return code can be used to cancel the operation. + + + + + Updates the effective state for the condition. + + The context. + + + + Called when the Acknowledge method is called. + + The system context. + The method being called. + The id of the object. + The identifier for the event which is the target for the comment. + The comment. + Any error. + + + + Does any processing before adding a comment to a condition. + + The system context. + The identifier for the event which is the target for the comment. + The comment. + + + + Updates the condition state after enabling. + + The system context. + + + + Updates the condition state after disabling. + + The system context. + + + + Called when the Confirm method is called. + + The system context. + The method being called. + The id of the object. + The identifier for the event which is the target for the comment. + The comment. + Any error. + + + + Does any processing before adding a comment to a condition. + + The system context. + The identifier for the event which is the target for the comment. + The comment. + + + + Updates the condition state after enabling. + + The system context. + + + + Updates the condition state after disabling. + + The system context. + + + + Determines if a comment should be added on Acknowledgement or Confirm. + + The client provided comment. + Boolean stating whether the comment should be set + + According to the specification for Alarms, the Acknowledgement states that + "If the comment field is NULL (both locale and text are empty) it will be + ignored and any existing comments will remain unchanged." + This also applies to the Confirm method, although the spec needs updating + (Mantis issue 6405) + + + + + Stores an instance of the AlarmConditionType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Called after a node is created. + + + + + An overrideable version of the Dispose. + + + + + Defines how often to update the UnshelveTime when Shelving State is TimedShelve or OneShotShelved. + Defaults to 1000 ms + + + + + Called when one or more sub-states change state. + + The context. + The display name for the effective state. + The transition time. + + + + Gets when the alarm is scheduled to be unshelved. + + The unshelve time. + + + + Sets the active state of the condition. + + The system context. + if set to true the condition is active. + + + + Sets the suppressed state of the condition. + + The context. + if set to true the condition is suppressed. + + + + Sets the shelving state of the condition. + + The shelving context. + if set to true shelved. + if set to true for a one shot shelve.. + The duration of a timed shelve. + + + + Raised when the alarm is shelved. + + + Return code can be used to cancel the operation. + + + + + Raised when the timed shelving period expires. + + + + + Raised periodically when the shelving state is not Unshelved to update the UnshelveTimeValue. + + + + + Updates the effective state for the condition. + + The context. + + + + Checks whether the OneShotShelve method is executable. + + + + + Checks whether the OneShotShelve method is executable. + + + + + Handles the OneShotShelve method. + + + + + Checks whether the TimedShelve method is executable. + + + + + Handles the TimedShelve method. + + + + + Checks whether the Unshelve method is executable. + + + + + Handles the Unshelve method. + + + + + Called when timed shelve period expires. + + + + + Called when shelved state is not Unshelved to update the UnshelveTime value. + + + + + Stores an instance of the AlarmGroupType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ShelvedStateMachineType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Initializes the object as a collection of counters which change value on read. + + + + + The table of states belonging to the state machine. + + + + + A table of valid states. + + + + + The table of transitions belonging to the state machine. + + + + + A table of valid transitions. + + + + + The mapping between transitions and their from and to states. + + + + + A table of the to and from states for the transitions. + + + + + The mapping between causes, the current state and a transition. + + + + + A table of transitions for the available causes. + + + + + Stores an instance of the TimedShelveMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the LimitAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ExclusiveLimitStateMachineType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Initializes the object as a collection of counters which change value on read. + + + + + The table of states belonging to the state machine. + + + + + A table of valid states. + + + + + The table of transitions belonging to the state machine. + + + + + A table of valid transitions. + + + + + The mapping between transitions and their from and to states. + + + + + A table of the to and from states for the transitions. + + + + + Stores an instance of the ExclusiveLimitAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Sets the active state of the condition. + + The system context. + if set to true the condition is active. + + + + Sets the limit state of the condition. + + The system context. + The bit masks specifying the current state. + + + + Stores an instance of the NonExclusiveLimitAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Sets the limit state of the condition. + + The system context. + The bit masks specifying the current state. + + + + Updates the state. + + The limit. + if set to true is the state is active. + + + + Stores an instance of the NonExclusiveLevelAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ExclusiveLevelAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the NonExclusiveDeviationAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the NonExclusiveRateOfChangeAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ExclusiveDeviationAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ExclusiveRateOfChangeAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the DiscreteAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the OffNormalAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the SystemOffNormalAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the TripAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the InstrumentDiagnosticAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the SystemDiagnosticAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the CertificateExpirationAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the DiscrepancyAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the BaseConditionClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ProcessConditionClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the MaintenanceConditionClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the SystemConditionClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the SafetyConditionClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the HighlyManagedAlarmConditionClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the TrainingConditionClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the StatisticalConditionClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the TestingConditionSubClassType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditConditionEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditConditionEnableEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditConditionCommentEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditConditionRespondEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditConditionAcknowledgeEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditConditionConfirmEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditConditionShelvingEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditConditionSuppressionEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditConditionSilenceEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditConditionResetEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuditConditionOutOfServiceEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the RefreshStartEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the RefreshEndEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the RefreshRequiredEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AlarmMetricsType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AlarmRateVariableType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ProgramStateMachineType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Initializes the object as a collection of counters which change value on read. + + + + + The table of states belonging to the state machine. + + + + + A table of valid states. + + + + + The table of transitions belonging to the state machine. + + + + + A table of valid transitions. + + + + + The mapping between transitions and their from and to states. + + + + + A table of the to and from states for the transitions. + + + + + The mapping between causes, the current state and a transition. + + + + + A table of transitions for the available causes. + + + + + Creates an instance of an audit event. + + + + + Updates an audit event after the method is invoked. + + + + + Creates an instance of an transition event. + + + + + Checks whether the start method is executable. + + + + + Checks whether the start method is executable by the current user. + + + + + Handles the start method. + + + + + Checks whether the suspend method is executable. + + + + + Checks whether the suspend method is executable by the current user. + + + + + Handles the suspend method. + + + + + Checks whether the resume method is executable. + + + + + Checks whether the resume method is executable by the current user. + + + + + Handles the resume method. + + + + + Checks whether the halt method is executable. + + + + + Checks whether the halt method is executable by the current user. + + + + + Handles the halt method. + + + + + Checks whether the reset method is executable. + + + + + Checks whether the reset method is executable by the current user. + + + + + Handles the reset method. + + + + + Stores an instance of the ProgramTransitionEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditProgramTransitionEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ProgramTransitionAuditEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ProgramDiagnosticType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the ProgramDiagnostic2Type VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the _BrowseName_ variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + The variable that the value belongs to. + + + + + The value of the variable. + + + + + Initializes the object. + + + + + Reads the value of the variable. + + + + + Writes the value of the variable. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Reads the value of the variable child. + + + + + Writes the value of the variable child. + + + + + Stores an instance of the HistoricalDataConfigurationType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the HistoryServerCapabilitiesType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditHistoryEventUpdateEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditHistoryValueUpdateEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditHistoryAnnotationUpdateEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditHistoryDeleteEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditHistoryRawModifyDeleteEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditHistoryAtTimeDeleteEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AuditHistoryEventDeleteEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the OpenWithMasksMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the CloseAndUpdateMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddCertificateMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveCertificateMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the TrustListType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the TrustListOutOfDateAlarmType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the CertificateGroupType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the CertificateGroupFolderType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the CertificateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ApplicationCertificateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the HttpsCertificateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the UserCredentialCertificateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the RsaMinApplicationCertificateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the RsaSha256ApplicationCertificateType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the TrustListUpdatedAuditEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the UpdateCertificateMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the CreateSigningRequestMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the GetRejectedListMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the ServerConfigurationType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the CertificateUpdatedAuditEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the CreateCredentialMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the KeyCredentialConfigurationFolderType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the KeyCredentialConfigurationType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the KeyCredentialUpdateMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the KeyCredentialAuditEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the KeyCredentialUpdatedAuditEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the KeyCredentialDeletedAuditEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AuthorizationServiceConfigurationType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AggregateConfigurationType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubKeyServiceType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the GetSecurityKeysMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the GetSecurityGroupMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddSecurityGroupMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveSecurityGroupMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the SecurityGroupFolderType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the SecurityGroupType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PublishSubscribeType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the SetSecurityKeysMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddConnectionMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveConnectionMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PublishedDataSetType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the ExtensionFieldsType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AddExtensionFieldMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveExtensionFieldMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PublishedDataItemsType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PublishedDataItemsAddVariablesMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PublishedDataItemsRemoveVariablesMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PublishedEventsType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PublishedEventsTypeModifyFieldSelectionMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the DataSetFolderType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AddPublishedDataItemsMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddPublishedEventsMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddPublishedDataItemsTemplateMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddPublishedEventsTemplateMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemovePublishedDataSetMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the AddDataSetFolderMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the RemoveDataSetFolderMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PubSubConnectionType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubConnectionTypeAddWriterGroupMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PubSubConnectionAddReaderGroupGroupMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PubSubConnectionTypeRemoveGroupMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the ConnectionTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the PubSubGroupType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the WriterGroupType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubGroupTypeAddWriterrMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PubSubGroupTypeRemoveWriterMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the WriterGroupTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the WriterGroupMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ReaderGroupType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubGroupTypeAddReaderMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the PubSubGroupTypeRemoveReaderMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the ReaderGroupTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the ReaderGroupMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the DataSetWriterType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the DataSetWriterTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the DataSetWriterMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the DataSetReaderType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the DataSetReaderTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the DataSetReaderMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the DataSetReaderTypeCreateTargetVariablesMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the DataSetReaderTypeCreateDataSetMirrorMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the SubscribedDataSetType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the TargetVariablesType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the TargetVariablesTypeAddTargetVariablesMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the TargetVariablesTypeRemoveTargetVariablesMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the SubscribedDataSetMirrorType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the PubSubStatusType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubDiagnosticsType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubDiagnosticsCounterType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubDiagnosticsRootType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the PubSubDiagnosticsConnectionType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the PubSubDiagnosticsWriterGroupType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the PubSubDiagnosticsReaderGroupType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the PubSubDiagnosticsDataSetWriterType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the PubSubDiagnosticsDataSetReaderType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the PubSubStatusEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubTransportLimitsExceedEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the PubSubCommunicationFailureEventType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the UadpWriterGroupMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the UadpDataSetWriterMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the UadpDataSetReaderMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the JsonWriterGroupMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the JsonDataSetWriterMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the JsonDataSetReaderMessageType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the DatagramConnectionTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the DatagramWriterGroupTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the BrokerConnectionTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the BrokerWriterGroupTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the BrokerDataSetWriterTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the BrokerDataSetReaderTransportType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the NetworkAddressType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the NetworkAddressUrlType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the AliasNameType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + Stores an instance of the AliasNameCategoryType ObjectType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Stores an instance of the FindAliasMethodType Method. + + + + + + Initializes the type with its default attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance. + + + + + Initializes the any option children defined for the instance. + + + + + Raised when the the method is called. + + + + + Invokes the method, returns the result and output argument. + + + + + Used to receive notifications when the method is called. + + + + + + Stores an instance of the MultiStateDictionaryEntryDiscreteBaseType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + + + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed version of the MultiStateDictionaryEntryDiscreteBaseType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + Stores an instance of the MultiStateDictionaryEntryDiscreteType VariableType. + + + + + + Initializes the type with its default attribute values. + + + + + Returns the id of the default type definition node for the instance. + + + + + Returns the id of the default data type node for the instance. + + + + + Returns the id of the default value rank for the instance. + + + + + Initializes the instance. + + + + + Initializes the instance with a node. + + + + + Initializes the any option children defined for the instance. + + + + + A typed version of the MultiStateDictionaryEntryDiscreteType variable. + + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Initializes the instance with a node. + + + + + The value of the variable. + + + + + A class that declares constants for all Methods in the Model Design. + + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Open Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Close Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Read Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Write Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_GetPosition Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_SetPosition Method. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_AddRole Method. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_RemoveRole Method. + + + + + The identifier for the ServerType_GetMonitoredItems Method. + + + + + The identifier for the ServerType_ResendData Method. + + + + + The identifier for the ServerType_SetSubscriptionDurable Method. + + + + + The identifier for the ServerType_RequestServerStateChange Method. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_AddRole Method. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_RemoveRole Method. + + + + + The identifier for the FileType_Open Method. + + + + + The identifier for the FileType_Close Method. + + + + + The identifier for the FileType_Read Method. + + + + + The identifier for the FileType_Write Method. + + + + + The identifier for the FileType_GetPosition Method. + + + + + The identifier for the FileType_SetPosition Method. + + + + + The identifier for the AddressSpaceFileType_ExportNamespace Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Open Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Close Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Read Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Write Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_GetPosition Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_SetPosition Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Open Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Close Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Read Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Write Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_SetPosition Method. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_AddRole Method. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_RemoveRole Method. + + + + + The identifier for the Server_GetMonitoredItems Method. + + + + + The identifier for the Server_ResendData Method. + + + + + The identifier for the Server_SetSubscriptionDurable Method. + + + + + The identifier for the Server_RequestServerStateChange Method. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateDirectory Method. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateFile Method. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_DeleteFileSystemObject Method. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_MoveOrCopy Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Open Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Close Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Read Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Write Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_GetPosition Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_SetPosition Method. + + + + + The identifier for the FileDirectoryType_CreateDirectory Method. + + + + + The identifier for the FileDirectoryType_CreateFile Method. + + + + + The identifier for the FileDirectoryType_DeleteFileSystemObject Method. + + + + + The identifier for the FileDirectoryType_MoveOrCopy Method. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateDirectory Method. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateFile Method. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_DeleteFileSystemObject Method. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_MoveOrCopy Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_Open Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_Close Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_Read Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_Write Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_GetPosition Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_SetPosition Method. + + + + + The identifier for the FileSystem_CreateDirectory Method. + + + + + The identifier for the FileSystem_CreateFile Method. + + + + + The identifier for the FileSystem_DeleteFileSystemObject Method. + + + + + The identifier for the FileSystem_MoveOrCopy Method. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForRead Method. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForWrite Method. + + + + + The identifier for the TemporaryFileTransferType_CloseAndCommit Method. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder_Reset Method. + + + + + The identifier for the FileTransferStateMachineType_Reset Method. + + + + + The identifier for the RoleSetType_AddRole Method. + + + + + The identifier for the RoleSetType_RemoveRole Method. + + + + + The identifier for the RoleType_AddIdentity Method. + + + + + The identifier for the RoleType_RemoveIdentity Method. + + + + + The identifier for the RoleType_AddApplication Method. + + + + + The identifier for the RoleType_RemoveApplication Method. + + + + + The identifier for the RoleType_AddEndpoint Method. + + + + + The identifier for the RoleType_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Anonymous_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Anonymous_AddApplication Method. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Anonymous_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddIdentity Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddApplication Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Observer_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Observer_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Observer_AddApplication Method. + + + + + The identifier for the WellKnownRole_Observer_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Observer_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Observer_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Operator_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Operator_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Operator_AddApplication Method. + + + + + The identifier for the WellKnownRole_Operator_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Operator_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Operator_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Engineer_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Engineer_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Engineer_AddApplication Method. + + + + + The identifier for the WellKnownRole_Engineer_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Engineer_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Engineer_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Supervisor_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Supervisor_AddApplication Method. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Supervisor_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddIdentity Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddApplication Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddIdentity Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddApplication Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveEndpoint Method. + + + + + The identifier for the ConditionType_Disable Method. + + + + + The identifier for the ConditionType_Enable Method. + + + + + The identifier for the ConditionType_AddComment Method. + + + + + The identifier for the ConditionType_ConditionRefresh Method. + + + + + The identifier for the ConditionType_ConditionRefresh2 Method. + + + + + The identifier for the DialogConditionType_Respond Method. + + + + + The identifier for the AcknowledgeableConditionType_Acknowledge Method. + + + + + The identifier for the AcknowledgeableConditionType_Confirm Method. + + + + + The identifier for the AlarmConditionType_ShelvingState_TimedShelve Method. + + + + + The identifier for the AlarmConditionType_ShelvingState_Unshelve Method. + + + + + The identifier for the AlarmConditionType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the AlarmConditionType_Silence Method. + + + + + The identifier for the AlarmConditionType_Suppress Method. + + + + + The identifier for the AlarmConditionType_Unsuppress Method. + + + + + The identifier for the AlarmConditionType_RemoveFromService Method. + + + + + The identifier for the AlarmConditionType_PlaceInService Method. + + + + + The identifier for the AlarmConditionType_Reset Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Disable Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Enable Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_AddComment Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Acknowledge Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_TimedShelve Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_Unshelve Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ShelvedStateMachineType_TimedShelve Method. + + + + + The identifier for the ShelvedStateMachineType_Unshelve Method. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelve Method. + + + + + The identifier for the LimitAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the LimitAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the LimitAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the TripAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the TripAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the TripAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the AlarmMetricsType_Reset Method. + + + + + The identifier for the ProgramStateMachineType_Start Method. + + + + + The identifier for the ProgramStateMachineType_Suspend Method. + + + + + The identifier for the ProgramStateMachineType_Resume Method. + + + + + The identifier for the ProgramStateMachineType_Halt Method. + + + + + The identifier for the ProgramStateMachineType_Reset Method. + + + + + The identifier for the TrustListType_OpenWithMasks Method. + + + + + The identifier for the TrustListType_CloseAndUpdate Method. + + + + + The identifier for the TrustListType_AddCertificate Method. + + + + + The identifier for the TrustListType_RemoveCertificate Method. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupType_TrustList_Open Method. + + + + + The identifier for the CertificateGroupType_TrustList_Close Method. + + + + + The identifier for the CertificateGroupType_TrustList_Read Method. + + + + + The identifier for the CertificateGroupType_TrustList_Write Method. + + + + + The identifier for the CertificateGroupType_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupType_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupType_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Open Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Close Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Read Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Write Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_UpdateCertificate Method. + + + + + The identifier for the ServerConfigurationType_ApplyChanges Method. + + + + + The identifier for the ServerConfigurationType_CreateSigningRequest Method. + + + + + The identifier for the ServerConfigurationType_GetRejectedList Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_UpdateCertificate Method. + + + + + The identifier for the ServerConfiguration_ApplyChanges Method. + + + + + The identifier for the ServerConfiguration_CreateSigningRequest Method. + + + + + The identifier for the ServerConfiguration_GetRejectedList Method. + + + + + The identifier for the KeyCredentialConfigurationFolderType_CreateCredential Method. + + + + + The identifier for the KeyCredentialConfigurationType_UpdateCredential Method. + + + + + The identifier for the KeyCredentialConfigurationType_DeleteCredential Method. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityKeys Method. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityGroup Method. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_AddSecurityGroup Method. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_RemoveSecurityGroup Method. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup Method. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_RemoveSecurityGroup Method. + + + + + The identifier for the SecurityGroupFolderType_AddSecurityGroup Method. + + + + + The identifier for the SecurityGroupFolderType_RemoveSecurityGroup Method. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_AddSecurityGroup Method. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_RemoveSecurityGroup Method. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishSubscribeType_SetSecurityKeys Method. + + + + + The identifier for the PublishSubscribeType_AddConnection Method. + + + + + The identifier for the PublishSubscribeType_RemoveConnection Method. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Reset Method. + + + + + The identifier for the PublishSubscribe_GetSecurityKeys Method. + + + + + The identifier for the PublishSubscribe_GetSecurityGroup Method. + + + + + The identifier for the PublishSubscribe_SecurityGroups_AddSecurityGroup Method. + + + + + The identifier for the PublishSubscribe_SecurityGroups_RemoveSecurityGroup Method. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishSubscribe_AddConnection Method. + + + + + The identifier for the PublishSubscribe_RemoveConnection Method. + + + + + The identifier for the PublishSubscribe_Diagnostics_Reset Method. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_AddExtensionField Method. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_RemoveExtensionField Method. + + + + + The identifier for the ExtensionFieldsType_AddExtensionField Method. + + + + + The identifier for the ExtensionFieldsType_RemoveExtensionField Method. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_AddExtensionField Method. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_RemoveExtensionField Method. + + + + + The identifier for the PublishedDataItemsType_AddVariables Method. + + + + + The identifier for the PublishedDataItemsType_RemoveVariables Method. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishedEventsType_ExtensionFields_AddExtensionField Method. + + + + + The identifier for the PublishedEventsType_ExtensionFields_RemoveExtensionField Method. + + + + + The identifier for the PublishedEventsType_ModifyFieldSelection Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItems Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEvents Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_RemovePublishedDataSet Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddDataSetFolder Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_RemoveDataSetFolder Method. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField Method. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_RemoveExtensionField Method. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItems Method. + + + + + The identifier for the DataSetFolderType_AddPublishedEvents Method. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItemsTemplate Method. + + + + + The identifier for the DataSetFolderType_AddPublishedEventsTemplate Method. + + + + + The identifier for the DataSetFolderType_RemovePublishedDataSet Method. + + + + + The identifier for the DataSetFolderType_AddDataSetFolder Method. + + + + + The identifier for the DataSetFolderType_RemoveDataSetFolder Method. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Reset Method. + + + + + The identifier for the PubSubConnectionType_AddWriterGroup Method. + + + + + The identifier for the PubSubConnectionType_AddReaderGroup Method. + + + + + The identifier for the PubSubConnectionType_RemoveGroup Method. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the WriterGroupType_Diagnostics_Reset Method. + + + + + The identifier for the WriterGroupType_AddDataSetWriter Method. + + + + + The identifier for the WriterGroupType_RemoveDataSetWriter Method. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the ReaderGroupType_Diagnostics_Reset Method. + + + + + The identifier for the ReaderGroupType_AddDataSetReader Method. + + + + + The identifier for the ReaderGroupType_RemoveDataSetReader Method. + + + + + The identifier for the DataSetWriterType_Diagnostics_Reset Method. + + + + + The identifier for the DataSetReaderType_Diagnostics_Reset Method. + + + + + The identifier for the DataSetReaderType_CreateTargetVariables Method. + + + + + The identifier for the DataSetReaderType_CreateDataSetMirror Method. + + + + + The identifier for the TargetVariablesType_AddTargetVariables Method. + + + + + The identifier for the TargetVariablesType_RemoveTargetVariables Method. + + + + + The identifier for the PubSubStatusType_Enable Method. + + + + + The identifier for the PubSubStatusType_Disable Method. + + + + + The identifier for the PubSubDiagnosticsType_Reset Method. + + + + + The identifier for the AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias Method. + + + + + The identifier for the AliasNameCategoryType_FindAlias Method. + + + + + The identifier for the Aliases_SubAliasNameCategories_Placeholder_FindAlias Method. + + + + + The identifier for the Aliases_FindAlias Method. + + + + + The identifier for the TagVariables_SubAliasNameCategories_Placeholder_FindAlias Method. + + + + + The identifier for the TagVariables_FindAlias Method. + + + + + The identifier for the Topics_SubAliasNameCategories_Placeholder_FindAlias Method. + + + + + The identifier for the Topics_FindAlias Method. + + + + + A class that declares constants for all Objects in the Model Design. + + + + + + The identifier for the DefaultBinary Object. + + + + + The identifier for the DefaultXml Object. + + + + + The identifier for the ModellingRule_Mandatory Object. + + + + + The identifier for the ModellingRule_Optional Object. + + + + + The identifier for the ModellingRule_ExposesItsArray Object. + + + + + The identifier for the ModellingRule_OptionalPlaceholder Object. + + + + + The identifier for the ModellingRule_MandatoryPlaceholder Object. + + + + + The identifier for the RootFolder Object. + + + + + The identifier for the ObjectsFolder Object. + + + + + The identifier for the TypesFolder Object. + + + + + The identifier for the ViewsFolder Object. + + + + + The identifier for the ObjectTypesFolder Object. + + + + + The identifier for the VariableTypesFolder Object. + + + + + The identifier for the DataTypesFolder Object. + + + + + The identifier for the ReferenceTypesFolder Object. + + + + + The identifier for the XmlSchema_TypeSystem Object. + + + + + The identifier for the OPCBinarySchema_TypeSystem Object. + + + + + The identifier for the OPCUANamespaceMetadata Object. + + + + + The identifier for the ServerType_ServerCapabilities Object. + + + + + The identifier for the ServerType_ServerCapabilities_ModellingRules Object. + + + + + The identifier for the ServerType_ServerCapabilities_AggregateFunctions Object. + + + + + The identifier for the ServerType_ServerDiagnostics Object. + + + + + The identifier for the ServerType_ServerDiagnostics_SessionsDiagnosticsSummary Object. + + + + + The identifier for the ServerType_VendorServerInfo Object. + + + + + The identifier for the ServerType_ServerRedundancy Object. + + + + + The identifier for the ServerType_Namespaces Object. + + + + + The identifier for the ServerCapabilitiesType_OperationLimits Object. + + + + + The identifier for the ServerCapabilitiesType_ModellingRules Object. + + + + + The identifier for the ServerCapabilitiesType_AggregateFunctions Object. + + + + + The identifier for the ServerCapabilitiesType_RoleSet Object. + + + + + The identifier for the ServerDiagnosticsType_SessionsDiagnosticsSummary Object. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder Object. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile Object. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder Object. + + + + + The identifier for the EventTypesFolder Object. + + + + + The identifier for the Server Object. + + + + + The identifier for the Server_ServerCapabilities Object. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits Object. + + + + + The identifier for the Server_ServerCapabilities_ModellingRules Object. + + + + + The identifier for the Server_ServerCapabilities_AggregateFunctions Object. + + + + + The identifier for the Server_ServerCapabilities_RoleSet Object. + + + + + The identifier for the Server_ServerDiagnostics Object. + + + + + The identifier for the Server_ServerDiagnostics_SessionsDiagnosticsSummary Object. + + + + + The identifier for the Server_VendorServerInfo Object. + + + + + The identifier for the Server_ServerRedundancy Object. + + + + + The identifier for the Server_Namespaces Object. + + + + + The identifier for the HistoryServerCapabilities Object. + + + + + The identifier for the HistoryServerCapabilities_AggregateFunctions Object. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder Object. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder Object. + + + + + The identifier for the FileSystem Object. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder Object. + + + + + The identifier for the FileTransferStateMachineType_Idle Object. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepare Object. + + + + + The identifier for the FileTransferStateMachineType_ReadTransfer Object. + + + + + The identifier for the FileTransferStateMachineType_ApplyWrite Object. + + + + + The identifier for the FileTransferStateMachineType_Error Object. + + + + + The identifier for the FileTransferStateMachineType_IdleToReadPrepare Object. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepareToReadTransfer Object. + + + + + The identifier for the FileTransferStateMachineType_ReadTransferToIdle Object. + + + + + The identifier for the FileTransferStateMachineType_IdleToApplyWrite Object. + + + + + The identifier for the FileTransferStateMachineType_ApplyWriteToIdle Object. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepareToError Object. + + + + + The identifier for the FileTransferStateMachineType_ReadTransferToError Object. + + + + + The identifier for the FileTransferStateMachineType_ApplyWriteToError Object. + + + + + The identifier for the FileTransferStateMachineType_ErrorToIdle Object. + + + + + The identifier for the RoleSetType_RoleName_Placeholder Object. + + + + + The identifier for the WellKnownRole_Anonymous Object. + + + + + The identifier for the WellKnownRole_AuthenticatedUser Object. + + + + + The identifier for the WellKnownRole_Observer Object. + + + + + The identifier for the WellKnownRole_Operator Object. + + + + + The identifier for the WellKnownRole_Engineer Object. + + + + + The identifier for the WellKnownRole_Supervisor Object. + + + + + The identifier for the WellKnownRole_ConfigureAdmin Object. + + + + + The identifier for the WellKnownRole_SecurityAdmin Object. + + + + + The identifier for the DictionaryEntryType_DictionaryEntryName_Placeholder Object. + + + + + The identifier for the DictionaryFolderType_DictionaryFolderName_Placeholder Object. + + + + + The identifier for the DictionaryFolderType_DictionaryEntryName_Placeholder Object. + + + + + The identifier for the Dictionaries Object. + + + + + The identifier for the InterfaceTypes Object. + + + + + The identifier for the OrderedListType_OrderedObject_Placeholder Object. + + + + + The identifier for the AlarmConditionType_ShelvingState Object. + + + + + The identifier for the AlarmConditionType_FirstInGroup Object. + + + + + The identifier for the AlarmConditionType_AlarmGroup_Placeholder Object. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder Object. + + + + + The identifier for the ShelvedStateMachineType_Unshelved Object. + + + + + The identifier for the ShelvedStateMachineType_TimedShelved Object. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelved Object. + + + + + The identifier for the ShelvedStateMachineType_UnshelvedToTimedShelved Object. + + + + + The identifier for the ShelvedStateMachineType_UnshelvedToOneShotShelved Object. + + + + + The identifier for the ShelvedStateMachineType_TimedShelvedToUnshelved Object. + + + + + The identifier for the ShelvedStateMachineType_TimedShelvedToOneShotShelved Object. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelvedToUnshelved Object. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelvedToTimedShelved Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighHigh Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_High Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_Low Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowLow Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowLowToLow Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowToLowLow Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighHighToHigh Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighToHighHigh Object. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState Object. + + + + + The identifier for the ProgramStateMachineType_FinalResultData Object. + + + + + The identifier for the ProgramStateMachineType_Halted Object. + + + + + The identifier for the ProgramStateMachineType_Ready Object. + + + + + The identifier for the ProgramStateMachineType_Running Object. + + + + + The identifier for the ProgramStateMachineType_Suspended Object. + + + + + The identifier for the ProgramStateMachineType_HaltedToReady Object. + + + + + The identifier for the ProgramStateMachineType_ReadyToRunning Object. + + + + + The identifier for the ProgramStateMachineType_RunningToHalted Object. + + + + + The identifier for the ProgramStateMachineType_RunningToReady Object. + + + + + The identifier for the ProgramStateMachineType_RunningToSuspended Object. + + + + + The identifier for the ProgramStateMachineType_SuspendedToRunning Object. + + + + + The identifier for the ProgramStateMachineType_SuspendedToHalted Object. + + + + + The identifier for the ProgramStateMachineType_SuspendedToReady Object. + + + + + The identifier for the ProgramStateMachineType_ReadyToHalted Object. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration Object. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateFunctions Object. + + + + + The identifier for the HAConfiguration Object. + + + + + The identifier for the HAConfiguration_AggregateConfiguration Object. + + + + + The identifier for the HistoryServerCapabilitiesType_AggregateFunctions Object. + + + + + The identifier for the CertificateGroupType_TrustList Object. + + + + + The identifier for the CertificateGroupType_CertificateExpired Object. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder Object. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the ServerConfiguration Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the KeyCredentialConfigurationFolderType_ServiceName_Placeholder Object. + + + + + The identifier for the KeyCredentialConfiguration Object. + + + + + The identifier for the AuthorizationServices Object. + + + + + The identifier for the AggregateFunction_Interpolative Object. + + + + + The identifier for the AggregateFunction_Average Object. + + + + + The identifier for the AggregateFunction_TimeAverage Object. + + + + + The identifier for the AggregateFunction_TimeAverage2 Object. + + + + + The identifier for the AggregateFunction_Total Object. + + + + + The identifier for the AggregateFunction_Total2 Object. + + + + + The identifier for the AggregateFunction_Minimum Object. + + + + + The identifier for the AggregateFunction_Maximum Object. + + + + + The identifier for the AggregateFunction_MinimumActualTime Object. + + + + + The identifier for the AggregateFunction_MaximumActualTime Object. + + + + + The identifier for the AggregateFunction_Range Object. + + + + + The identifier for the AggregateFunction_Minimum2 Object. + + + + + The identifier for the AggregateFunction_Maximum2 Object. + + + + + The identifier for the AggregateFunction_MinimumActualTime2 Object. + + + + + The identifier for the AggregateFunction_MaximumActualTime2 Object. + + + + + The identifier for the AggregateFunction_Range2 Object. + + + + + The identifier for the AggregateFunction_AnnotationCount Object. + + + + + The identifier for the AggregateFunction_Count Object. + + + + + The identifier for the AggregateFunction_DurationInStateZero Object. + + + + + The identifier for the AggregateFunction_DurationInStateNonZero Object. + + + + + The identifier for the AggregateFunction_NumberOfTransitions Object. + + + + + The identifier for the AggregateFunction_Start Object. + + + + + The identifier for the AggregateFunction_End Object. + + + + + The identifier for the AggregateFunction_Delta Object. + + + + + The identifier for the AggregateFunction_StartBound Object. + + + + + The identifier for the AggregateFunction_EndBound Object. + + + + + The identifier for the AggregateFunction_DeltaBounds Object. + + + + + The identifier for the AggregateFunction_DurationGood Object. + + + + + The identifier for the AggregateFunction_DurationBad Object. + + + + + The identifier for the AggregateFunction_PercentGood Object. + + + + + The identifier for the AggregateFunction_PercentBad Object. + + + + + The identifier for the AggregateFunction_WorstQuality Object. + + + + + The identifier for the AggregateFunction_WorstQuality2 Object. + + + + + The identifier for the AggregateFunction_StandardDeviationSample Object. + + + + + The identifier for the AggregateFunction_StandardDeviationPopulation Object. + + + + + The identifier for the AggregateFunction_VarianceSample Object. + + + + + The identifier for the AggregateFunction_VariancePopulation Object. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups Object. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder Object. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Address Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Status Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets Object. + + + + + The identifier for the PublishSubscribeType_Status Object. + + + + + The identifier for the PublishSubscribeType_Diagnostics Object. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters Object. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishSubscribe Object. + + + + + The identifier for the PublishSubscribe_SecurityGroups Object. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Address Object. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Status Object. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishSubscribe_PublishedDataSets Object. + + + + + The identifier for the PublishSubscribe_Status Object. + + + + + The identifier for the PublishSubscribe_Diagnostics Object. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters Object. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder Object. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Status Object. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishedDataSetType_ExtensionFields Object. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Status Object. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Status Object. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder Object. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder Object. + + + + + The identifier for the PubSubConnectionType_Address Object. + + + + + The identifier for the PubSubConnectionType_TransportSettings Object. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder Object. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Status Object. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder Object. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Status Object. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PubSubConnectionType_Status Object. + + + + + The identifier for the PubSubConnectionType_Diagnostics Object. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters Object. + + + + + The identifier for the PubSubConnectionType_Diagnostics_LiveValues Object. + + + + + The identifier for the PubSubGroupType_Status Object. + + + + + The identifier for the WriterGroupType_TransportSettings Object. + + + + + The identifier for the WriterGroupType_MessageSettings Object. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder Object. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Status Object. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the WriterGroupType_Diagnostics Object. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters Object. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Status Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_SubscribedDataSet Object. + + + + + The identifier for the ReaderGroupType_Diagnostics Object. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters Object. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues Object. + + + + + The identifier for the ReaderGroupType_TransportSettings Object. + + + + + The identifier for the ReaderGroupType_MessageSettings Object. + + + + + The identifier for the DataSetWriterType_TransportSettings Object. + + + + + The identifier for the DataSetWriterType_MessageSettings Object. + + + + + The identifier for the DataSetWriterType_Status Object. + + + + + The identifier for the DataSetWriterType_Diagnostics Object. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters Object. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues Object. + + + + + The identifier for the DataSetReaderType_TransportSettings Object. + + + + + The identifier for the DataSetReaderType_MessageSettings Object. + + + + + The identifier for the DataSetReaderType_Status Object. + + + + + The identifier for the DataSetReaderType_Diagnostics Object. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters Object. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues Object. + + + + + The identifier for the DataSetReaderType_SubscribedDataSet Object. + + + + + The identifier for the PubSubDiagnosticsType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsConnectionType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues Object. + + + + + The identifier for the DatagramConnectionTransportType_DiscoveryAddress Object. + + + + + The identifier for the AliasNameCategoryType_Alias_Placeholder Object. + + + + + The identifier for the AliasNameCategoryType_SubAliasNameCategories_Placeholder Object. + + + + + The identifier for the Aliases Object. + + + + + The identifier for the TagVariables Object. + + + + + The identifier for the Topics Object. + + + + + The identifier for the KeyValuePair_Encoding_DefaultBinary Object. + + + + + The identifier for the EndpointType_Encoding_DefaultBinary Object. + + + + + The identifier for the RationalNumber_Encoding_DefaultBinary Object. + + + + + The identifier for the Vector_Encoding_DefaultBinary Object. + + + + + The identifier for the ThreeDVector_Encoding_DefaultBinary Object. + + + + + The identifier for the CartesianCoordinates_Encoding_DefaultBinary Object. + + + + + The identifier for the ThreeDCartesianCoordinates_Encoding_DefaultBinary Object. + + + + + The identifier for the Orientation_Encoding_DefaultBinary Object. + + + + + The identifier for the ThreeDOrientation_Encoding_DefaultBinary Object. + + + + + The identifier for the Frame_Encoding_DefaultBinary Object. + + + + + The identifier for the ThreeDFrame_Encoding_DefaultBinary Object. + + + + + The identifier for the IdentityMappingRuleType_Encoding_DefaultBinary Object. + + + + + The identifier for the CurrencyUnitType_Encoding_DefaultBinary Object. + + + + + The identifier for the TrustListDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DecimalDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeSchemaHeader_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the StructureDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the EnumDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the SimpleTypeDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the UABinaryFileDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetMetaDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the FieldMetaData_Encoding_DefaultBinary Object. + + + + + The identifier for the ConfigurationVersionDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedDataSetDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedDataSetSourceDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedVariableDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedDataItemsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedEventsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetWriterDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetWriterTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetWriterMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PubSubGroupDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the WriterGroupDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the WriterGroupTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the WriterGroupMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PubSubConnectionDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ConnectionTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the NetworkAddressDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the NetworkAddressUrlDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ReaderGroupDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ReaderGroupTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ReaderGroupMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetReaderDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetReaderTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetReaderMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SubscribedDataSetDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the TargetVariablesDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the FieldTargetDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SubscribedDataSetMirrorDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PubSubConfigurationDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the UadpWriterGroupMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the UadpDataSetWriterMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the UadpDataSetReaderMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the JsonWriterGroupMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the JsonDataSetWriterMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the JsonDataSetReaderMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DatagramConnectionTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DatagramWriterGroupTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the BrokerConnectionTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the BrokerWriterGroupTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the BrokerDataSetWriterTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the BrokerDataSetReaderTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the AliasNameDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the RolePermissionType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeDefinition_Encoding_DefaultBinary Object. + + + + + The identifier for the StructureField_Encoding_DefaultBinary Object. + + + + + The identifier for the StructureDefinition_Encoding_DefaultBinary Object. + + + + + The identifier for the EnumDefinition_Encoding_DefaultBinary Object. + + + + + The identifier for the Node_Encoding_DefaultBinary Object. + + + + + The identifier for the InstanceNode_Encoding_DefaultBinary Object. + + + + + The identifier for the TypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ObjectNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ObjectTypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the VariableNode_Encoding_DefaultBinary Object. + + + + + The identifier for the VariableTypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ReferenceTypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the MethodNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ViewNode_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ReferenceNode_Encoding_DefaultBinary Object. + + + + + The identifier for the Argument_Encoding_DefaultBinary Object. + + + + + The identifier for the EnumValueType_Encoding_DefaultBinary Object. + + + + + The identifier for the EnumField_Encoding_DefaultBinary Object. + + + + + The identifier for the OptionSet_Encoding_DefaultBinary Object. + + + + + The identifier for the Union_Encoding_DefaultBinary Object. + + + + + The identifier for the TimeZoneDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ApplicationDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the RequestHeader_Encoding_DefaultBinary Object. + + + + + The identifier for the ResponseHeader_Encoding_DefaultBinary Object. + + + + + The identifier for the ServiceFault_Encoding_DefaultBinary Object. + + + + + The identifier for the SessionlessInvokeRequestType_Encoding_DefaultBinary Object. + + + + + The identifier for the SessionlessInvokeResponseType_Encoding_DefaultBinary Object. + + + + + The identifier for the FindServersRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the FindServersResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the ServerOnNetwork_Encoding_DefaultBinary Object. + + + + + The identifier for the FindServersOnNetworkRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the FindServersOnNetworkResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the UserTokenPolicy_Encoding_DefaultBinary Object. + + + + + The identifier for the EndpointDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the GetEndpointsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the GetEndpointsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisteredServer_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterServerRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterServerResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DiscoveryConfiguration_Encoding_DefaultBinary Object. + + + + + The identifier for the MdnsDiscoveryConfiguration_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterServer2Request_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterServer2Response_Encoding_DefaultBinary Object. + + + + + The identifier for the ChannelSecurityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the OpenSecureChannelRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the OpenSecureChannelResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CloseSecureChannelRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CloseSecureChannelResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the SignedSoftwareCertificate_Encoding_DefaultBinary Object. + + + + + The identifier for the SignatureData_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateSessionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateSessionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the UserIdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the AnonymousIdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the UserNameIdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the X509IdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the IssuedIdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the ActivateSessionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the ActivateSessionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CloseSessionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CloseSessionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CancelRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CancelResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the NodeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the ObjectAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the VariableAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the MethodAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the ObjectTypeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the VariableTypeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the ReferenceTypeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the ViewAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the GenericAttributeValue_Encoding_DefaultBinary Object. + + + + + The identifier for the GenericAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the AddNodesItem_Encoding_DefaultBinary Object. + + + + + The identifier for the AddNodesResult_Encoding_DefaultBinary Object. + + + + + The identifier for the AddNodesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the AddNodesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the AddReferencesItem_Encoding_DefaultBinary Object. + + + + + The identifier for the AddReferencesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the AddReferencesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteNodesItem_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteNodesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteNodesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteReferencesItem_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteReferencesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteReferencesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the ViewDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the ReferenceDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseResult_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseNextRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseNextResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the RelativePathElement_Encoding_DefaultBinary Object. + + + + + The identifier for the RelativePath_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowsePath_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowsePathTarget_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowsePathResult_Encoding_DefaultBinary Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterNodesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterNodesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the UnregisterNodesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the UnregisterNodesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the EndpointConfiguration_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryDataDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the NodeTypeDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryDataSet_Encoding_DefaultBinary Object. + + + + + The identifier for the NodeReference_Encoding_DefaultBinary Object. + + + + + The identifier for the ContentFilterElement_Encoding_DefaultBinary Object. + + + + + The identifier for the ContentFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the FilterOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the ElementOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the LiteralOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the AttributeOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the SimpleAttributeOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the ContentFilterElementResult_Encoding_DefaultBinary Object. + + + + + The identifier for the ContentFilterResult_Encoding_DefaultBinary Object. + + + + + The identifier for the ParsingResult_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryFirstRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryFirstResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryNextRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryNextResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadValueId_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadValueId_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadResult_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadEventDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadRawModifiedDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadProcessedDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadAtTimeDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadAnnotationDataDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryData_Encoding_DefaultBinary Object. + + + + + The identifier for the ModificationInfo_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryModifiedData_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryEvent_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the WriteValue_Encoding_DefaultBinary Object. + + + + + The identifier for the WriteRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the WriteResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryUpdateDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the UpdateDataDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the UpdateStructureDataDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the UpdateEventDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteRawModifiedDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteAtTimeDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteEventDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryUpdateResult_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryUpdateRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryUpdateResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CallMethodRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CallMethodResult_Encoding_DefaultBinary Object. + + + + + The identifier for the CallRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CallResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoringFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the DataChangeFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the EventFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the AggregateConfiguration_Encoding_DefaultBinary Object. + + + + + The identifier for the AggregateFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoringFilterResult_Encoding_DefaultBinary Object. + + + + + The identifier for the EventFilterResult_Encoding_DefaultBinary Object. + + + + + The identifier for the AggregateFilterResult_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoringParameters_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemCreateRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemCreateResult_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateMonitoredItemsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateMonitoredItemsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemModifyRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemModifyResult_Encoding_DefaultBinary Object. + + + + + The identifier for the ModifyMonitoredItemsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the ModifyMonitoredItemsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the SetMonitoringModeRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the SetMonitoringModeResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the SetTriggeringRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the SetTriggeringResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteMonitoredItemsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteMonitoredItemsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateSubscriptionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateSubscriptionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the ModifySubscriptionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the ModifySubscriptionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the SetPublishingModeRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the SetPublishingModeResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the NotificationMessage_Encoding_DefaultBinary Object. + + + + + The identifier for the NotificationData_Encoding_DefaultBinary Object. + + + + + The identifier for the DataChangeNotification_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemNotification_Encoding_DefaultBinary Object. + + + + + The identifier for the EventNotificationList_Encoding_DefaultBinary Object. + + + + + The identifier for the EventFieldList_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryEventFieldList_Encoding_DefaultBinary Object. + + + + + The identifier for the StatusChangeNotification_Encoding_DefaultBinary Object. + + + + + The identifier for the SubscriptionAcknowledgement_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the RepublishRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the RepublishResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the TransferResult_Encoding_DefaultBinary Object. + + + + + The identifier for the TransferSubscriptionsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the TransferSubscriptionsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteSubscriptionsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteSubscriptionsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the BuildInfo_Encoding_DefaultBinary Object. + + + + + The identifier for the RedundantServerDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the EndpointUrlListDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the NetworkGroupDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SamplingIntervalDiagnosticsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ServerDiagnosticsSummaryDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ServerStatusDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SessionDiagnosticsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SessionSecurityDiagnosticsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ServiceCounterDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the StatusResult_Encoding_DefaultBinary Object. + + + + + The identifier for the SubscriptionDiagnosticsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ModelChangeStructureDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SemanticChangeStructureDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the Range_Encoding_DefaultBinary Object. + + + + + The identifier for the EUInformation_Encoding_DefaultBinary Object. + + + + + The identifier for the ComplexNumberType_Encoding_DefaultBinary Object. + + + + + The identifier for the DoubleComplexNumberType_Encoding_DefaultBinary Object. + + + + + The identifier for the AxisInformation_Encoding_DefaultBinary Object. + + + + + The identifier for the XVType_Encoding_DefaultBinary Object. + + + + + The identifier for the ProgramDiagnosticDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ProgramDiagnostic2DataType_Encoding_DefaultBinary Object. + + + + + The identifier for the Annotation_Encoding_DefaultBinary Object. + + + + + The identifier for the KeyValuePair_Encoding_DefaultXml Object. + + + + + The identifier for the EndpointType_Encoding_DefaultXml Object. + + + + + The identifier for the RationalNumber_Encoding_DefaultXml Object. + + + + + The identifier for the Vector_Encoding_DefaultXml Object. + + + + + The identifier for the ThreeDVector_Encoding_DefaultXml Object. + + + + + The identifier for the CartesianCoordinates_Encoding_DefaultXml Object. + + + + + The identifier for the ThreeDCartesianCoordinates_Encoding_DefaultXml Object. + + + + + The identifier for the Orientation_Encoding_DefaultXml Object. + + + + + The identifier for the ThreeDOrientation_Encoding_DefaultXml Object. + + + + + The identifier for the Frame_Encoding_DefaultXml Object. + + + + + The identifier for the ThreeDFrame_Encoding_DefaultXml Object. + + + + + The identifier for the IdentityMappingRuleType_Encoding_DefaultXml Object. + + + + + The identifier for the CurrencyUnitType_Encoding_DefaultXml Object. + + + + + The identifier for the TrustListDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DecimalDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeSchemaHeader_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeDescription_Encoding_DefaultXml Object. + + + + + The identifier for the StructureDescription_Encoding_DefaultXml Object. + + + + + The identifier for the EnumDescription_Encoding_DefaultXml Object. + + + + + The identifier for the SimpleTypeDescription_Encoding_DefaultXml Object. + + + + + The identifier for the UABinaryFileDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetMetaDataType_Encoding_DefaultXml Object. + + + + + The identifier for the FieldMetaData_Encoding_DefaultXml Object. + + + + + The identifier for the ConfigurationVersionDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedDataSetDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedDataSetSourceDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedVariableDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedDataItemsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedEventsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetWriterDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetWriterTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetWriterMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PubSubGroupDataType_Encoding_DefaultXml Object. + + + + + The identifier for the WriterGroupDataType_Encoding_DefaultXml Object. + + + + + The identifier for the WriterGroupTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the WriterGroupMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PubSubConnectionDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ConnectionTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the NetworkAddressDataType_Encoding_DefaultXml Object. + + + + + The identifier for the NetworkAddressUrlDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ReaderGroupDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ReaderGroupTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ReaderGroupMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetReaderDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetReaderTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetReaderMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SubscribedDataSetDataType_Encoding_DefaultXml Object. + + + + + The identifier for the TargetVariablesDataType_Encoding_DefaultXml Object. + + + + + The identifier for the FieldTargetDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SubscribedDataSetMirrorDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PubSubConfigurationDataType_Encoding_DefaultXml Object. + + + + + The identifier for the UadpWriterGroupMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the UadpDataSetWriterMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the UadpDataSetReaderMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the JsonWriterGroupMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the JsonDataSetWriterMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the JsonDataSetReaderMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DatagramConnectionTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DatagramWriterGroupTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the BrokerConnectionTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the BrokerWriterGroupTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the BrokerDataSetWriterTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the BrokerDataSetReaderTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the AliasNameDataType_Encoding_DefaultXml Object. + + + + + The identifier for the RolePermissionType_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeDefinition_Encoding_DefaultXml Object. + + + + + The identifier for the StructureField_Encoding_DefaultXml Object. + + + + + The identifier for the StructureDefinition_Encoding_DefaultXml Object. + + + + + The identifier for the EnumDefinition_Encoding_DefaultXml Object. + + + + + The identifier for the Node_Encoding_DefaultXml Object. + + + + + The identifier for the InstanceNode_Encoding_DefaultXml Object. + + + + + The identifier for the TypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the ObjectNode_Encoding_DefaultXml Object. + + + + + The identifier for the ObjectTypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the VariableNode_Encoding_DefaultXml Object. + + + + + The identifier for the VariableTypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the ReferenceTypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the MethodNode_Encoding_DefaultXml Object. + + + + + The identifier for the ViewNode_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the ReferenceNode_Encoding_DefaultXml Object. + + + + + The identifier for the Argument_Encoding_DefaultXml Object. + + + + + The identifier for the EnumValueType_Encoding_DefaultXml Object. + + + + + The identifier for the EnumField_Encoding_DefaultXml Object. + + + + + The identifier for the OptionSet_Encoding_DefaultXml Object. + + + + + The identifier for the Union_Encoding_DefaultXml Object. + + + + + The identifier for the TimeZoneDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ApplicationDescription_Encoding_DefaultXml Object. + + + + + The identifier for the RequestHeader_Encoding_DefaultXml Object. + + + + + The identifier for the ResponseHeader_Encoding_DefaultXml Object. + + + + + The identifier for the ServiceFault_Encoding_DefaultXml Object. + + + + + The identifier for the SessionlessInvokeRequestType_Encoding_DefaultXml Object. + + + + + The identifier for the SessionlessInvokeResponseType_Encoding_DefaultXml Object. + + + + + The identifier for the FindServersRequest_Encoding_DefaultXml Object. + + + + + The identifier for the FindServersResponse_Encoding_DefaultXml Object. + + + + + The identifier for the ServerOnNetwork_Encoding_DefaultXml Object. + + + + + The identifier for the FindServersOnNetworkRequest_Encoding_DefaultXml Object. + + + + + The identifier for the FindServersOnNetworkResponse_Encoding_DefaultXml Object. + + + + + The identifier for the UserTokenPolicy_Encoding_DefaultXml Object. + + + + + The identifier for the EndpointDescription_Encoding_DefaultXml Object. + + + + + The identifier for the GetEndpointsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the GetEndpointsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the RegisteredServer_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterServerRequest_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterServerResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DiscoveryConfiguration_Encoding_DefaultXml Object. + + + + + The identifier for the MdnsDiscoveryConfiguration_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterServer2Request_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterServer2Response_Encoding_DefaultXml Object. + + + + + The identifier for the ChannelSecurityToken_Encoding_DefaultXml Object. + + + + + The identifier for the OpenSecureChannelRequest_Encoding_DefaultXml Object. + + + + + The identifier for the OpenSecureChannelResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CloseSecureChannelRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CloseSecureChannelResponse_Encoding_DefaultXml Object. + + + + + The identifier for the SignedSoftwareCertificate_Encoding_DefaultXml Object. + + + + + The identifier for the SignatureData_Encoding_DefaultXml Object. + + + + + The identifier for the CreateSessionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CreateSessionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the UserIdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the AnonymousIdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the UserNameIdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the X509IdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the IssuedIdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the ActivateSessionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the ActivateSessionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CloseSessionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CloseSessionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CancelRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CancelResponse_Encoding_DefaultXml Object. + + + + + The identifier for the NodeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the ObjectAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the VariableAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the MethodAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the ObjectTypeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the VariableTypeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the ReferenceTypeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the ViewAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the GenericAttributeValue_Encoding_DefaultXml Object. + + + + + The identifier for the GenericAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the AddNodesItem_Encoding_DefaultXml Object. + + + + + The identifier for the AddNodesResult_Encoding_DefaultXml Object. + + + + + The identifier for the AddNodesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the AddNodesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the AddReferencesItem_Encoding_DefaultXml Object. + + + + + The identifier for the AddReferencesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the AddReferencesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteNodesItem_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteNodesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteNodesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteReferencesItem_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteReferencesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteReferencesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the ViewDescription_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseDescription_Encoding_DefaultXml Object. + + + + + The identifier for the ReferenceDescription_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseResult_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseRequest_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseResponse_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseNextRequest_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseNextResponse_Encoding_DefaultXml Object. + + + + + The identifier for the RelativePathElement_Encoding_DefaultXml Object. + + + + + The identifier for the RelativePath_Encoding_DefaultXml Object. + + + + + The identifier for the BrowsePath_Encoding_DefaultXml Object. + + + + + The identifier for the BrowsePathTarget_Encoding_DefaultXml Object. + + + + + The identifier for the BrowsePathResult_Encoding_DefaultXml Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterNodesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterNodesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the UnregisterNodesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the UnregisterNodesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the EndpointConfiguration_Encoding_DefaultXml Object. + + + + + The identifier for the QueryDataDescription_Encoding_DefaultXml Object. + + + + + The identifier for the NodeTypeDescription_Encoding_DefaultXml Object. + + + + + The identifier for the QueryDataSet_Encoding_DefaultXml Object. + + + + + The identifier for the NodeReference_Encoding_DefaultXml Object. + + + + + The identifier for the ContentFilterElement_Encoding_DefaultXml Object. + + + + + The identifier for the ContentFilter_Encoding_DefaultXml Object. + + + + + The identifier for the FilterOperand_Encoding_DefaultXml Object. + + + + + The identifier for the ElementOperand_Encoding_DefaultXml Object. + + + + + The identifier for the LiteralOperand_Encoding_DefaultXml Object. + + + + + The identifier for the AttributeOperand_Encoding_DefaultXml Object. + + + + + The identifier for the SimpleAttributeOperand_Encoding_DefaultXml Object. + + + + + The identifier for the ContentFilterElementResult_Encoding_DefaultXml Object. + + + + + The identifier for the ContentFilterResult_Encoding_DefaultXml Object. + + + + + The identifier for the ParsingResult_Encoding_DefaultXml Object. + + + + + The identifier for the QueryFirstRequest_Encoding_DefaultXml Object. + + + + + The identifier for the QueryFirstResponse_Encoding_DefaultXml Object. + + + + + The identifier for the QueryNextRequest_Encoding_DefaultXml Object. + + + + + The identifier for the QueryNextResponse_Encoding_DefaultXml Object. + + + + + The identifier for the ReadValueId_Encoding_DefaultXml Object. + + + + + The identifier for the ReadRequest_Encoding_DefaultXml Object. + + + + + The identifier for the ReadResponse_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadValueId_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadResult_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadEventDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadRawModifiedDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadProcessedDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadAtTimeDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadAnnotationDataDetails_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryData_Encoding_DefaultXml Object. + + + + + The identifier for the ModificationInfo_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryModifiedData_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryEvent_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadRequest_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadResponse_Encoding_DefaultXml Object. + + + + + The identifier for the WriteValue_Encoding_DefaultXml Object. + + + + + The identifier for the WriteRequest_Encoding_DefaultXml Object. + + + + + The identifier for the WriteResponse_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryUpdateDetails_Encoding_DefaultXml Object. + + + + + The identifier for the UpdateDataDetails_Encoding_DefaultXml Object. + + + + + The identifier for the UpdateStructureDataDetails_Encoding_DefaultXml Object. + + + + + The identifier for the UpdateEventDetails_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteRawModifiedDetails_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteAtTimeDetails_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteEventDetails_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryUpdateResult_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryUpdateRequest_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryUpdateResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CallMethodRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CallMethodResult_Encoding_DefaultXml Object. + + + + + The identifier for the CallRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CallResponse_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoringFilter_Encoding_DefaultXml Object. + + + + + The identifier for the DataChangeFilter_Encoding_DefaultXml Object. + + + + + The identifier for the EventFilter_Encoding_DefaultXml Object. + + + + + The identifier for the AggregateConfiguration_Encoding_DefaultXml Object. + + + + + The identifier for the AggregateFilter_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoringFilterResult_Encoding_DefaultXml Object. + + + + + The identifier for the EventFilterResult_Encoding_DefaultXml Object. + + + + + The identifier for the AggregateFilterResult_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoringParameters_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemCreateRequest_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemCreateResult_Encoding_DefaultXml Object. + + + + + The identifier for the CreateMonitoredItemsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CreateMonitoredItemsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemModifyRequest_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemModifyResult_Encoding_DefaultXml Object. + + + + + The identifier for the ModifyMonitoredItemsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the ModifyMonitoredItemsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the SetMonitoringModeRequest_Encoding_DefaultXml Object. + + + + + The identifier for the SetMonitoringModeResponse_Encoding_DefaultXml Object. + + + + + The identifier for the SetTriggeringRequest_Encoding_DefaultXml Object. + + + + + The identifier for the SetTriggeringResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteMonitoredItemsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteMonitoredItemsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CreateSubscriptionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CreateSubscriptionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the ModifySubscriptionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the ModifySubscriptionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the SetPublishingModeRequest_Encoding_DefaultXml Object. + + + + + The identifier for the SetPublishingModeResponse_Encoding_DefaultXml Object. + + + + + The identifier for the NotificationMessage_Encoding_DefaultXml Object. + + + + + The identifier for the NotificationData_Encoding_DefaultXml Object. + + + + + The identifier for the DataChangeNotification_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemNotification_Encoding_DefaultXml Object. + + + + + The identifier for the EventNotificationList_Encoding_DefaultXml Object. + + + + + The identifier for the EventFieldList_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryEventFieldList_Encoding_DefaultXml Object. + + + + + The identifier for the StatusChangeNotification_Encoding_DefaultXml Object. + + + + + The identifier for the SubscriptionAcknowledgement_Encoding_DefaultXml Object. + + + + + The identifier for the PublishRequest_Encoding_DefaultXml Object. + + + + + The identifier for the PublishResponse_Encoding_DefaultXml Object. + + + + + The identifier for the RepublishRequest_Encoding_DefaultXml Object. + + + + + The identifier for the RepublishResponse_Encoding_DefaultXml Object. + + + + + The identifier for the TransferResult_Encoding_DefaultXml Object. + + + + + The identifier for the TransferSubscriptionsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the TransferSubscriptionsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteSubscriptionsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteSubscriptionsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the BuildInfo_Encoding_DefaultXml Object. + + + + + The identifier for the RedundantServerDataType_Encoding_DefaultXml Object. + + + + + The identifier for the EndpointUrlListDataType_Encoding_DefaultXml Object. + + + + + The identifier for the NetworkGroupDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SamplingIntervalDiagnosticsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ServerDiagnosticsSummaryDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ServerStatusDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SessionDiagnosticsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SessionSecurityDiagnosticsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ServiceCounterDataType_Encoding_DefaultXml Object. + + + + + The identifier for the StatusResult_Encoding_DefaultXml Object. + + + + + The identifier for the SubscriptionDiagnosticsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ModelChangeStructureDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SemanticChangeStructureDataType_Encoding_DefaultXml Object. + + + + + The identifier for the Range_Encoding_DefaultXml Object. + + + + + The identifier for the EUInformation_Encoding_DefaultXml Object. + + + + + The identifier for the ComplexNumberType_Encoding_DefaultXml Object. + + + + + The identifier for the DoubleComplexNumberType_Encoding_DefaultXml Object. + + + + + The identifier for the AxisInformation_Encoding_DefaultXml Object. + + + + + The identifier for the XVType_Encoding_DefaultXml Object. + + + + + The identifier for the ProgramDiagnosticDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ProgramDiagnostic2DataType_Encoding_DefaultXml Object. + + + + + The identifier for the Annotation_Encoding_DefaultXml Object. + + + + + The identifier for the KeyValuePair_Encoding_DefaultJson Object. + + + + + The identifier for the EndpointType_Encoding_DefaultJson Object. + + + + + The identifier for the RationalNumber_Encoding_DefaultJson Object. + + + + + The identifier for the Vector_Encoding_DefaultJson Object. + + + + + The identifier for the ThreeDVector_Encoding_DefaultJson Object. + + + + + The identifier for the CartesianCoordinates_Encoding_DefaultJson Object. + + + + + The identifier for the ThreeDCartesianCoordinates_Encoding_DefaultJson Object. + + + + + The identifier for the Orientation_Encoding_DefaultJson Object. + + + + + The identifier for the ThreeDOrientation_Encoding_DefaultJson Object. + + + + + The identifier for the Frame_Encoding_DefaultJson Object. + + + + + The identifier for the ThreeDFrame_Encoding_DefaultJson Object. + + + + + The identifier for the IdentityMappingRuleType_Encoding_DefaultJson Object. + + + + + The identifier for the CurrencyUnitType_Encoding_DefaultJson Object. + + + + + The identifier for the TrustListDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DecimalDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeSchemaHeader_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeDescription_Encoding_DefaultJson Object. + + + + + The identifier for the StructureDescription_Encoding_DefaultJson Object. + + + + + The identifier for the EnumDescription_Encoding_DefaultJson Object. + + + + + The identifier for the SimpleTypeDescription_Encoding_DefaultJson Object. + + + + + The identifier for the UABinaryFileDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetMetaDataType_Encoding_DefaultJson Object. + + + + + The identifier for the FieldMetaData_Encoding_DefaultJson Object. + + + + + The identifier for the ConfigurationVersionDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedDataSetDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedDataSetSourceDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedVariableDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedDataItemsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedEventsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetWriterDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetWriterTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetWriterMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PubSubGroupDataType_Encoding_DefaultJson Object. + + + + + The identifier for the WriterGroupDataType_Encoding_DefaultJson Object. + + + + + The identifier for the WriterGroupTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the WriterGroupMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PubSubConnectionDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ConnectionTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the NetworkAddressDataType_Encoding_DefaultJson Object. + + + + + The identifier for the NetworkAddressUrlDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ReaderGroupDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ReaderGroupTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ReaderGroupMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetReaderDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetReaderTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetReaderMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SubscribedDataSetDataType_Encoding_DefaultJson Object. + + + + + The identifier for the TargetVariablesDataType_Encoding_DefaultJson Object. + + + + + The identifier for the FieldTargetDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SubscribedDataSetMirrorDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PubSubConfigurationDataType_Encoding_DefaultJson Object. + + + + + The identifier for the UadpWriterGroupMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the UadpDataSetWriterMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the UadpDataSetReaderMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the JsonWriterGroupMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the JsonDataSetWriterMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the JsonDataSetReaderMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DatagramConnectionTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DatagramWriterGroupTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the BrokerConnectionTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the BrokerWriterGroupTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the BrokerDataSetWriterTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the BrokerDataSetReaderTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the AliasNameDataType_Encoding_DefaultJson Object. + + + + + The identifier for the RolePermissionType_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeDefinition_Encoding_DefaultJson Object. + + + + + The identifier for the StructureField_Encoding_DefaultJson Object. + + + + + The identifier for the StructureDefinition_Encoding_DefaultJson Object. + + + + + The identifier for the EnumDefinition_Encoding_DefaultJson Object. + + + + + The identifier for the Node_Encoding_DefaultJson Object. + + + + + The identifier for the InstanceNode_Encoding_DefaultJson Object. + + + + + The identifier for the TypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the ObjectNode_Encoding_DefaultJson Object. + + + + + The identifier for the ObjectTypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the VariableNode_Encoding_DefaultJson Object. + + + + + The identifier for the VariableTypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the ReferenceTypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the MethodNode_Encoding_DefaultJson Object. + + + + + The identifier for the ViewNode_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the ReferenceNode_Encoding_DefaultJson Object. + + + + + The identifier for the Argument_Encoding_DefaultJson Object. + + + + + The identifier for the EnumValueType_Encoding_DefaultJson Object. + + + + + The identifier for the EnumField_Encoding_DefaultJson Object. + + + + + The identifier for the OptionSet_Encoding_DefaultJson Object. + + + + + The identifier for the Union_Encoding_DefaultJson Object. + + + + + The identifier for the TimeZoneDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ApplicationDescription_Encoding_DefaultJson Object. + + + + + The identifier for the RequestHeader_Encoding_DefaultJson Object. + + + + + The identifier for the ResponseHeader_Encoding_DefaultJson Object. + + + + + The identifier for the ServiceFault_Encoding_DefaultJson Object. + + + + + The identifier for the SessionlessInvokeRequestType_Encoding_DefaultJson Object. + + + + + The identifier for the SessionlessInvokeResponseType_Encoding_DefaultJson Object. + + + + + The identifier for the FindServersRequest_Encoding_DefaultJson Object. + + + + + The identifier for the FindServersResponse_Encoding_DefaultJson Object. + + + + + The identifier for the ServerOnNetwork_Encoding_DefaultJson Object. + + + + + The identifier for the FindServersOnNetworkRequest_Encoding_DefaultJson Object. + + + + + The identifier for the FindServersOnNetworkResponse_Encoding_DefaultJson Object. + + + + + The identifier for the UserTokenPolicy_Encoding_DefaultJson Object. + + + + + The identifier for the EndpointDescription_Encoding_DefaultJson Object. + + + + + The identifier for the GetEndpointsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the GetEndpointsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the RegisteredServer_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterServerRequest_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterServerResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DiscoveryConfiguration_Encoding_DefaultJson Object. + + + + + The identifier for the MdnsDiscoveryConfiguration_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterServer2Request_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterServer2Response_Encoding_DefaultJson Object. + + + + + The identifier for the ChannelSecurityToken_Encoding_DefaultJson Object. + + + + + The identifier for the OpenSecureChannelRequest_Encoding_DefaultJson Object. + + + + + The identifier for the OpenSecureChannelResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CloseSecureChannelRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CloseSecureChannelResponse_Encoding_DefaultJson Object. + + + + + The identifier for the SignedSoftwareCertificate_Encoding_DefaultJson Object. + + + + + The identifier for the SignatureData_Encoding_DefaultJson Object. + + + + + The identifier for the CreateSessionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CreateSessionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the UserIdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the AnonymousIdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the UserNameIdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the X509IdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the IssuedIdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the ActivateSessionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the ActivateSessionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CloseSessionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CloseSessionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CancelRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CancelResponse_Encoding_DefaultJson Object. + + + + + The identifier for the NodeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the ObjectAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the VariableAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the MethodAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the ObjectTypeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the VariableTypeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the ReferenceTypeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the ViewAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the GenericAttributeValue_Encoding_DefaultJson Object. + + + + + The identifier for the GenericAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the AddNodesItem_Encoding_DefaultJson Object. + + + + + The identifier for the AddNodesResult_Encoding_DefaultJson Object. + + + + + The identifier for the AddNodesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the AddNodesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the AddReferencesItem_Encoding_DefaultJson Object. + + + + + The identifier for the AddReferencesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the AddReferencesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteNodesItem_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteNodesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteNodesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteReferencesItem_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteReferencesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteReferencesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the ViewDescription_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseDescription_Encoding_DefaultJson Object. + + + + + The identifier for the ReferenceDescription_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseResult_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseRequest_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseResponse_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseNextRequest_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseNextResponse_Encoding_DefaultJson Object. + + + + + The identifier for the RelativePathElement_Encoding_DefaultJson Object. + + + + + The identifier for the RelativePath_Encoding_DefaultJson Object. + + + + + The identifier for the BrowsePath_Encoding_DefaultJson Object. + + + + + The identifier for the BrowsePathTarget_Encoding_DefaultJson Object. + + + + + The identifier for the BrowsePathResult_Encoding_DefaultJson Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterNodesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterNodesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the UnregisterNodesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the UnregisterNodesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the EndpointConfiguration_Encoding_DefaultJson Object. + + + + + The identifier for the QueryDataDescription_Encoding_DefaultJson Object. + + + + + The identifier for the NodeTypeDescription_Encoding_DefaultJson Object. + + + + + The identifier for the QueryDataSet_Encoding_DefaultJson Object. + + + + + The identifier for the NodeReference_Encoding_DefaultJson Object. + + + + + The identifier for the ContentFilterElement_Encoding_DefaultJson Object. + + + + + The identifier for the ContentFilter_Encoding_DefaultJson Object. + + + + + The identifier for the FilterOperand_Encoding_DefaultJson Object. + + + + + The identifier for the ElementOperand_Encoding_DefaultJson Object. + + + + + The identifier for the LiteralOperand_Encoding_DefaultJson Object. + + + + + The identifier for the AttributeOperand_Encoding_DefaultJson Object. + + + + + The identifier for the SimpleAttributeOperand_Encoding_DefaultJson Object. + + + + + The identifier for the ContentFilterElementResult_Encoding_DefaultJson Object. + + + + + The identifier for the ContentFilterResult_Encoding_DefaultJson Object. + + + + + The identifier for the ParsingResult_Encoding_DefaultJson Object. + + + + + The identifier for the QueryFirstRequest_Encoding_DefaultJson Object. + + + + + The identifier for the QueryFirstResponse_Encoding_DefaultJson Object. + + + + + The identifier for the QueryNextRequest_Encoding_DefaultJson Object. + + + + + The identifier for the QueryNextResponse_Encoding_DefaultJson Object. + + + + + The identifier for the ReadValueId_Encoding_DefaultJson Object. + + + + + The identifier for the ReadRequest_Encoding_DefaultJson Object. + + + + + The identifier for the ReadResponse_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadValueId_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadResult_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadEventDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadRawModifiedDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadProcessedDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadAtTimeDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadAnnotationDataDetails_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryData_Encoding_DefaultJson Object. + + + + + The identifier for the ModificationInfo_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryModifiedData_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryEvent_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadRequest_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadResponse_Encoding_DefaultJson Object. + + + + + The identifier for the WriteValue_Encoding_DefaultJson Object. + + + + + The identifier for the WriteRequest_Encoding_DefaultJson Object. + + + + + The identifier for the WriteResponse_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryUpdateDetails_Encoding_DefaultJson Object. + + + + + The identifier for the UpdateDataDetails_Encoding_DefaultJson Object. + + + + + The identifier for the UpdateStructureDataDetails_Encoding_DefaultJson Object. + + + + + The identifier for the UpdateEventDetails_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteRawModifiedDetails_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteAtTimeDetails_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteEventDetails_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryUpdateResult_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryUpdateRequest_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryUpdateResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CallMethodRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CallMethodResult_Encoding_DefaultJson Object. + + + + + The identifier for the CallRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CallResponse_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoringFilter_Encoding_DefaultJson Object. + + + + + The identifier for the DataChangeFilter_Encoding_DefaultJson Object. + + + + + The identifier for the EventFilter_Encoding_DefaultJson Object. + + + + + The identifier for the AggregateConfiguration_Encoding_DefaultJson Object. + + + + + The identifier for the AggregateFilter_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoringFilterResult_Encoding_DefaultJson Object. + + + + + The identifier for the EventFilterResult_Encoding_DefaultJson Object. + + + + + The identifier for the AggregateFilterResult_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoringParameters_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemCreateRequest_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemCreateResult_Encoding_DefaultJson Object. + + + + + The identifier for the CreateMonitoredItemsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CreateMonitoredItemsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemModifyRequest_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemModifyResult_Encoding_DefaultJson Object. + + + + + The identifier for the ModifyMonitoredItemsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the ModifyMonitoredItemsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the SetMonitoringModeRequest_Encoding_DefaultJson Object. + + + + + The identifier for the SetMonitoringModeResponse_Encoding_DefaultJson Object. + + + + + The identifier for the SetTriggeringRequest_Encoding_DefaultJson Object. + + + + + The identifier for the SetTriggeringResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteMonitoredItemsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteMonitoredItemsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CreateSubscriptionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CreateSubscriptionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the ModifySubscriptionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the ModifySubscriptionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the SetPublishingModeRequest_Encoding_DefaultJson Object. + + + + + The identifier for the SetPublishingModeResponse_Encoding_DefaultJson Object. + + + + + The identifier for the NotificationMessage_Encoding_DefaultJson Object. + + + + + The identifier for the NotificationData_Encoding_DefaultJson Object. + + + + + The identifier for the DataChangeNotification_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemNotification_Encoding_DefaultJson Object. + + + + + The identifier for the EventNotificationList_Encoding_DefaultJson Object. + + + + + The identifier for the EventFieldList_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryEventFieldList_Encoding_DefaultJson Object. + + + + + The identifier for the StatusChangeNotification_Encoding_DefaultJson Object. + + + + + The identifier for the SubscriptionAcknowledgement_Encoding_DefaultJson Object. + + + + + The identifier for the PublishRequest_Encoding_DefaultJson Object. + + + + + The identifier for the PublishResponse_Encoding_DefaultJson Object. + + + + + The identifier for the RepublishRequest_Encoding_DefaultJson Object. + + + + + The identifier for the RepublishResponse_Encoding_DefaultJson Object. + + + + + The identifier for the TransferResult_Encoding_DefaultJson Object. + + + + + The identifier for the TransferSubscriptionsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the TransferSubscriptionsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteSubscriptionsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteSubscriptionsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the BuildInfo_Encoding_DefaultJson Object. + + + + + The identifier for the RedundantServerDataType_Encoding_DefaultJson Object. + + + + + The identifier for the EndpointUrlListDataType_Encoding_DefaultJson Object. + + + + + The identifier for the NetworkGroupDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SamplingIntervalDiagnosticsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ServerDiagnosticsSummaryDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ServerStatusDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SessionDiagnosticsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SessionSecurityDiagnosticsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ServiceCounterDataType_Encoding_DefaultJson Object. + + + + + The identifier for the StatusResult_Encoding_DefaultJson Object. + + + + + The identifier for the SubscriptionDiagnosticsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ModelChangeStructureDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SemanticChangeStructureDataType_Encoding_DefaultJson Object. + + + + + The identifier for the Range_Encoding_DefaultJson Object. + + + + + The identifier for the EUInformation_Encoding_DefaultJson Object. + + + + + The identifier for the ComplexNumberType_Encoding_DefaultJson Object. + + + + + The identifier for the DoubleComplexNumberType_Encoding_DefaultJson Object. + + + + + The identifier for the AxisInformation_Encoding_DefaultJson Object. + + + + + The identifier for the XVType_Encoding_DefaultJson Object. + + + + + The identifier for the ProgramDiagnosticDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ProgramDiagnostic2DataType_Encoding_DefaultJson Object. + + + + + The identifier for the Annotation_Encoding_DefaultJson Object. + + + + + A class that declares constants for all ObjectTypes in the Model Design. + + + + + + The identifier for the BaseObjectType ObjectType. + + + + + The identifier for the FolderType ObjectType. + + + + + The identifier for the DataTypeSystemType ObjectType. + + + + + The identifier for the DataTypeEncodingType ObjectType. + + + + + The identifier for the ModellingRuleType ObjectType. + + + + + The identifier for the ServerType ObjectType. + + + + + The identifier for the ServerCapabilitiesType ObjectType. + + + + + The identifier for the ServerDiagnosticsType ObjectType. + + + + + The identifier for the SessionsDiagnosticsSummaryType ObjectType. + + + + + The identifier for the SessionDiagnosticsObjectType ObjectType. + + + + + The identifier for the VendorServerInfoType ObjectType. + + + + + The identifier for the ServerRedundancyType ObjectType. + + + + + The identifier for the TransparentRedundancyType ObjectType. + + + + + The identifier for the NonTransparentRedundancyType ObjectType. + + + + + The identifier for the NonTransparentNetworkRedundancyType ObjectType. + + + + + The identifier for the OperationLimitsType ObjectType. + + + + + The identifier for the FileType ObjectType. + + + + + The identifier for the AddressSpaceFileType ObjectType. + + + + + The identifier for the NamespaceMetadataType ObjectType. + + + + + The identifier for the NamespacesType ObjectType. + + + + + The identifier for the BaseEventType ObjectType. + + + + + The identifier for the AuditEventType ObjectType. + + + + + The identifier for the AuditSecurityEventType ObjectType. + + + + + The identifier for the AuditChannelEventType ObjectType. + + + + + The identifier for the AuditOpenSecureChannelEventType ObjectType. + + + + + The identifier for the AuditSessionEventType ObjectType. + + + + + The identifier for the AuditCreateSessionEventType ObjectType. + + + + + The identifier for the AuditUrlMismatchEventType ObjectType. + + + + + The identifier for the AuditActivateSessionEventType ObjectType. + + + + + The identifier for the AuditCancelEventType ObjectType. + + + + + The identifier for the AuditCertificateEventType ObjectType. + + + + + The identifier for the AuditCertificateDataMismatchEventType ObjectType. + + + + + The identifier for the AuditCertificateExpiredEventType ObjectType. + + + + + The identifier for the AuditCertificateInvalidEventType ObjectType. + + + + + The identifier for the AuditCertificateUntrustedEventType ObjectType. + + + + + The identifier for the AuditCertificateRevokedEventType ObjectType. + + + + + The identifier for the AuditCertificateMismatchEventType ObjectType. + + + + + The identifier for the AuditNodeManagementEventType ObjectType. + + + + + The identifier for the AuditAddNodesEventType ObjectType. + + + + + The identifier for the AuditDeleteNodesEventType ObjectType. + + + + + The identifier for the AuditAddReferencesEventType ObjectType. + + + + + The identifier for the AuditDeleteReferencesEventType ObjectType. + + + + + The identifier for the AuditUpdateEventType ObjectType. + + + + + The identifier for the AuditWriteUpdateEventType ObjectType. + + + + + The identifier for the AuditHistoryUpdateEventType ObjectType. + + + + + The identifier for the AuditUpdateMethodEventType ObjectType. + + + + + The identifier for the SystemEventType ObjectType. + + + + + The identifier for the DeviceFailureEventType ObjectType. + + + + + The identifier for the SystemStatusChangeEventType ObjectType. + + + + + The identifier for the BaseModelChangeEventType ObjectType. + + + + + The identifier for the GeneralModelChangeEventType ObjectType. + + + + + The identifier for the SemanticChangeEventType ObjectType. + + + + + The identifier for the EventQueueOverflowEventType ObjectType. + + + + + The identifier for the ProgressEventType ObjectType. + + + + + The identifier for the AggregateFunctionType ObjectType. + + + + + The identifier for the StateMachineType ObjectType. + + + + + The identifier for the FiniteStateMachineType ObjectType. + + + + + The identifier for the StateType ObjectType. + + + + + The identifier for the InitialStateType ObjectType. + + + + + The identifier for the TransitionType ObjectType. + + + + + The identifier for the ChoiceStateType ObjectType. + + + + + The identifier for the TransitionEventType ObjectType. + + + + + The identifier for the AuditUpdateStateEventType ObjectType. + + + + + The identifier for the FileDirectoryType ObjectType. + + + + + The identifier for the TemporaryFileTransferType ObjectType. + + + + + The identifier for the FileTransferStateMachineType ObjectType. + + + + + The identifier for the RoleSetType ObjectType. + + + + + The identifier for the RoleType ObjectType. + + + + + The identifier for the RoleMappingRuleChangedAuditEventType ObjectType. + + + + + The identifier for the DictionaryEntryType ObjectType. + + + + + The identifier for the DictionaryFolderType ObjectType. + + + + + The identifier for the IrdiDictionaryEntryType ObjectType. + + + + + The identifier for the UriDictionaryEntryType ObjectType. + + + + + The identifier for the BaseInterfaceType ObjectType. + + + + + The identifier for the IOrderedObjectType ObjectType. + + + + + The identifier for the OrderedListType ObjectType. + + + + + The identifier for the ConditionType ObjectType. + + + + + The identifier for the DialogConditionType ObjectType. + + + + + The identifier for the AcknowledgeableConditionType ObjectType. + + + + + The identifier for the AlarmConditionType ObjectType. + + + + + The identifier for the AlarmGroupType ObjectType. + + + + + The identifier for the ShelvedStateMachineType ObjectType. + + + + + The identifier for the LimitAlarmType ObjectType. + + + + + The identifier for the ExclusiveLimitStateMachineType ObjectType. + + + + + The identifier for the ExclusiveLimitAlarmType ObjectType. + + + + + The identifier for the NonExclusiveLimitAlarmType ObjectType. + + + + + The identifier for the NonExclusiveLevelAlarmType ObjectType. + + + + + The identifier for the ExclusiveLevelAlarmType ObjectType. + + + + + The identifier for the NonExclusiveDeviationAlarmType ObjectType. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType ObjectType. + + + + + The identifier for the ExclusiveDeviationAlarmType ObjectType. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType ObjectType. + + + + + The identifier for the DiscreteAlarmType ObjectType. + + + + + The identifier for the OffNormalAlarmType ObjectType. + + + + + The identifier for the SystemOffNormalAlarmType ObjectType. + + + + + The identifier for the TripAlarmType ObjectType. + + + + + The identifier for the InstrumentDiagnosticAlarmType ObjectType. + + + + + The identifier for the SystemDiagnosticAlarmType ObjectType. + + + + + The identifier for the CertificateExpirationAlarmType ObjectType. + + + + + The identifier for the DiscrepancyAlarmType ObjectType. + + + + + The identifier for the BaseConditionClassType ObjectType. + + + + + The identifier for the ProcessConditionClassType ObjectType. + + + + + The identifier for the MaintenanceConditionClassType ObjectType. + + + + + The identifier for the SystemConditionClassType ObjectType. + + + + + The identifier for the SafetyConditionClassType ObjectType. + + + + + The identifier for the HighlyManagedAlarmConditionClassType ObjectType. + + + + + The identifier for the TrainingConditionClassType ObjectType. + + + + + The identifier for the StatisticalConditionClassType ObjectType. + + + + + The identifier for the TestingConditionSubClassType ObjectType. + + + + + The identifier for the AuditConditionEventType ObjectType. + + + + + The identifier for the AuditConditionEnableEventType ObjectType. + + + + + The identifier for the AuditConditionCommentEventType ObjectType. + + + + + The identifier for the AuditConditionRespondEventType ObjectType. + + + + + The identifier for the AuditConditionAcknowledgeEventType ObjectType. + + + + + The identifier for the AuditConditionConfirmEventType ObjectType. + + + + + The identifier for the AuditConditionShelvingEventType ObjectType. + + + + + The identifier for the AuditConditionSuppressionEventType ObjectType. + + + + + The identifier for the AuditConditionSilenceEventType ObjectType. + + + + + The identifier for the AuditConditionResetEventType ObjectType. + + + + + The identifier for the AuditConditionOutOfServiceEventType ObjectType. + + + + + The identifier for the RefreshStartEventType ObjectType. + + + + + The identifier for the RefreshEndEventType ObjectType. + + + + + The identifier for the RefreshRequiredEventType ObjectType. + + + + + The identifier for the AlarmMetricsType ObjectType. + + + + + The identifier for the ProgramStateMachineType ObjectType. + + + + + The identifier for the ProgramTransitionEventType ObjectType. + + + + + The identifier for the AuditProgramTransitionEventType ObjectType. + + + + + The identifier for the ProgramTransitionAuditEventType ObjectType. + + + + + The identifier for the HistoricalDataConfigurationType ObjectType. + + + + + The identifier for the HistoryServerCapabilitiesType ObjectType. + + + + + The identifier for the AuditHistoryEventUpdateEventType ObjectType. + + + + + The identifier for the AuditHistoryValueUpdateEventType ObjectType. + + + + + The identifier for the AuditHistoryAnnotationUpdateEventType ObjectType. + + + + + The identifier for the AuditHistoryDeleteEventType ObjectType. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType ObjectType. + + + + + The identifier for the AuditHistoryAtTimeDeleteEventType ObjectType. + + + + + The identifier for the AuditHistoryEventDeleteEventType ObjectType. + + + + + The identifier for the TrustListType ObjectType. + + + + + The identifier for the TrustListOutOfDateAlarmType ObjectType. + + + + + The identifier for the CertificateGroupType ObjectType. + + + + + The identifier for the CertificateGroupFolderType ObjectType. + + + + + The identifier for the CertificateType ObjectType. + + + + + The identifier for the ApplicationCertificateType ObjectType. + + + + + The identifier for the HttpsCertificateType ObjectType. + + + + + The identifier for the UserCredentialCertificateType ObjectType. + + + + + The identifier for the RsaMinApplicationCertificateType ObjectType. + + + + + The identifier for the RsaSha256ApplicationCertificateType ObjectType. + + + + + The identifier for the TrustListUpdatedAuditEventType ObjectType. + + + + + The identifier for the ServerConfigurationType ObjectType. + + + + + The identifier for the CertificateUpdatedAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialConfigurationFolderType ObjectType. + + + + + The identifier for the KeyCredentialConfigurationType ObjectType. + + + + + The identifier for the KeyCredentialAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialUpdatedAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialDeletedAuditEventType ObjectType. + + + + + The identifier for the AuthorizationServiceConfigurationType ObjectType. + + + + + The identifier for the AggregateConfigurationType ObjectType. + + + + + The identifier for the PubSubKeyServiceType ObjectType. + + + + + The identifier for the SecurityGroupFolderType ObjectType. + + + + + The identifier for the SecurityGroupType ObjectType. + + + + + The identifier for the PublishSubscribeType ObjectType. + + + + + The identifier for the PublishedDataSetType ObjectType. + + + + + The identifier for the ExtensionFieldsType ObjectType. + + + + + The identifier for the PublishedDataItemsType ObjectType. + + + + + The identifier for the PublishedEventsType ObjectType. + + + + + The identifier for the DataSetFolderType ObjectType. + + + + + The identifier for the PubSubConnectionType ObjectType. + + + + + The identifier for the ConnectionTransportType ObjectType. + + + + + The identifier for the PubSubGroupType ObjectType. + + + + + The identifier for the WriterGroupType ObjectType. + + + + + The identifier for the WriterGroupTransportType ObjectType. + + + + + The identifier for the WriterGroupMessageType ObjectType. + + + + + The identifier for the ReaderGroupType ObjectType. + + + + + The identifier for the ReaderGroupTransportType ObjectType. + + + + + The identifier for the ReaderGroupMessageType ObjectType. + + + + + The identifier for the DataSetWriterType ObjectType. + + + + + The identifier for the DataSetWriterTransportType ObjectType. + + + + + The identifier for the DataSetWriterMessageType ObjectType. + + + + + The identifier for the DataSetReaderType ObjectType. + + + + + The identifier for the DataSetReaderTransportType ObjectType. + + + + + The identifier for the DataSetReaderMessageType ObjectType. + + + + + The identifier for the SubscribedDataSetType ObjectType. + + + + + The identifier for the TargetVariablesType ObjectType. + + + + + The identifier for the SubscribedDataSetMirrorType ObjectType. + + + + + The identifier for the PubSubStatusType ObjectType. + + + + + The identifier for the PubSubDiagnosticsType ObjectType. + + + + + The identifier for the PubSubDiagnosticsRootType ObjectType. + + + + + The identifier for the PubSubDiagnosticsConnectionType ObjectType. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType ObjectType. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType ObjectType. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType ObjectType. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType ObjectType. + + + + + The identifier for the PubSubStatusEventType ObjectType. + + + + + The identifier for the PubSubTransportLimitsExceedEventType ObjectType. + + + + + The identifier for the PubSubCommunicationFailureEventType ObjectType. + + + + + The identifier for the UadpWriterGroupMessageType ObjectType. + + + + + The identifier for the UadpDataSetWriterMessageType ObjectType. + + + + + The identifier for the UadpDataSetReaderMessageType ObjectType. + + + + + The identifier for the JsonWriterGroupMessageType ObjectType. + + + + + The identifier for the JsonDataSetWriterMessageType ObjectType. + + + + + The identifier for the JsonDataSetReaderMessageType ObjectType. + + + + + The identifier for the DatagramConnectionTransportType ObjectType. + + + + + The identifier for the DatagramWriterGroupTransportType ObjectType. + + + + + The identifier for the BrokerConnectionTransportType ObjectType. + + + + + The identifier for the BrokerWriterGroupTransportType ObjectType. + + + + + The identifier for the BrokerDataSetWriterTransportType ObjectType. + + + + + The identifier for the BrokerDataSetReaderTransportType ObjectType. + + + + + The identifier for the NetworkAddressType ObjectType. + + + + + The identifier for the NetworkAddressUrlType ObjectType. + + + + + The identifier for the AliasNameType ObjectType. + + + + + The identifier for the AliasNameCategoryType ObjectType. + + + + + A class that declares constants for all Variables in the Model Design. + + + + + + The identifier for the DataTypeDescriptionType_DataTypeVersion Variable. + + + + + The identifier for the DataTypeDescriptionType_DictionaryFragment Variable. + + + + + The identifier for the DataTypeDictionaryType_DataTypeVersion Variable. + + + + + The identifier for the DataTypeDictionaryType_NamespaceUri Variable. + + + + + The identifier for the DataTypeDictionaryType_Deprecated Variable. + + + + + The identifier for the NamingRuleType_EnumValues Variable. + + + + + The identifier for the ModellingRuleType_NamingRule Variable. + + + + + The identifier for the ModellingRule_Mandatory_NamingRule Variable. + + + + + The identifier for the ModellingRule_Optional_NamingRule Variable. + + + + + The identifier for the ModellingRule_ExposesItsArray_NamingRule Variable. + + + + + The identifier for the ModellingRule_OptionalPlaceholder_NamingRule Variable. + + + + + The identifier for the ModellingRule_MandatoryPlaceholder_NamingRule Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceUri Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceVersion Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespacePublicationDate Variable. + + + + + The identifier for the OPCUANamespaceMetadata_IsNamespaceSubset Variable. + + + + + The identifier for the OPCUANamespaceMetadata_StaticNodeIdTypes Variable. + + + + + The identifier for the OPCUANamespaceMetadata_StaticNumericNodeIdRange Variable. + + + + + The identifier for the OPCUANamespaceMetadata_StaticStringNodeIdPattern Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Size Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Writable Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_UserWritable Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_OpenCount Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Open_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Open_OutputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Close_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Read_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Read_OutputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Write_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_GetPosition_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_GetPosition_OutputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_SetPosition_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_DefaultRolePermissions Variable. + + + + + The identifier for the OPCUANamespaceMetadata_DefaultUserRolePermissions Variable. + + + + + The identifier for the OPCUANamespaceMetadata_DefaultAccessRestrictions Variable. + + + + + The identifier for the NodeVersion Variable. + + + + + The identifier for the ViewVersion Variable. + + + + + The identifier for the Icon Variable. + + + + + The identifier for the LocalTime Variable. + + + + + The identifier for the AllowNulls Variable. + + + + + The identifier for the ValueAsText Variable. + + + + + The identifier for the MaxStringLength Variable. + + + + + The identifier for the MaxCharacters Variable. + + + + + The identifier for the MaxByteStringLength Variable. + + + + + The identifier for the MaxArrayLength Variable. + + + + + The identifier for the EngineeringUnits Variable. + + + + + The identifier for the EnumStrings Variable. + + + + + The identifier for the EnumValues Variable. + + + + + The identifier for the OptionSetValues Variable. + + + + + The identifier for the InputArguments Variable. + + + + + The identifier for the OutputArguments Variable. + + + + + The identifier for the DefaultInputValues Variable. + + + + + The identifier for the DefaultInstanceBrowseName Variable. + + + + + The identifier for the ServerType_ServerArray Variable. + + + + + The identifier for the ServerType_NamespaceArray Variable. + + + + + The identifier for the ServerType_UrisVersion Variable. + + + + + The identifier for the ServerType_ServerStatus Variable. + + + + + The identifier for the ServerType_ServerStatus_StartTime Variable. + + + + + The identifier for the ServerType_ServerStatus_CurrentTime Variable. + + + + + The identifier for the ServerType_ServerStatus_State Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_ProductUri Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_ManufacturerName Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_ProductName Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_SoftwareVersion Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_BuildNumber Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_BuildDate Variable. + + + + + The identifier for the ServerType_ServerStatus_SecondsTillShutdown Variable. + + + + + The identifier for the ServerType_ServerStatus_ShutdownReason Variable. + + + + + The identifier for the ServerType_ServiceLevel Variable. + + + + + The identifier for the ServerType_Auditing Variable. + + + + + The identifier for the ServerType_EstimatedReturnTime Variable. + + + + + The identifier for the ServerType_LocalTime Variable. + + + + + The identifier for the ServerType_ServerCapabilities_ServerProfileArray Variable. + + + + + The identifier for the ServerType_ServerCapabilities_LocaleIdArray Variable. + + + + + The identifier for the ServerType_ServerCapabilities_MinSupportedSampleRate Variable. + + + + + The identifier for the ServerType_ServerCapabilities_MaxBrowseContinuationPoints Variable. + + + + + The identifier for the ServerType_ServerCapabilities_MaxQueryContinuationPoints Variable. + + + + + The identifier for the ServerType_ServerCapabilities_MaxHistoryContinuationPoints Variable. + + + + + The identifier for the ServerType_ServerCapabilities_SoftwareCertificates Variable. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_AddRole_InputArguments Variable. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_AddRole_OutputArguments Variable. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_RemoveRole_InputArguments Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_ServerViewCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSessionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSessionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedSessionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_RejectedSessionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_SessionTimeoutCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_SessionAbortCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_PublishingIntervalCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSubscriptionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSubscriptionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedRequestsCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_RejectedRequestsCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_SessionsDiagnosticsSummary_SessionDiagnosticsArray Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_SessionsDiagnosticsSummary_SessionSecurityDiagnosticsArray Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_EnabledFlag Variable. + + + + + The identifier for the ServerType_ServerRedundancy_RedundancySupport Variable. + + + + + The identifier for the ServerType_GetMonitoredItems_InputArguments Variable. + + + + + The identifier for the ServerType_GetMonitoredItems_OutputArguments Variable. + + + + + The identifier for the ServerType_ResendData_InputArguments Variable. + + + + + The identifier for the ServerType_SetSubscriptionDurable_InputArguments Variable. + + + + + The identifier for the ServerType_SetSubscriptionDurable_OutputArguments Variable. + + + + + The identifier for the ServerType_RequestServerStateChange_InputArguments Variable. + + + + + The identifier for the ServerCapabilitiesType_ServerProfileArray Variable. + + + + + The identifier for the ServerCapabilitiesType_LocaleIdArray Variable. + + + + + The identifier for the ServerCapabilitiesType_MinSupportedSampleRate Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxBrowseContinuationPoints Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxQueryContinuationPoints Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxHistoryContinuationPoints Variable. + + + + + The identifier for the ServerCapabilitiesType_SoftwareCertificates Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxArrayLength Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxStringLength Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxByteStringLength Variable. + + + + + The identifier for the ServerCapabilitiesType_VendorCapability_Placeholder Variable. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_AddRole_InputArguments Variable. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_AddRole_OutputArguments Variable. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_RemoveRole_InputArguments Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_ServerViewCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_CurrentSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_CumulatedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_SecurityRejectedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_RejectedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_SessionTimeoutCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_SessionAbortCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_PublishingIntervalCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_CurrentSubscriptionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_CumulatedSubscriptionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_SecurityRejectedRequestsCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_RejectedRequestsCount Variable. + + + + + The identifier for the ServerDiagnosticsType_SamplingIntervalDiagnosticsArray Variable. + + + + + The identifier for the ServerDiagnosticsType_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the ServerDiagnosticsType_SessionsDiagnosticsSummary_SessionDiagnosticsArray Variable. + + + + + The identifier for the ServerDiagnosticsType_SessionsDiagnosticsSummary_SessionSecurityDiagnosticsArray Variable. + + + + + The identifier for the ServerDiagnosticsType_EnabledFlag Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_SessionDiagnosticsArray Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_SessionSecurityDiagnosticsArray Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SessionId Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SessionName Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientDescription Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ServerUri Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_EndpointUrl Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_LocaleIds Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ActualSessionTimeout Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_MaxResponseMessageSize Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientConnectionTime Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientLastContactTime Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentSubscriptionsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentMonitoredItemsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentPublishRequestsInQueue Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TotalRequestCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_UnauthorizedRequestCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ReadCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_HistoryReadCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_WriteCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_HistoryUpdateCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CallCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CreateMonitoredItemsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ModifyMonitoredItemsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetMonitoringModeCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetTriggeringCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteMonitoredItemsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CreateSubscriptionCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ModifySubscriptionCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetPublishingModeCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_PublishCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_RepublishCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TransferSubscriptionsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteSubscriptionsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_AddNodesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_AddReferencesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteNodesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteReferencesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_BrowseCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_BrowseNextCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TranslateBrowsePathsToNodeIdsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_QueryFirstCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_QueryNextCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_RegisterNodesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_UnregisterNodesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SessionId Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientUserIdOfSession Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientUserIdHistory Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_AuthenticationMechanism Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_Encoding Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_TransportProtocol Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SecurityMode Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SecurityPolicyUri Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientCertificate Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SessionId Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SessionName Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ClientDescription Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ServerUri Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_EndpointUrl Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_LocaleIds Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ActualSessionTimeout Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_MaxResponseMessageSize Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ClientConnectionTime Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ClientLastContactTime Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CurrentSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CurrentMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CurrentPublishRequestsInQueue Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_TotalRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_UnauthorizedRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ReadCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_HistoryReadCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_WriteCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_HistoryUpdateCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CallCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CreateMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ModifyMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SetMonitoringModeCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SetTriggeringCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_DeleteMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CreateSubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ModifySubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SetPublishingModeCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_PublishCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_RepublishCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_TransferSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_DeleteSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_AddNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_AddReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_DeleteNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_DeleteReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_BrowseCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_BrowseNextCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_TranslateBrowsePathsToNodeIdsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_QueryFirstCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_QueryNextCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_RegisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_UnregisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_SessionId Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_ClientUserIdOfSession Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_ClientUserIdHistory Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_AuthenticationMechanism Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_Encoding Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_TransportProtocol Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_SecurityMode Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_SecurityPolicyUri Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_ClientCertificate Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the ServerRedundancyType_RedundancySupport Variable. + + + + + The identifier for the TransparentRedundancyType_CurrentServerId Variable. + + + + + The identifier for the TransparentRedundancyType_RedundantServerArray Variable. + + + + + The identifier for the NonTransparentRedundancyType_ServerUriArray Variable. + + + + + The identifier for the NonTransparentNetworkRedundancyType_ServerNetworkGroups Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerRead Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerHistoryReadData Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerHistoryReadEvents Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerWrite Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerHistoryUpdateData Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerHistoryUpdateEvents Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerMethodCall Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerBrowse Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerRegisterNodes Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerTranslateBrowsePathsToNodeIds Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerNodeManagement Variable. + + + + + The identifier for the OperationLimitsType_MaxMonitoredItemsPerCall Variable. + + + + + The identifier for the FileType_Size Variable. + + + + + The identifier for the FileType_Writable Variable. + + + + + The identifier for the FileType_UserWritable Variable. + + + + + The identifier for the FileType_OpenCount Variable. + + + + + The identifier for the FileType_MimeType Variable. + + + + + The identifier for the FileType_Open_InputArguments Variable. + + + + + The identifier for the FileType_Open_OutputArguments Variable. + + + + + The identifier for the FileType_Close_InputArguments Variable. + + + + + The identifier for the FileType_Read_InputArguments Variable. + + + + + The identifier for the FileType_Read_OutputArguments Variable. + + + + + The identifier for the FileType_Write_InputArguments Variable. + + + + + The identifier for the FileType_GetPosition_InputArguments Variable. + + + + + The identifier for the FileType_GetPosition_OutputArguments Variable. + + + + + The identifier for the FileType_SetPosition_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Open_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Open_OutputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Close_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Read_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Read_OutputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Write_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_GetPosition_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_GetPosition_OutputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_SetPosition_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceUri Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceVersion Variable. + + + + + The identifier for the NamespaceMetadataType_NamespacePublicationDate Variable. + + + + + The identifier for the NamespaceMetadataType_IsNamespaceSubset Variable. + + + + + The identifier for the NamespaceMetadataType_StaticNodeIdTypes Variable. + + + + + The identifier for the NamespaceMetadataType_StaticNumericNodeIdRange Variable. + + + + + The identifier for the NamespaceMetadataType_StaticStringNodeIdPattern Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Size Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Writable Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_UserWritable Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_OpenCount Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Open_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Open_OutputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Close_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Read_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Read_OutputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Write_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_GetPosition_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_GetPosition_OutputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_SetPosition_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_DefaultRolePermissions Variable. + + + + + The identifier for the NamespaceMetadataType_DefaultUserRolePermissions Variable. + + + + + The identifier for the NamespaceMetadataType_DefaultAccessRestrictions Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceUri Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceVersion Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespacePublicationDate Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_IsNamespaceSubset Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_StaticNodeIdTypes Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_StaticNumericNodeIdRange Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_StaticStringNodeIdPattern Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Size Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Writable Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_UserWritable Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_OpenCount Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Open_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Open_OutputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Close_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Read_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Read_OutputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Write_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition_OutputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_SetPosition_InputArguments Variable. + + + + + The identifier for the BaseEventType_EventId Variable. + + + + + The identifier for the BaseEventType_EventType Variable. + + + + + The identifier for the BaseEventType_SourceNode Variable. + + + + + The identifier for the BaseEventType_SourceName Variable. + + + + + The identifier for the BaseEventType_Time Variable. + + + + + The identifier for the BaseEventType_ReceiveTime Variable. + + + + + The identifier for the BaseEventType_LocalTime Variable. + + + + + The identifier for the BaseEventType_Message Variable. + + + + + The identifier for the BaseEventType_Severity Variable. + + + + + The identifier for the AuditEventType_ActionTimeStamp Variable. + + + + + The identifier for the AuditEventType_Status Variable. + + + + + The identifier for the AuditEventType_ServerId Variable. + + + + + The identifier for the AuditEventType_ClientAuditEntryId Variable. + + + + + The identifier for the AuditEventType_ClientUserId Variable. + + + + + The identifier for the AuditSecurityEventType_StatusCodeId Variable. + + + + + The identifier for the AuditChannelEventType_SecureChannelId Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_ClientCertificate Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_ClientCertificateThumbprint Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_RequestType Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_SecurityPolicyUri Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_SecurityMode Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_RequestedLifetime Variable. + + + + + The identifier for the AuditSessionEventType_SessionId Variable. + + + + + The identifier for the AuditCreateSessionEventType_SecureChannelId Variable. + + + + + The identifier for the AuditCreateSessionEventType_ClientCertificate Variable. + + + + + The identifier for the AuditCreateSessionEventType_ClientCertificateThumbprint Variable. + + + + + The identifier for the AuditCreateSessionEventType_RevisedSessionTimeout Variable. + + + + + The identifier for the AuditUrlMismatchEventType_EndpointUrl Variable. + + + + + The identifier for the AuditActivateSessionEventType_ClientSoftwareCertificates Variable. + + + + + The identifier for the AuditActivateSessionEventType_UserIdentityToken Variable. + + + + + The identifier for the AuditActivateSessionEventType_SecureChannelId Variable. + + + + + The identifier for the AuditCancelEventType_RequestHandle Variable. + + + + + The identifier for the AuditCertificateEventType_Certificate Variable. + + + + + The identifier for the AuditCertificateDataMismatchEventType_InvalidHostname Variable. + + + + + The identifier for the AuditCertificateDataMismatchEventType_InvalidUri Variable. + + + + + The identifier for the AuditAddNodesEventType_NodesToAdd Variable. + + + + + The identifier for the AuditDeleteNodesEventType_NodesToDelete Variable. + + + + + The identifier for the AuditAddReferencesEventType_ReferencesToAdd Variable. + + + + + The identifier for the AuditDeleteReferencesEventType_ReferencesToDelete Variable. + + + + + The identifier for the AuditWriteUpdateEventType_AttributeId Variable. + + + + + The identifier for the AuditWriteUpdateEventType_IndexRange Variable. + + + + + The identifier for the AuditWriteUpdateEventType_OldValue Variable. + + + + + The identifier for the AuditWriteUpdateEventType_NewValue Variable. + + + + + The identifier for the AuditHistoryUpdateEventType_ParameterDataTypeId Variable. + + + + + The identifier for the AuditUpdateMethodEventType_MethodId Variable. + + + + + The identifier for the AuditUpdateMethodEventType_InputArguments Variable. + + + + + The identifier for the SystemStatusChangeEventType_SystemState Variable. + + + + + The identifier for the GeneralModelChangeEventType_Changes Variable. + + + + + The identifier for the SemanticChangeEventType_Changes Variable. + + + + + The identifier for the ProgressEventType_Context Variable. + + + + + The identifier for the ProgressEventType_Progress Variable. + + + + + The identifier for the ServerStatusType_StartTime Variable. + + + + + The identifier for the ServerStatusType_CurrentTime Variable. + + + + + The identifier for the ServerStatusType_State Variable. + + + + + The identifier for the ServerStatusType_BuildInfo Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_ProductUri Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_ManufacturerName Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_ProductName Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_SoftwareVersion Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_BuildNumber Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_BuildDate Variable. + + + + + The identifier for the ServerStatusType_SecondsTillShutdown Variable. + + + + + The identifier for the ServerStatusType_ShutdownReason Variable. + + + + + The identifier for the BuildInfoType_ProductUri Variable. + + + + + The identifier for the BuildInfoType_ManufacturerName Variable. + + + + + The identifier for the BuildInfoType_ProductName Variable. + + + + + The identifier for the BuildInfoType_SoftwareVersion Variable. + + + + + The identifier for the BuildInfoType_BuildNumber Variable. + + + + + The identifier for the BuildInfoType_BuildDate Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_ServerViewCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_CurrentSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_CumulatedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_SecurityRejectedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_RejectedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_SessionTimeoutCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_SessionAbortCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_PublishingIntervalCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_CurrentSubscriptionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_CumulatedSubscriptionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_SecurityRejectedRequestsCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_RejectedRequestsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_SamplingInterval Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_SampledMonitoredItemsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_MaxSampledMonitoredItemsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_DisabledMonitoredItemsSamplingCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsType_SamplingInterval Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsType_SampledMonitoredItemsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsType_MaxSampledMonitoredItemsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsType_DisabledMonitoredItemsSamplingCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_SessionId Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_SubscriptionId Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_Priority Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_PublishingInterval Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MaxKeepAliveCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MaxLifetimeCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MaxNotificationsPerPublish Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_PublishingEnabled Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_ModifyCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_EnableCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_DisableCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_RepublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_RepublishMessageRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_RepublishMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_TransferRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_TransferredToAltClientCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_TransferredToSameClientCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_PublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_DataChangeNotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_EventNotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_NotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_LatePublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_CurrentKeepAliveCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_CurrentLifetimeCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_UnacknowledgedMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_DiscardedMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MonitoredItemCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_DisabledMonitoredItemCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MonitoringQueueOverflowCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_NextSequenceNumber Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_EventQueueOverflowCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_SessionId Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_SubscriptionId Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_Priority Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_PublishingInterval Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MaxKeepAliveCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MaxLifetimeCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MaxNotificationsPerPublish Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_PublishingEnabled Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_ModifyCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_EnableCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_DisableCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_RepublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_RepublishMessageRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_RepublishMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_TransferRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_TransferredToAltClientCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_TransferredToSameClientCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_PublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_DataChangeNotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_EventNotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_NotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_LatePublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_CurrentKeepAliveCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_CurrentLifetimeCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_UnacknowledgedMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_DiscardedMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MonitoredItemCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_DisabledMonitoredItemCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MonitoringQueueOverflowCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_NextSequenceNumber Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_EventQueueOverflowCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SessionId Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SessionName Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ClientDescription Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ServerUri Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_EndpointUrl Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_LocaleIds Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ActualSessionTimeout Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_MaxResponseMessageSize Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ClientConnectionTime Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ClientLastContactTime Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CurrentSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CurrentMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CurrentPublishRequestsInQueue Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_TotalRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_UnauthorizedRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ReadCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_HistoryReadCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_WriteCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_HistoryUpdateCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CallCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CreateMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ModifyMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SetMonitoringModeCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SetTriggeringCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_DeleteMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CreateSubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ModifySubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SetPublishingModeCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_PublishCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_RepublishCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_TransferSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_DeleteSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_AddNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_AddReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_DeleteNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_DeleteReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_BrowseCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_BrowseNextCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_TranslateBrowsePathsToNodeIdsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_QueryFirstCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_QueryNextCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_RegisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_UnregisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SessionId Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SessionName Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ClientDescription Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ServerUri Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_EndpointUrl Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_LocaleIds Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ActualSessionTimeout Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_MaxResponseMessageSize Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ClientConnectionTime Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ClientLastContactTime Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CurrentSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CurrentMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CurrentPublishRequestsInQueue Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_TotalRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_UnauthorizedRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ReadCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_HistoryReadCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_WriteCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_HistoryUpdateCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CallCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CreateMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ModifyMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SetMonitoringModeCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SetTriggeringCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_DeleteMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CreateSubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ModifySubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SetPublishingModeCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_PublishCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_RepublishCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_TransferSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_DeleteSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_AddNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_AddReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_DeleteNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_DeleteReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_BrowseCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_BrowseNextCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_TranslateBrowsePathsToNodeIdsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_QueryFirstCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_QueryNextCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_RegisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_UnregisterNodesCount Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_SessionId Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_ClientUserIdOfSession Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_ClientUserIdHistory Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_AuthenticationMechanism Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_Encoding Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_TransportProtocol Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_SecurityMode Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_SecurityPolicyUri Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_ClientCertificate Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_SessionId Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_ClientUserIdOfSession Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_ClientUserIdHistory Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_AuthenticationMechanism Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_Encoding Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_TransportProtocol Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_SecurityMode Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_SecurityPolicyUri Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_ClientCertificate Variable. + + + + + The identifier for the OptionSetType_OptionSetValues Variable. + + + + + The identifier for the OptionSetType_BitMask Variable. + + + + + The identifier for the SelectionListType_Selections Variable. + + + + + The identifier for the SelectionListType_SelectionDescriptions Variable. + + + + + The identifier for the SelectionListType_RestrictToList Variable. + + + + + The identifier for the AudioVariableType_ListId Variable. + + + + + The identifier for the AudioVariableType_AgencyId Variable. + + + + + The identifier for the AudioVariableType_VersionId Variable. + + + + + The identifier for the Server_ServerArray Variable. + + + + + The identifier for the Server_NamespaceArray Variable. + + + + + The identifier for the Server_ServerStatus Variable. + + + + + The identifier for the Server_ServerStatus_StartTime Variable. + + + + + The identifier for the Server_ServerStatus_CurrentTime Variable. + + + + + The identifier for the Server_ServerStatus_State Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_ProductUri Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_ManufacturerName Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_ProductName Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_SoftwareVersion Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_BuildNumber Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_BuildDate Variable. + + + + + The identifier for the Server_ServerStatus_SecondsTillShutdown Variable. + + + + + The identifier for the Server_ServerStatus_ShutdownReason Variable. + + + + + The identifier for the Server_ServiceLevel Variable. + + + + + The identifier for the Server_Auditing Variable. + + + + + The identifier for the Server_EstimatedReturnTime Variable. + + + + + The identifier for the Server_LocalTime Variable. + + + + + The identifier for the Server_ServerCapabilities_ServerProfileArray Variable. + + + + + The identifier for the Server_ServerCapabilities_LocaleIdArray Variable. + + + + + The identifier for the Server_ServerCapabilities_MinSupportedSampleRate Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxBrowseContinuationPoints Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxQueryContinuationPoints Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxHistoryContinuationPoints Variable. + + + + + The identifier for the Server_ServerCapabilities_SoftwareCertificates Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxArrayLength Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxStringLength Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxByteStringLength Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerRead Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerHistoryReadData Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerHistoryReadEvents Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerWrite Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerHistoryUpdateData Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerHistoryUpdateEvents Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerMethodCall Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerBrowse Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerRegisterNodes Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerTranslateBrowsePathsToNodeIds Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerNodeManagement Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxMonitoredItemsPerCall Variable. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_AddRole_InputArguments Variable. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_AddRole_OutputArguments Variable. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_RemoveRole_InputArguments Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_ServerViewCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSessionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSessionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedSessionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_RejectedSessionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_SessionTimeoutCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_SessionAbortCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_PublishingIntervalCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSubscriptionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSubscriptionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedRequestsCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_RejectedRequestsCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_SamplingIntervalDiagnosticsArray Variable. + + + + + The identifier for the Server_ServerDiagnostics_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the Server_ServerDiagnostics_SessionsDiagnosticsSummary_SessionDiagnosticsArray Variable. + + + + + The identifier for the Server_ServerDiagnostics_SessionsDiagnosticsSummary_SessionSecurityDiagnosticsArray Variable. + + + + + The identifier for the Server_ServerDiagnostics_EnabledFlag Variable. + + + + + The identifier for the Server_ServerRedundancy_RedundancySupport Variable. + + + + + The identifier for the Server_GetMonitoredItems_InputArguments Variable. + + + + + The identifier for the Server_GetMonitoredItems_OutputArguments Variable. + + + + + The identifier for the Server_ResendData_InputArguments Variable. + + + + + The identifier for the Server_SetSubscriptionDurable_InputArguments Variable. + + + + + The identifier for the Server_SetSubscriptionDurable_OutputArguments Variable. + + + + + The identifier for the Server_RequestServerStateChange_InputArguments Variable. + + + + + The identifier for the Server_ServerRedundancy_CurrentServerId Variable. + + + + + The identifier for the Server_ServerRedundancy_RedundantServerArray Variable. + + + + + The identifier for the Server_ServerRedundancy_ServerUriArray Variable. + + + + + The identifier for the Server_ServerRedundancy_ServerNetworkGroups Variable. + + + + + The identifier for the HistoryServerCapabilities_AccessHistoryDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_AccessHistoryEventsCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_MaxReturnDataValues Variable. + + + + + The identifier for the HistoryServerCapabilities_MaxReturnEventValues Variable. + + + + + The identifier for the HistoryServerCapabilities_InsertDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_ReplaceDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_UpdateDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_DeleteRawCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_DeleteAtTimeCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_InsertEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_ReplaceEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_UpdateEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_DeleteEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_InsertAnnotationCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_ServerTimestampSupported Variable. + + + + + The identifier for the StateMachineType_CurrentState Variable. + + + + + The identifier for the StateMachineType_CurrentState_Id Variable. + + + + + The identifier for the StateMachineType_LastTransition Variable. + + + + + The identifier for the StateMachineType_LastTransition_Id Variable. + + + + + The identifier for the StateVariableType_Id Variable. + + + + + The identifier for the StateVariableType_Name Variable. + + + + + The identifier for the StateVariableType_Number Variable. + + + + + The identifier for the StateVariableType_EffectiveDisplayName Variable. + + + + + The identifier for the TransitionVariableType_Id Variable. + + + + + The identifier for the TransitionVariableType_Name Variable. + + + + + The identifier for the TransitionVariableType_Number Variable. + + + + + The identifier for the TransitionVariableType_TransitionTime Variable. + + + + + The identifier for the TransitionVariableType_EffectiveTransitionTime Variable. + + + + + The identifier for the FiniteStateMachineType_CurrentState Variable. + + + + + The identifier for the FiniteStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the FiniteStateMachineType_LastTransition Variable. + + + + + The identifier for the FiniteStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the FiniteStateMachineType_AvailableStates Variable. + + + + + The identifier for the FiniteStateMachineType_AvailableTransitions Variable. + + + + + The identifier for the FiniteStateVariableType_Id Variable. + + + + + The identifier for the FiniteTransitionVariableType_Id Variable. + + + + + The identifier for the StateType_StateNumber Variable. + + + + + The identifier for the TransitionType_TransitionNumber Variable. + + + + + The identifier for the ExpressionGuardVariableType_Expression Variable. + + + + + The identifier for the RationalNumberType_Numerator Variable. + + + + + The identifier for the RationalNumberType_Denominator Variable. + + + + + The identifier for the VectorType_VectorUnit Variable. + + + + + The identifier for the ThreeDVectorType_X Variable. + + + + + The identifier for the ThreeDVectorType_Y Variable. + + + + + The identifier for the ThreeDVectorType_Z Variable. + + + + + The identifier for the CartesianCoordinatesType_LengthUnit Variable. + + + + + The identifier for the ThreeDCartesianCoordinatesType_X Variable. + + + + + The identifier for the ThreeDCartesianCoordinatesType_Y Variable. + + + + + The identifier for the ThreeDCartesianCoordinatesType_Z Variable. + + + + + The identifier for the OrientationType_AngleUnit Variable. + + + + + The identifier for the ThreeDOrientationType_A Variable. + + + + + The identifier for the ThreeDOrientationType_B Variable. + + + + + The identifier for the ThreeDOrientationType_C Variable. + + + + + The identifier for the FrameType_CartesianCoordinates Variable. + + + + + The identifier for the FrameType_Orientation Variable. + + + + + The identifier for the FrameType_Constant Variable. + + + + + The identifier for the FrameType_BaseFrame Variable. + + + + + The identifier for the FrameType_FixedBase Variable. + + + + + The identifier for the ThreeDFrameType_CartesianCoordinates Variable. + + + + + The identifier for the ThreeDFrameType_Orientation Variable. + + + + + The identifier for the ThreeDFrameType_CartesianCoordinates_X Variable. + + + + + The identifier for the ThreeDFrameType_CartesianCoordinates_Y Variable. + + + + + The identifier for the ThreeDFrameType_CartesianCoordinates_Z Variable. + + + + + The identifier for the ThreeDFrameType_Orientation_A Variable. + + + + + The identifier for the ThreeDFrameType_Orientation_B Variable. + + + + + The identifier for the ThreeDFrameType_Orientation_C Variable. + + + + + The identifier for the TransitionEventType_Transition Variable. + + + + + The identifier for the TransitionEventType_Transition_Id Variable. + + + + + The identifier for the TransitionEventType_FromState Variable. + + + + + The identifier for the TransitionEventType_FromState_Id Variable. + + + + + The identifier for the TransitionEventType_ToState Variable. + + + + + The identifier for the TransitionEventType_ToState_Id Variable. + + + + + The identifier for the AuditUpdateStateEventType_OldStateId Variable. + + + + + The identifier for the AuditUpdateStateEventType_NewStateId Variable. + + + + + The identifier for the OpenFileMode_EnumValues Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateDirectory_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateDirectory_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateFile_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateFile_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_DeleteFileSystemObject_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_MoveOrCopy_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_MoveOrCopy_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Size Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Writable Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_UserWritable Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_OpenCount Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Open_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Open_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Close_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Read_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Read_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Write_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_GetPosition_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_GetPosition_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_SetPosition_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_CreateDirectory_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_CreateDirectory_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_CreateFile_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_CreateFile_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_DeleteFileSystemObject_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_MoveOrCopy_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_MoveOrCopy_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateDirectory_InputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateDirectory_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateFile_InputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateFile_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_DeleteFileSystemObject_InputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_MoveOrCopy_InputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_MoveOrCopy_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Size Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Writable Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_UserWritable Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_OpenCount Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Open_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Open_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Close_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Read_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Read_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Write_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_GetPosition_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_GetPosition_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_SetPosition_InputArguments Variable. + + + + + The identifier for the FileSystem_CreateDirectory_InputArguments Variable. + + + + + The identifier for the FileSystem_CreateDirectory_OutputArguments Variable. + + + + + The identifier for the FileSystem_CreateFile_InputArguments Variable. + + + + + The identifier for the FileSystem_CreateFile_OutputArguments Variable. + + + + + The identifier for the FileSystem_DeleteFileSystemObject_InputArguments Variable. + + + + + The identifier for the FileSystem_MoveOrCopy_InputArguments Variable. + + + + + The identifier for the FileSystem_MoveOrCopy_OutputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_ClientProcessingTimeout Variable. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForRead_InputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForRead_OutputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForWrite_InputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForWrite_OutputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_CloseAndCommit_InputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_CloseAndCommit_OutputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder_CurrentState Variable. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder_CurrentState_Id Variable. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder_LastTransition_Id Variable. + + + + + The identifier for the FileTransferStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the FileTransferStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the FileTransferStateMachineType_Idle_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepare_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadTransfer_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ApplyWrite_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_Error_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_IdleToReadPrepare_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepareToReadTransfer_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadTransferToIdle_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_IdleToApplyWrite_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ApplyWriteToIdle_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepareToError_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadTransferToError_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ApplyWriteToError_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ErrorToIdle_TransitionNumber Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_Identities Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_AddIdentity_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_AddApplication_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_RemoveApplication_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_AddEndpoint_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the RoleSetType_AddRole_InputArguments Variable. + + + + + The identifier for the RoleSetType_AddRole_OutputArguments Variable. + + + + + The identifier for the RoleSetType_RemoveRole_InputArguments Variable. + + + + + The identifier for the RoleType_Identities Variable. + + + + + The identifier for the RoleType_Applications Variable. + + + + + The identifier for the RoleType_ApplicationsExclude Variable. + + + + + The identifier for the RoleType_Endpoints Variable. + + + + + The identifier for the RoleType_EndpointsExclude Variable. + + + + + The identifier for the RoleType_AddIdentity_InputArguments Variable. + + + + + The identifier for the RoleType_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the RoleType_AddApplication_InputArguments Variable. + + + + + The identifier for the RoleType_RemoveApplication_InputArguments Variable. + + + + + The identifier for the RoleType_AddEndpoint_InputArguments Variable. + + + + + The identifier for the RoleType_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the IdentityCriteriaType_EnumValues Variable. + + + + + The identifier for the WellKnownRole_Anonymous_Identities Variable. + + + + + The identifier for the WellKnownRole_Anonymous_Applications Variable. + + + + + The identifier for the WellKnownRole_Anonymous_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Anonymous_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Anonymous_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Anonymous_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_Identities Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_Applications Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_Endpoints Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_Identities Variable. + + + + + The identifier for the WellKnownRole_Observer_Applications Variable. + + + + + The identifier for the WellKnownRole_Observer_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Observer_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Observer_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Observer_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_Identities Variable. + + + + + The identifier for the WellKnownRole_Operator_Applications Variable. + + + + + The identifier for the WellKnownRole_Operator_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Operator_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Operator_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Operator_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_Identities Variable. + + + + + The identifier for the WellKnownRole_Engineer_Applications Variable. + + + + + The identifier for the WellKnownRole_Engineer_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Engineer_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Engineer_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Engineer_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_Identities Variable. + + + + + The identifier for the WellKnownRole_Supervisor_Applications Variable. + + + + + The identifier for the WellKnownRole_Supervisor_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Supervisor_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Supervisor_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Supervisor_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_Identities Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_Applications Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_Endpoints Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_Identities Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_Applications Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_Endpoints Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the CurrencyUnit Variable. + + + + + The identifier for the IOrderedObjectType_NumberInList Variable. + + + + + The identifier for the OrderedListType_OrderedObject_Placeholder_NumberInList Variable. + + + + + The identifier for the OrderedListType_NodeVersion Variable. + + + + + The identifier for the DataItemType_Definition Variable. + + + + + The identifier for the DataItemType_ValuePrecision Variable. + + + + + The identifier for the BaseAnalogType_InstrumentRange Variable. + + + + + The identifier for the BaseAnalogType_EURange Variable. + + + + + The identifier for the BaseAnalogType_EngineeringUnits Variable. + + + + + The identifier for the AnalogItemType_EURange Variable. + + + + + The identifier for the AnalogUnitType_EngineeringUnits Variable. + + + + + The identifier for the AnalogUnitRangeType_EngineeringUnits Variable. + + + + + The identifier for the TwoStateDiscreteType_FalseState Variable. + + + + + The identifier for the TwoStateDiscreteType_TrueState Variable. + + + + + The identifier for the MultiStateDiscreteType_EnumStrings Variable. + + + + + The identifier for the MultiStateValueDiscreteType_EnumValues Variable. + + + + + The identifier for the MultiStateValueDiscreteType_ValueAsText Variable. + + + + + The identifier for the ArrayItemType_InstrumentRange Variable. + + + + + The identifier for the ArrayItemType_EURange Variable. + + + + + The identifier for the ArrayItemType_EngineeringUnits Variable. + + + + + The identifier for the ArrayItemType_Title Variable. + + + + + The identifier for the ArrayItemType_AxisScaleType Variable. + + + + + The identifier for the YArrayItemType_XAxisDefinition Variable. + + + + + The identifier for the XYArrayItemType_XAxisDefinition Variable. + + + + + The identifier for the ImageItemType_XAxisDefinition Variable. + + + + + The identifier for the ImageItemType_YAxisDefinition Variable. + + + + + The identifier for the CubeItemType_XAxisDefinition Variable. + + + + + The identifier for the CubeItemType_YAxisDefinition Variable. + + + + + The identifier for the CubeItemType_ZAxisDefinition Variable. + + + + + The identifier for the NDimensionArrayItemType_AxisDefinition Variable. + + + + + The identifier for the TwoStateVariableType_Id Variable. + + + + + The identifier for the TwoStateVariableType_TransitionTime Variable. + + + + + The identifier for the TwoStateVariableType_EffectiveTransitionTime Variable. + + + + + The identifier for the TwoStateVariableType_TrueState Variable. + + + + + The identifier for the TwoStateVariableType_FalseState Variable. + + + + + The identifier for the ConditionVariableType_SourceTimestamp Variable. + + + + + The identifier for the ConditionType_ConditionClassId Variable. + + + + + The identifier for the ConditionType_ConditionClassName Variable. + + + + + The identifier for the ConditionType_ConditionSubClassId Variable. + + + + + The identifier for the ConditionType_ConditionSubClassName Variable. + + + + + The identifier for the ConditionType_ConditionName Variable. + + + + + The identifier for the ConditionType_BranchId Variable. + + + + + The identifier for the ConditionType_Retain Variable. + + + + + The identifier for the ConditionType_EnabledState Variable. + + + + + The identifier for the ConditionType_EnabledState_Id Variable. + + + + + The identifier for the ConditionType_EnabledState_EffectiveDisplayName Variable. + + + + + The identifier for the ConditionType_EnabledState_TransitionTime Variable. + + + + + The identifier for the ConditionType_EnabledState_EffectiveTransitionTime Variable. + + + + + The identifier for the ConditionType_EnabledState_TrueState Variable. + + + + + The identifier for the ConditionType_EnabledState_FalseState Variable. + + + + + The identifier for the ConditionType_Quality Variable. + + + + + The identifier for the ConditionType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ConditionType_LastSeverity Variable. + + + + + The identifier for the ConditionType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ConditionType_Comment Variable. + + + + + The identifier for the ConditionType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ConditionType_ClientUserId Variable. + + + + + The identifier for the ConditionType_AddComment_InputArguments Variable. + + + + + The identifier for the ConditionType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ConditionType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the DialogConditionType_EnabledState Variable. + + + + + The identifier for the DialogConditionType_EnabledState_Id Variable. + + + + + The identifier for the DialogConditionType_Quality_SourceTimestamp Variable. + + + + + The identifier for the DialogConditionType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the DialogConditionType_Comment_SourceTimestamp Variable. + + + + + The identifier for the DialogConditionType_AddComment_InputArguments Variable. + + + + + The identifier for the DialogConditionType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the DialogConditionType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the DialogConditionType_DialogState Variable. + + + + + The identifier for the DialogConditionType_DialogState_Id Variable. + + + + + The identifier for the DialogConditionType_DialogState_TransitionTime Variable. + + + + + The identifier for the DialogConditionType_DialogState_TrueState Variable. + + + + + The identifier for the DialogConditionType_DialogState_FalseState Variable. + + + + + The identifier for the DialogConditionType_Prompt Variable. + + + + + The identifier for the DialogConditionType_ResponseOptionSet Variable. + + + + + The identifier for the DialogConditionType_DefaultResponse Variable. + + + + + The identifier for the DialogConditionType_OkResponse Variable. + + + + + The identifier for the DialogConditionType_CancelResponse Variable. + + + + + The identifier for the DialogConditionType_LastResponse Variable. + + + + + The identifier for the DialogConditionType_Respond_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_EnabledState Variable. + + + + + The identifier for the AcknowledgeableConditionType_EnabledState_Id Variable. + + + + + The identifier for the AcknowledgeableConditionType_Quality_SourceTimestamp Variable. + + + + + The identifier for the AcknowledgeableConditionType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the AcknowledgeableConditionType_Comment_SourceTimestamp Variable. + + + + + The identifier for the AcknowledgeableConditionType_AddComment_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState_Id Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState_TransitionTime Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState_TrueState Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState_FalseState Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState_Id Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState_TransitionTime Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState_TrueState Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState_FalseState Variable. + + + + + The identifier for the AcknowledgeableConditionType_Acknowledge_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_Confirm_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_EnabledState Variable. + + + + + The identifier for the AlarmConditionType_EnabledState_Id Variable. + + + + + The identifier for the AlarmConditionType_Quality_SourceTimestamp Variable. + + + + + The identifier for the AlarmConditionType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the AlarmConditionType_Comment_SourceTimestamp Variable. + + + + + The identifier for the AlarmConditionType_AddComment_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_AckedState_Id Variable. + + + + + The identifier for the AlarmConditionType_ConfirmedState_Id Variable. + + + + + The identifier for the AlarmConditionType_Acknowledge_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_Confirm_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_ActiveState Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_Id Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_EffectiveDisplayName Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_EffectiveTransitionTime Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_InputNode Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState_Id Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState_Id Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_CurrentState Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_LastTransition Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_LastTransition_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_SuppressedOrShelved Variable. + + + + + The identifier for the AlarmConditionType_MaxTimeShelved Variable. + + + + + The identifier for the AlarmConditionType_AudibleEnabled Variable. + + + + + The identifier for the AlarmConditionType_AudibleSound Variable. + + + + + The identifier for the AlarmConditionType_SilenceState Variable. + + + + + The identifier for the AlarmConditionType_SilenceState_Id Variable. + + + + + The identifier for the AlarmConditionType_SilenceState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_SilenceState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_SilenceState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_OnDelay Variable. + + + + + The identifier for the AlarmConditionType_OffDelay Variable. + + + + + The identifier for the AlarmConditionType_FirstInGroupFlag Variable. + + + + + The identifier for the AlarmConditionType_LatchedState Variable. + + + + + The identifier for the AlarmConditionType_LatchedState_Id Variable. + + + + + The identifier for the AlarmConditionType_LatchedState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_LatchedState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_LatchedState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_ReAlarmTime Variable. + + + + + The identifier for the AlarmConditionType_ReAlarmRepeatCount Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_EventId Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_EventType Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SourceNode Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SourceName Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Time Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ReceiveTime Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Message Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Severity Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ConditionClassId Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ConditionClassName Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ConditionName Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_BranchId Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Retain Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_EnabledState Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_EnabledState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Quality Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Quality_SourceTimestamp Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_LastSeverity Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Comment Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Comment_SourceTimestamp Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ClientUserId Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_AddComment_InputArguments Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_AckedState Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_AckedState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Acknowledge_InputArguments Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Confirm_InputArguments Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ActiveState Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ActiveState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_InputNode Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedOrShelved Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SilenceState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_LatchedState_Id Variable. + + + + + The identifier for the ShelvedStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the ShelvedStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the ShelvedStateMachineType_UnshelveTime Variable. + + + + + The identifier for the ShelvedStateMachineType_Unshelved_StateNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_TimedShelved_StateNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelved_StateNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_UnshelvedToTimedShelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_UnshelvedToOneShotShelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_TimedShelvedToUnshelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_TimedShelvedToOneShotShelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelvedToUnshelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelvedToTimedShelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_TimedShelve_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_EnabledState_Id Variable. + + + + + The identifier for the LimitAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the LimitAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the LimitAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the LimitAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_AckedState_Id Variable. + + + + + The identifier for the LimitAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the LimitAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_ActiveState_Id Variable. + + + + + The identifier for the LimitAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the LimitAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_SilenceState_Id Variable. + + + + + The identifier for the LimitAlarmType_LatchedState_Id Variable. + + + + + The identifier for the LimitAlarmType_HighHighLimit Variable. + + + + + The identifier for the LimitAlarmType_HighLimit Variable. + + + + + The identifier for the LimitAlarmType_LowLimit Variable. + + + + + The identifier for the LimitAlarmType_LowLowLimit Variable. + + + + + The identifier for the LimitAlarmType_BaseHighHighLimit Variable. + + + + + The identifier for the LimitAlarmType_BaseHighLimit Variable. + + + + + The identifier for the LimitAlarmType_BaseLowLimit Variable. + + + + + The identifier for the LimitAlarmType_BaseLowLowLimit Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighHigh_StateNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_High_StateNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_Low_StateNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowLow_StateNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowLowToLow_TransitionNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowToLowLow_TransitionNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighHighToHigh_TransitionNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighToHighHigh_TransitionNumber Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_EnabledState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_AckedState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ActiveState Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ActiveState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_SilenceState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LatchedState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_CurrentState Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_LastTransition Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_LastTransition_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_EnabledState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_AckedState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ActiveState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ActiveState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_SilenceState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LatchedState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState_TrueState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState_FalseState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState_TrueState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState_FalseState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState_TrueState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState_FalseState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState_TrueState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState_FalseState Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_EnabledState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_AckedState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ActiveState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_SilenceState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_LatchedState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_HighHighState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_HighState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_LowState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_LowLowState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_EnabledState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_AckedState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ActiveState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_SilenceState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LatchedState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LimitState_CurrentState Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LimitState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LimitState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_EnabledState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_AckedState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ActiveState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_SilenceState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_LatchedState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_HighHighState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_HighState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_LowState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_LowLowState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_SetpointNode Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_BaseSetpointNode Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_EnabledState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_AckedState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ActiveState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_SilenceState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_LatchedState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_HighHighState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_HighState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_LowState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_LowLowState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_EngineeringUnits Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_EnabledState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_AckedState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ActiveState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_SilenceState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LatchedState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LimitState_CurrentState Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LimitState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LimitState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_SetpointNode Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_BaseSetpointNode Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_EnabledState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_AckedState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ActiveState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_SilenceState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LatchedState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LimitState_CurrentState Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LimitState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LimitState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_EngineeringUnits Variable. + + + + + The identifier for the DiscreteAlarmType_EnabledState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the DiscreteAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the DiscreteAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the DiscreteAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_AckedState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_ActiveState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_SilenceState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_LatchedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_EnabledState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the OffNormalAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the OffNormalAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the OffNormalAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_AckedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_ActiveState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_SilenceState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_LatchedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_NormalState Variable. + + + + + The identifier for the SystemOffNormalAlarmType_EnabledState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the SystemOffNormalAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the SystemOffNormalAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the SystemOffNormalAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_AckedState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ActiveState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_SilenceState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_LatchedState_Id Variable. + + + + + The identifier for the TripAlarmType_EnabledState_Id Variable. + + + + + The identifier for the TripAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the TripAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the TripAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the TripAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the TripAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the TripAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the TripAlarmType_AckedState_Id Variable. + + + + + The identifier for the TripAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the TripAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the TripAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the TripAlarmType_ActiveState_Id Variable. + + + + + The identifier for the TripAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the TripAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the TripAlarmType_SilenceState_Id Variable. + + + + + The identifier for the TripAlarmType_LatchedState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_EnabledState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_AckedState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ActiveState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_SilenceState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_LatchedState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_EnabledState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_AckedState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ActiveState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_SilenceState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_LatchedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_EnabledState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateExpirationAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateExpirationAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_AckedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ActiveState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_SilenceState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_LatchedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ExpirationDate Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ExpirationLimit Variable. + + + + + The identifier for the CertificateExpirationAlarmType_CertificateType Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Certificate Variable. + + + + + The identifier for the DiscrepancyAlarmType_EnabledState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the DiscrepancyAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the DiscrepancyAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the DiscrepancyAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_AckedState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_ActiveState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_SilenceState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_LatchedState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_TargetValueNode Variable. + + + + + The identifier for the DiscrepancyAlarmType_ExpectedTime Variable. + + + + + The identifier for the DiscrepancyAlarmType_Tolerance Variable. + + + + + The identifier for the AuditConditionCommentEventType_ConditionEventId Variable. + + + + + The identifier for the AuditConditionCommentEventType_Comment Variable. + + + + + The identifier for the AuditConditionRespondEventType_SelectedResponse Variable. + + + + + The identifier for the AuditConditionAcknowledgeEventType_ConditionEventId Variable. + + + + + The identifier for the AuditConditionAcknowledgeEventType_Comment Variable. + + + + + The identifier for the AuditConditionConfirmEventType_ConditionEventId Variable. + + + + + The identifier for the AuditConditionConfirmEventType_Comment Variable. + + + + + The identifier for the AuditConditionShelvingEventType_ShelvingTime Variable. + + + + + The identifier for the AlarmMetricsType_AlarmCount Variable. + + + + + The identifier for the AlarmMetricsType_StartTime Variable. + + + + + The identifier for the AlarmMetricsType_MaximumActiveState Variable. + + + + + The identifier for the AlarmMetricsType_MaximumUnAck Variable. + + + + + The identifier for the AlarmMetricsType_CurrentAlarmRate Variable. + + + + + The identifier for the AlarmMetricsType_CurrentAlarmRate_Rate Variable. + + + + + The identifier for the AlarmMetricsType_MaximumAlarmRate Variable. + + + + + The identifier for the AlarmMetricsType_MaximumAlarmRate_Rate Variable. + + + + + The identifier for the AlarmMetricsType_MaximumReAlarmCount Variable. + + + + + The identifier for the AlarmMetricsType_AverageAlarmRate Variable. + + + + + The identifier for the AlarmMetricsType_AverageAlarmRate_Rate Variable. + + + + + The identifier for the AlarmRateVariableType_Rate Variable. + + + + + The identifier for the ProgramStateMachineType_CurrentState Variable. + + + + + The identifier for the ProgramStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the ProgramStateMachineType_CurrentState_Number Variable. + + + + + The identifier for the ProgramStateMachineType_LastTransition Variable. + + + + + The identifier for the ProgramStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the ProgramStateMachineType_LastTransition_Number Variable. + + + + + The identifier for the ProgramStateMachineType_LastTransition_TransitionTime Variable. + + + + + The identifier for the ProgramStateMachineType_Creatable Variable. + + + + + The identifier for the ProgramStateMachineType_Deletable Variable. + + + + + The identifier for the ProgramStateMachineType_AutoDelete Variable. + + + + + The identifier for the ProgramStateMachineType_RecycleCount Variable. + + + + + The identifier for the ProgramStateMachineType_InstanceCount Variable. + + + + + The identifier for the ProgramStateMachineType_MaxInstanceCount Variable. + + + + + The identifier for the ProgramStateMachineType_MaxRecycleCount Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_CreateSessionId Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_CreateClientName Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_InvocationCreationTime Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastTransitionTime Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodCall Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodSessionId Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodInputArguments Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodOutputArguments Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodInputValues Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodOutputValues Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodCallTime Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodReturnStatus Variable. + + + + + The identifier for the ProgramStateMachineType_Halted_StateNumber Variable. + + + + + The identifier for the ProgramStateMachineType_Ready_StateNumber Variable. + + + + + The identifier for the ProgramStateMachineType_Running_StateNumber Variable. + + + + + The identifier for the ProgramStateMachineType_Suspended_StateNumber Variable. + + + + + The identifier for the ProgramStateMachineType_HaltedToReady_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_ReadyToRunning_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_RunningToHalted_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_RunningToReady_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_RunningToSuspended_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_SuspendedToRunning_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_SuspendedToHalted_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_SuspendedToReady_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_ReadyToHalted_TransitionNumber Variable. + + + + + The identifier for the ProgramTransitionEventType_Transition_Id Variable. + + + + + The identifier for the ProgramTransitionEventType_FromState_Id Variable. + + + + + The identifier for the ProgramTransitionEventType_ToState_Id Variable. + + + + + The identifier for the ProgramTransitionEventType_IntermediateResult Variable. + + + + + The identifier for the AuditProgramTransitionEventType_TransitionNumber Variable. + + + + + The identifier for the ProgramTransitionAuditEventType_Transition Variable. + + + + + The identifier for the ProgramTransitionAuditEventType_Transition_Id Variable. + + + + + The identifier for the ProgramDiagnosticType_CreateSessionId Variable. + + + + + The identifier for the ProgramDiagnosticType_CreateClientName Variable. + + + + + The identifier for the ProgramDiagnosticType_InvocationCreationTime Variable. + + + + + The identifier for the ProgramDiagnosticType_LastTransitionTime Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodCall Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodSessionId Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodInputArguments Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodOutputArguments Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodCallTime Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodReturnStatus Variable. + + + + + The identifier for the ProgramDiagnostic2Type_CreateSessionId Variable. + + + + + The identifier for the ProgramDiagnostic2Type_CreateClientName Variable. + + + + + The identifier for the ProgramDiagnostic2Type_InvocationCreationTime Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastTransitionTime Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodCall Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodSessionId Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodInputArguments Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodOutputArguments Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodInputValues Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodOutputValues Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodCallTime Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodReturnStatus Variable. + + + + + The identifier for the Annotations Variable. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration_TreatUncertainAsBad Variable. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration_PercentDataBad Variable. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration_PercentDataGood Variable. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration_UseSlopedExtrapolation Variable. + + + + + The identifier for the HistoricalDataConfigurationType_Stepped Variable. + + + + + The identifier for the HistoricalDataConfigurationType_Definition Variable. + + + + + The identifier for the HistoricalDataConfigurationType_MaxTimeInterval Variable. + + + + + The identifier for the HistoricalDataConfigurationType_MinTimeInterval Variable. + + + + + The identifier for the HistoricalDataConfigurationType_ExceptionDeviation Variable. + + + + + The identifier for the HistoricalDataConfigurationType_ExceptionDeviationFormat Variable. + + + + + The identifier for the HistoricalDataConfigurationType_StartOfArchive Variable. + + + + + The identifier for the HistoricalDataConfigurationType_StartOfOnlineArchive Variable. + + + + + The identifier for the HistoricalDataConfigurationType_ServerTimestampSupported Variable. + + + + + The identifier for the HAConfiguration_AggregateConfiguration_TreatUncertainAsBad Variable. + + + + + The identifier for the HAConfiguration_AggregateConfiguration_PercentDataBad Variable. + + + + + The identifier for the HAConfiguration_AggregateConfiguration_PercentDataGood Variable. + + + + + The identifier for the HAConfiguration_AggregateConfiguration_UseSlopedExtrapolation Variable. + + + + + The identifier for the HAConfiguration_Stepped Variable. + + + + + The identifier for the HistoricalEventFilter Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_AccessHistoryDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_AccessHistoryEventsCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_MaxReturnDataValues Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_MaxReturnEventValues Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_InsertDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_ReplaceDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_UpdateDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_DeleteRawCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_DeleteAtTimeCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_InsertEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_ReplaceEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_UpdateEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_DeleteEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_InsertAnnotationCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_ServerTimestampSupported Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_UpdatedNode Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_PerformInsertReplace Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_Filter Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_NewValues Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryValueUpdateEventType_UpdatedNode Variable. + + + + + The identifier for the AuditHistoryValueUpdateEventType_PerformInsertReplace Variable. + + + + + The identifier for the AuditHistoryValueUpdateEventType_NewValues Variable. + + + + + The identifier for the AuditHistoryValueUpdateEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryAnnotationUpdateEventType_PerformInsertReplace Variable. + + + + + The identifier for the AuditHistoryAnnotationUpdateEventType_NewValues Variable. + + + + + The identifier for the AuditHistoryAnnotationUpdateEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryDeleteEventType_UpdatedNode Variable. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType_IsDeleteModified Variable. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType_StartTime Variable. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType_EndTime Variable. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryAtTimeDeleteEventType_ReqTimes Variable. + + + + + The identifier for the AuditHistoryAtTimeDeleteEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryEventDeleteEventType_EventIds Variable. + + + + + The identifier for the AuditHistoryEventDeleteEventType_OldValues Variable. + + + + + The identifier for the TrustListType_Open_InputArguments Variable. + + + + + The identifier for the TrustListType_Open_OutputArguments Variable. + + + + + The identifier for the TrustListType_Close_InputArguments Variable. + + + + + The identifier for the TrustListType_Read_InputArguments Variable. + + + + + The identifier for the TrustListType_Read_OutputArguments Variable. + + + + + The identifier for the TrustListType_Write_InputArguments Variable. + + + + + The identifier for the TrustListType_GetPosition_InputArguments Variable. + + + + + The identifier for the TrustListType_GetPosition_OutputArguments Variable. + + + + + The identifier for the TrustListType_SetPosition_InputArguments Variable. + + + + + The identifier for the TrustListType_LastUpdateTime Variable. + + + + + The identifier for the TrustListType_UpdateFrequency Variable. + + + + + The identifier for the TrustListType_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the TrustListType_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the TrustListType_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the TrustListType_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the TrustListType_AddCertificate_InputArguments Variable. + + + + + The identifier for the TrustListType_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the TrustListMasks_EnumValues Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_EnabledState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_AckedState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ActiveState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_SilenceState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_LatchedState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_TrustListId Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_LastUpdateTime Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupType_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupType_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupType_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfigurationType_ServerCapabilities Variable. + + + + + The identifier for the ServerConfigurationType_SupportedPrivateKeyFormats Variable. + + + + + The identifier for the ServerConfigurationType_MaxTrustListSize Variable. + + + + + The identifier for the ServerConfigurationType_MulticastDnsEnabled Variable. + + + + + The identifier for the ServerConfigurationType_UpdateCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_UpdateCertificate_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CreateSigningRequest_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CreateSigningRequest_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_GetRejectedList_OutputArguments Variable. + + + + + The identifier for the CertificateUpdatedAuditEventType_CertificateGroup Variable. + + + + + The identifier for the CertificateUpdatedAuditEventType_CertificateType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfiguration_ServerCapabilities Variable. + + + + + The identifier for the ServerConfiguration_SupportedPrivateKeyFormats Variable. + + + + + The identifier for the ServerConfiguration_MaxTrustListSize Variable. + + + + + The identifier for the ServerConfiguration_MulticastDnsEnabled Variable. + + + + + The identifier for the ServerConfiguration_UpdateCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_UpdateCertificate_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CreateSigningRequest_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CreateSigningRequest_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_GetRejectedList_OutputArguments Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ResourceUri Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ProfileUri Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_ServiceName_Placeholder_UpdateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_CreateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_CreateCredential_OutputArguments Variable. + + + + + The identifier for the KeyCredentialConfiguration_ServiceName_Placeholder_ResourceUri Variable. + + + + + The identifier for the KeyCredentialConfiguration_ServiceName_Placeholder_ProfileUri Variable. + + + + + The identifier for the KeyCredentialConfiguration_ServiceName_Placeholder_UpdateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialConfiguration_CreateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialConfiguration_CreateCredential_OutputArguments Variable. + + + + + The identifier for the KeyCredentialConfigurationType_ResourceUri Variable. + + + + + The identifier for the KeyCredentialConfigurationType_ProfileUri Variable. + + + + + The identifier for the KeyCredentialConfigurationType_EndpointUrls Variable. + + + + + The identifier for the KeyCredentialConfigurationType_ServiceStatus Variable. + + + + + The identifier for the KeyCredentialConfigurationType_UpdateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialAuditEventType_ResourceUri Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_ServiceUri Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_ServiceCertificate Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_IssuerEndpointUrl Variable. + + + + + The identifier for the AuthorizationServiceConfigurationType_ServiceUri Variable. + + + + + The identifier for the AuthorizationServiceConfigurationType_ServiceCertificate Variable. + + + + + The identifier for the AuthorizationServiceConfigurationType_IssuerEndpointUrl Variable. + + + + + The identifier for the AggregateConfigurationType_TreatUncertainAsBad Variable. + + + + + The identifier for the AggregateConfigurationType_PercentDataBad Variable. + + + + + The identifier for the AggregateConfigurationType_PercentDataGood Variable. + + + + + The identifier for the AggregateConfigurationType_UseSlopedExtrapolation Variable. + + + + + The identifier for the PubSubState_EnumStrings Variable. + + + + + The identifier for the DataSetFieldFlags_OptionSetValues Variable. + + + + + The identifier for the DataSetFieldContentMask_OptionSetValues Variable. + + + + + The identifier for the OverrideValueHandling_EnumStrings Variable. + + + + + The identifier for the DataSetOrderingType_EnumStrings Variable. + + + + + The identifier for the UadpNetworkMessageContentMask_OptionSetValues Variable. + + + + + The identifier for the UadpDataSetMessageContentMask_OptionSetValues Variable. + + + + + The identifier for the JsonNetworkMessageContentMask_OptionSetValues Variable. + + + + + The identifier for the JsonDataSetMessageContentMask_OptionSetValues Variable. + + + + + The identifier for the BrokerTransportQualityOfService_EnumStrings Variable. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityKeys_OutputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityGroup_InputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_SecurityGroupId Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_KeyLifetime Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_SecurityPolicyUri Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_MaxFutureKeyCount Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_MaxPastKeyCount Variable. + + + + + The identifier for the SecurityGroupFolderType_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupType_SecurityGroupId Variable. + + + + + The identifier for the SecurityGroupType_KeyLifetime Variable. + + + + + The identifier for the SecurityGroupType_SecurityPolicyUri Variable. + + + + + The identifier for the SecurityGroupType_MaxFutureKeyCount Variable. + + + + + The identifier for the SecurityGroupType_MaxPastKeyCount Variable. + + + + + The identifier for the PublishSubscribeType_GetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_GetSecurityKeys_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_GetSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_GetSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_PublisherId Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_TransportProfileUri Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_TransportProfileUri_Selections Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_ConnectionProperties Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_Selections Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_AddWriterGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_AddWriterGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_AddReaderGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_AddReaderGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_RemoveGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_SetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_AddConnection_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_AddConnection_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_RemoveConnection_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedDataItems_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedDataItems_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedEvents_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedEvents_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedDataItemsTemplate_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedDataItemsTemplate_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedEventsTemplate_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedEventsTemplate_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_RemovePublishedDataSet_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddDataSetFolder_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddDataSetFolder_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_RemoveDataSetFolder_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_Status_State Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_SubError Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_SupportedTransportProfiles Variable. + + + + + The identifier for the PublishSubscribe_GetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_GetSecurityKeys_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_GetSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_GetSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_SecurityGroups_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_SecurityGroups_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_SecurityGroups_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_PublisherId Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_TransportProfileUri Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_TransportProfileUri_Selections Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_ConnectionProperties Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_Selections Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_AddWriterGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_AddWriterGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_AddReaderGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_AddReaderGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_RemoveGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_SetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_AddConnection_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_AddConnection_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_RemoveConnection_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedDataItems_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedDataItems_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedEvents_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedEvents_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedDataItemsTemplate_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedDataItemsTemplate_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedEventsTemplate_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedEventsTemplate_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_RemovePublishedDataSet_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddDataSetFolder_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddDataSetFolder_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_RemoveDataSetFolder_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_Status_State Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_SubError Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_SupportedTransportProfiles Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_DataSetWriterProperties Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_ConfigurationVersion Variable. + + + + + The identifier for the PublishedDataSetType_DataSetMetaData Variable. + + + + + The identifier for the PublishedDataSetType_DataSetClassId Variable. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_AddExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the ExtensionFieldsType_ExtensionFieldName_Placeholder Variable. + + + + + The identifier for the ExtensionFieldsType_AddExtensionField_InputArguments Variable. + + + + + The identifier for the ExtensionFieldsType_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the ExtensionFieldsType_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_DataSetWriterProperties Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_AddExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_PublishedData Variable. + + + + + The identifier for the PublishedDataItemsType_AddVariables_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_AddVariables_OutputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_RemoveVariables_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_RemoveVariables_OutputArguments Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_DataSetWriterProperties Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_ExtensionFields_AddExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedEventsType_ExtensionFields_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the PublishedEventsType_ExtensionFields_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedEventsType_PubSubEventNotifier Variable. + + + + + The identifier for the PublishedEventsType_SelectedFields Variable. + + + + + The identifier for the PublishedEventsType_Filter Variable. + + + + + The identifier for the PublishedEventsType_ModifyFieldSelection_InputArguments Variable. + + + + + The identifier for the PublishedEventsType_ModifyFieldSelection_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItems_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItems_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEvents_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEvents_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_RemovePublishedDataSet_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddDataSetFolder_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddDataSetFolder_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_RemoveDataSetFolder_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ConfigurationVersion Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_DataSetMetaData Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItems_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItems_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedEvents_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedEvents_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItemsTemplate_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItemsTemplate_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedEventsTemplate_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedEventsTemplate_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_RemovePublishedDataSet_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddDataSetFolder_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddDataSetFolder_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_RemoveDataSetFolder_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_PublisherId Variable. + + + + + The identifier for the PubSubConnectionType_TransportProfileUri Variable. + + + + + The identifier for the PubSubConnectionType_TransportProfileUri_Selections Variable. + + + + + The identifier for the PubSubConnectionType_ConnectionProperties Variable. + + + + + The identifier for the PubSubConnectionType_Address_NetworkInterface Variable. + + + + + The identifier for the PubSubConnectionType_Address_NetworkInterface_Selections Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_SecurityMode Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_MaxNetworkMessageSize Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_GroupProperties Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Status_State Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_WriterGroupId Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_PublishingInterval Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_KeepAliveTime Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Priority Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_LocaleIds Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_HeaderLayoutUri Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_AddDataSetWriter_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_AddDataSetWriter_OutputArguments Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_RemoveDataSetWriter_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_SecurityMode Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_MaxNetworkMessageSize Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_GroupProperties Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Status_State Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_AddDataSetReader_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_AddDataSetReader_OutputArguments Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_RemoveDataSetReader_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_Status_State Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalError Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_SubError Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_LiveValues_ResolvedAddress Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_AddWriterGroup_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_AddWriterGroup_OutputArguments Variable. + + + + + The identifier for the PubSubConnectionType_AddReaderGroup_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_AddReaderGroup_OutputArguments Variable. + + + + + The identifier for the PubSubConnectionType_RemoveGroup_InputArguments Variable. + + + + + The identifier for the PubSubGroupType_SecurityMode Variable. + + + + + The identifier for the PubSubGroupType_SecurityGroupId Variable. + + + + + The identifier for the PubSubGroupType_SecurityKeyServices Variable. + + + + + The identifier for the PubSubGroupType_MaxNetworkMessageSize Variable. + + + + + The identifier for the PubSubGroupType_GroupProperties Variable. + + + + + The identifier for the PubSubGroupType_Status_State Variable. + + + + + The identifier for the WriterGroupType_Status_State Variable. + + + + + The identifier for the WriterGroupType_WriterGroupId Variable. + + + + + The identifier for the WriterGroupType_PublishingInterval Variable. + + + + + The identifier for the WriterGroupType_KeepAliveTime Variable. + + + + + The identifier for the WriterGroupType_Priority Variable. + + + + + The identifier for the WriterGroupType_LocaleIds Variable. + + + + + The identifier for the WriterGroupType_HeaderLayoutUri Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_DataSetWriterProperties Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Status_State Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalError Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_SubError Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_SentNetworkMessages Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_SentNetworkMessages_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_SentNetworkMessages_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_SentNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_FailedTransmissions Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_FailedTransmissions_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_FailedTransmissions_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_FailedTransmissions_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_EncryptionErrors Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_EncryptionErrors_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_EncryptionErrors_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_EncryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_AddDataSetWriter_InputArguments Variable. + + + + + The identifier for the WriterGroupType_AddDataSetWriter_OutputArguments Variable. + + + + + The identifier for the WriterGroupType_RemoveDataSetWriter_InputArguments Variable. + + + + + The identifier for the ReaderGroupType_Status_State Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_PublisherId Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_WriterGroupId Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_DataSetMetaData Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_MessageReceiveTimeout Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_KeyFrameCount Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_HeaderLayoutUri Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_DataSetReaderProperties Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Status_State Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables_InputArguments Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables_OutputArguments Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_CreateDataSetMirror_InputArguments Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_CreateDataSetMirror_OutputArguments Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalError Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_SubError Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedNetworkMessages Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedNetworkMessages_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedNetworkMessages_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_AddDataSetReader_InputArguments Variable. + + + + + The identifier for the ReaderGroupType_AddDataSetReader_OutputArguments Variable. + + + + + The identifier for the ReaderGroupType_RemoveDataSetReader_InputArguments Variable. + + + + + The identifier for the DataSetWriterType_DataSetWriterId Variable. + + + + + The identifier for the DataSetWriterType_DataSetFieldContentMask Variable. + + + + + The identifier for the DataSetWriterType_KeyFrameCount Variable. + + + + + The identifier for the DataSetWriterType_DataSetWriterProperties Variable. + + + + + The identifier for the DataSetWriterType_Status_State Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalError Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_SubError Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_PublisherId Variable. + + + + + The identifier for the DataSetReaderType_WriterGroupId Variable. + + + + + The identifier for the DataSetReaderType_DataSetWriterId Variable. + + + + + The identifier for the DataSetReaderType_DataSetMetaData Variable. + + + + + The identifier for the DataSetReaderType_DataSetFieldContentMask Variable. + + + + + The identifier for the DataSetReaderType_MessageReceiveTimeout Variable. + + + + + The identifier for the DataSetReaderType_KeyFrameCount Variable. + + + + + The identifier for the DataSetReaderType_HeaderLayoutUri Variable. + + + + + The identifier for the DataSetReaderType_SecurityMode Variable. + + + + + The identifier for the DataSetReaderType_SecurityGroupId Variable. + + + + + The identifier for the DataSetReaderType_SecurityKeyServices Variable. + + + + + The identifier for the DataSetReaderType_DataSetReaderProperties Variable. + + + + + The identifier for the DataSetReaderType_Status_State Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalError Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_SubError Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_CreateTargetVariables_InputArguments Variable. + + + + + The identifier for the DataSetReaderType_CreateTargetVariables_OutputArguments Variable. + + + + + The identifier for the DataSetReaderType_CreateDataSetMirror_InputArguments Variable. + + + + + The identifier for the DataSetReaderType_CreateDataSetMirror_OutputArguments Variable. + + + + + The identifier for the TargetVariablesType_TargetVariables Variable. + + + + + The identifier for the TargetVariablesType_AddTargetVariables_InputArguments Variable. + + + + + The identifier for the TargetVariablesType_AddTargetVariables_OutputArguments Variable. + + + + + The identifier for the TargetVariablesType_RemoveTargetVariables_InputArguments Variable. + + + + + The identifier for the TargetVariablesType_RemoveTargetVariables_OutputArguments Variable. + + + + + The identifier for the PubSubStatusType_State Variable. + + + + + The identifier for the PubSubDiagnosticsType_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalInformation Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalError Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_SubError Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DiagnosticsLevel_EnumStrings Variable. + + + + + The identifier for the PubSubDiagnosticsCounterType_Active Variable. + + + + + The identifier for the PubSubDiagnosticsCounterType_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsCounterType_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsCounterType_TimeFirstChange Variable. + + + + + The identifier for the PubSubDiagnosticsCounterClassification_EnumStrings Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_LiveValues_ResolvedAddress Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_LiveValues_ResolvedAddress_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_SentNetworkMessages Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_SentNetworkMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_SentNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_SentNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_FailedTransmissions Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_FailedTransmissions_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_FailedTransmissions_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_FailedTransmissions_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_EncryptionErrors Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_EncryptionErrors_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_EncryptionErrors_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_EncryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_SecurityTokenID Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_TimeToNextTokenID Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedNetworkMessages Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedNetworkMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MessageSequenceNumber Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_StatusCode Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MajorVersion Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MinorVersion Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_DecryptionErrors Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MessageSequenceNumber Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_StatusCode Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MajorVersion Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MinorVersion Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_SecurityTokenID Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_TimeToNextTokenID Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubStatusEventType_ConnectionId Variable. + + + + + The identifier for the PubSubStatusEventType_GroupId Variable. + + + + + The identifier for the PubSubStatusEventType_State Variable. + + + + + The identifier for the PubSubTransportLimitsExceedEventType_Actual Variable. + + + + + The identifier for the PubSubTransportLimitsExceedEventType_Maximum Variable. + + + + + The identifier for the PubSubCommunicationFailureEventType_Error Variable. + + + + + The identifier for the UadpWriterGroupMessageType_GroupVersion Variable. + + + + + The identifier for the UadpWriterGroupMessageType_DataSetOrdering Variable. + + + + + The identifier for the UadpWriterGroupMessageType_NetworkMessageContentMask Variable. + + + + + The identifier for the UadpWriterGroupMessageType_SamplingOffset Variable. + + + + + The identifier for the UadpWriterGroupMessageType_PublishingOffset Variable. + + + + + The identifier for the UadpDataSetWriterMessageType_DataSetMessageContentMask Variable. + + + + + The identifier for the UadpDataSetWriterMessageType_ConfiguredSize Variable. + + + + + The identifier for the UadpDataSetWriterMessageType_NetworkMessageNumber Variable. + + + + + The identifier for the UadpDataSetWriterMessageType_DataSetOffset Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_GroupVersion Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_NetworkMessageNumber Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_DataSetOffset Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_DataSetClassId Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_NetworkMessageContentMask Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_DataSetMessageContentMask Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_PublishingInterval Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_ProcessingOffset Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_ReceiveOffset Variable. + + + + + The identifier for the JsonWriterGroupMessageType_NetworkMessageContentMask Variable. + + + + + The identifier for the JsonDataSetWriterMessageType_DataSetMessageContentMask Variable. + + + + + The identifier for the JsonDataSetReaderMessageType_NetworkMessageContentMask Variable. + + + + + The identifier for the JsonDataSetReaderMessageType_DataSetMessageContentMask Variable. + + + + + The identifier for the DatagramConnectionTransportType_DiscoveryAddress_NetworkInterface Variable. + + + + + The identifier for the DatagramConnectionTransportType_DiscoveryAddress_NetworkInterface_Selections Variable. + + + + + The identifier for the DatagramWriterGroupTransportType_MessageRepeatCount Variable. + + + + + The identifier for the DatagramWriterGroupTransportType_MessageRepeatDelay Variable. + + + + + The identifier for the BrokerConnectionTransportType_ResourceUri Variable. + + + + + The identifier for the BrokerConnectionTransportType_AuthenticationProfileUri Variable. + + + + + The identifier for the BrokerWriterGroupTransportType_QueueName Variable. + + + + + The identifier for the BrokerWriterGroupTransportType_ResourceUri Variable. + + + + + The identifier for the BrokerWriterGroupTransportType_AuthenticationProfileUri Variable. + + + + + The identifier for the BrokerWriterGroupTransportType_RequestedDeliveryGuarantee Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_QueueName Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_MetaDataQueueName Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_ResourceUri Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_AuthenticationProfileUri Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_RequestedDeliveryGuarantee Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_MetaDataUpdateTime Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_QueueName Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_ResourceUri Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_AuthenticationProfileUri Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_RequestedDeliveryGuarantee Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_MetaDataQueueName Variable. + + + + + The identifier for the NetworkAddressType_NetworkInterface Variable. + + + + + The identifier for the NetworkAddressType_NetworkInterface_Selections Variable. + + + + + The identifier for the NetworkAddressUrlType_NetworkInterface_Selections Variable. + + + + + The identifier for the NetworkAddressUrlType_Url Variable. + + + + + The identifier for the AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias_InputArguments Variable. + + + + + The identifier for the AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments Variable. + + + + + The identifier for the AliasNameCategoryType_FindAlias_InputArguments Variable. + + + + + The identifier for the AliasNameCategoryType_FindAlias_OutputArguments Variable. + + + + + The identifier for the Aliases_SubAliasNameCategories_Placeholder_FindAlias_InputArguments Variable. + + + + + The identifier for the Aliases_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments Variable. + + + + + The identifier for the Aliases_FindAlias_InputArguments Variable. + + + + + The identifier for the Aliases_FindAlias_OutputArguments Variable. + + + + + The identifier for the TagVariables_SubAliasNameCategories_Placeholder_FindAlias_InputArguments Variable. + + + + + The identifier for the TagVariables_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments Variable. + + + + + The identifier for the TagVariables_FindAlias_InputArguments Variable. + + + + + The identifier for the TagVariables_FindAlias_OutputArguments Variable. + + + + + The identifier for the Topics_SubAliasNameCategories_Placeholder_FindAlias_InputArguments Variable. + + + + + The identifier for the Topics_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments Variable. + + + + + The identifier for the Topics_FindAlias_InputArguments Variable. + + + + + The identifier for the Topics_FindAlias_OutputArguments Variable. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteBaseType_EnumDictionaryEntries Variable. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteBaseType_ValueAsDictionaryEntries Variable. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteType_ValueAsDictionaryEntries Variable. + + + + + The identifier for the IdType_EnumStrings Variable. + + + + + The identifier for the NodeClass_EnumValues Variable. + + + + + The identifier for the PermissionType_OptionSetValues Variable. + + + + + The identifier for the AccessLevelType_OptionSetValues Variable. + + + + + The identifier for the AccessLevelExType_OptionSetValues Variable. + + + + + The identifier for the EventNotifierType_OptionSetValues Variable. + + + + + The identifier for the AccessRestrictionType_OptionSetValues Variable. + + + + + The identifier for the StructureType_EnumStrings Variable. + + + + + The identifier for the ApplicationType_EnumStrings Variable. + + + + + The identifier for the MessageSecurityMode_EnumStrings Variable. + + + + + The identifier for the UserTokenType_EnumStrings Variable. + + + + + The identifier for the SecurityTokenRequestType_EnumStrings Variable. + + + + + The identifier for the NodeAttributesMask_EnumValues Variable. + + + + + The identifier for the AttributeWriteMask_OptionSetValues Variable. + + + + + The identifier for the BrowseDirection_EnumStrings Variable. + + + + + The identifier for the BrowseResultMask_EnumValues Variable. + + + + + The identifier for the FilterOperator_EnumStrings Variable. + + + + + The identifier for the TimestampsToReturn_EnumStrings Variable. + + + + + The identifier for the HistoryUpdateType_EnumValues Variable. + + + + + The identifier for the PerformUpdateType_EnumValues Variable. + + + + + The identifier for the MonitoringMode_EnumStrings Variable. + + + + + The identifier for the DataChangeTrigger_EnumStrings Variable. + + + + + The identifier for the DeadbandType_EnumStrings Variable. + + + + + The identifier for the RedundancySupport_EnumStrings Variable. + + + + + The identifier for the ServerState_EnumStrings Variable. + + + + + The identifier for the ModelChangeStructureVerbMask_EnumValues Variable. + + + + + The identifier for the AxisScaleEnumeration_EnumStrings Variable. + + + + + The identifier for the ExceptionDeviationFormat_EnumStrings Variable. + + + + + The identifier for the OpcUa_BinarySchema Variable. + + + + + The identifier for the OpcUa_BinarySchema_NamespaceUri Variable. + + + + + The identifier for the OpcUa_BinarySchema_Deprecated Variable. + + + + + The identifier for the OpcUa_BinarySchema_KeyValuePair Variable. + + + + + The identifier for the OpcUa_BinarySchema_EndpointType Variable. + + + + + The identifier for the OpcUa_BinarySchema_RationalNumber Variable. + + + + + The identifier for the OpcUa_BinarySchema_Vector Variable. + + + + + The identifier for the OpcUa_BinarySchema_ThreeDVector Variable. + + + + + The identifier for the OpcUa_BinarySchema_CartesianCoordinates Variable. + + + + + The identifier for the OpcUa_BinarySchema_ThreeDCartesianCoordinates Variable. + + + + + The identifier for the OpcUa_BinarySchema_Orientation Variable. + + + + + The identifier for the OpcUa_BinarySchema_ThreeDOrientation Variable. + + + + + The identifier for the OpcUa_BinarySchema_Frame Variable. + + + + + The identifier for the OpcUa_BinarySchema_ThreeDFrame Variable. + + + + + The identifier for the OpcUa_BinarySchema_IdentityMappingRuleType Variable. + + + + + The identifier for the OpcUa_BinarySchema_CurrencyUnitType Variable. + + + + + The identifier for the OpcUa_BinarySchema_TrustListDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataTypeSchemaHeader Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataTypeDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_StructureDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_EnumDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_SimpleTypeDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_UABinaryFileDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetMetaDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_FieldMetaData Variable. + + + + + The identifier for the OpcUa_BinarySchema_ConfigurationVersionDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedDataSetDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedDataSetSourceDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedVariableDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedDataItemsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedEventsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetWriterDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetWriterTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PubSubGroupDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_WriterGroupDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_WriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_WriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PubSubConnectionDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_NetworkAddressDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_NetworkAddressUrlDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ReaderGroupDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ReaderGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ReaderGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetReaderDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetReaderTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SubscribedDataSetDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_TargetVariablesDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_FieldTargetDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SubscribedDataSetMirrorDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PubSubConfigurationDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_UadpWriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_UadpDataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_UadpDataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_JsonWriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_JsonDataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_JsonDataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DatagramConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DatagramWriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_BrokerConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_BrokerWriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_BrokerDataSetWriterTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_BrokerDataSetReaderTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_AliasNameDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_RolePermissionType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataTypeDefinition Variable. + + + + + The identifier for the OpcUa_BinarySchema_StructureField Variable. + + + + + The identifier for the OpcUa_BinarySchema_StructureDefinition Variable. + + + + + The identifier for the OpcUa_BinarySchema_EnumDefinition Variable. + + + + + The identifier for the OpcUa_BinarySchema_Argument Variable. + + + + + The identifier for the OpcUa_BinarySchema_EnumValueType Variable. + + + + + The identifier for the OpcUa_BinarySchema_EnumField Variable. + + + + + The identifier for the OpcUa_BinarySchema_OptionSet Variable. + + + + + The identifier for the OpcUa_BinarySchema_Union Variable. + + + + + The identifier for the OpcUa_BinarySchema_TimeZoneDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ApplicationDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_ServerOnNetwork Variable. + + + + + The identifier for the OpcUa_BinarySchema_UserTokenPolicy Variable. + + + + + The identifier for the OpcUa_BinarySchema_EndpointDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_RegisteredServer Variable. + + + + + The identifier for the OpcUa_BinarySchema_DiscoveryConfiguration Variable. + + + + + The identifier for the OpcUa_BinarySchema_MdnsDiscoveryConfiguration Variable. + + + + + The identifier for the OpcUa_BinarySchema_SignedSoftwareCertificate Variable. + + + + + The identifier for the OpcUa_BinarySchema_UserIdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_AnonymousIdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_UserNameIdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_X509IdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_IssuedIdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_AddNodesItem Variable. + + + + + The identifier for the OpcUa_BinarySchema_AddReferencesItem Variable. + + + + + The identifier for the OpcUa_BinarySchema_DeleteNodesItem Variable. + + + + + The identifier for the OpcUa_BinarySchema_DeleteReferencesItem Variable. + + + + + The identifier for the OpcUa_BinarySchema_RelativePathElement Variable. + + + + + The identifier for the OpcUa_BinarySchema_RelativePath Variable. + + + + + The identifier for the OpcUa_BinarySchema_EndpointConfiguration Variable. + + + + + The identifier for the OpcUa_BinarySchema_ContentFilterElement Variable. + + + + + The identifier for the OpcUa_BinarySchema_ContentFilter Variable. + + + + + The identifier for the OpcUa_BinarySchema_FilterOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_ElementOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_LiteralOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_AttributeOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_SimpleAttributeOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_HistoryEvent Variable. + + + + + The identifier for the OpcUa_BinarySchema_MonitoringFilter Variable. + + + + + The identifier for the OpcUa_BinarySchema_EventFilter Variable. + + + + + The identifier for the OpcUa_BinarySchema_AggregateConfiguration Variable. + + + + + The identifier for the OpcUa_BinarySchema_HistoryEventFieldList Variable. + + + + + The identifier for the OpcUa_BinarySchema_BuildInfo Variable. + + + + + The identifier for the OpcUa_BinarySchema_RedundantServerDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_EndpointUrlListDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_NetworkGroupDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SamplingIntervalDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ServerDiagnosticsSummaryDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ServerStatusDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SessionDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SessionSecurityDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ServiceCounterDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_StatusResult Variable. + + + + + The identifier for the OpcUa_BinarySchema_SubscriptionDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ModelChangeStructureDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SemanticChangeStructureDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_Range Variable. + + + + + The identifier for the OpcUa_BinarySchema_EUInformation Variable. + + + + + The identifier for the OpcUa_BinarySchema_ComplexNumberType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DoubleComplexNumberType Variable. + + + + + The identifier for the OpcUa_BinarySchema_AxisInformation Variable. + + + + + The identifier for the OpcUa_BinarySchema_XVType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ProgramDiagnosticDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ProgramDiagnostic2DataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_Annotation Variable. + + + + + The identifier for the OpcUa_XmlSchema Variable. + + + + + The identifier for the OpcUa_XmlSchema_NamespaceUri Variable. + + + + + The identifier for the OpcUa_XmlSchema_Deprecated Variable. + + + + + The identifier for the OpcUa_XmlSchema_KeyValuePair Variable. + + + + + The identifier for the OpcUa_XmlSchema_EndpointType Variable. + + + + + The identifier for the OpcUa_XmlSchema_RationalNumber Variable. + + + + + The identifier for the OpcUa_XmlSchema_Vector Variable. + + + + + The identifier for the OpcUa_XmlSchema_ThreeDVector Variable. + + + + + The identifier for the OpcUa_XmlSchema_CartesianCoordinates Variable. + + + + + The identifier for the OpcUa_XmlSchema_ThreeDCartesianCoordinates Variable. + + + + + The identifier for the OpcUa_XmlSchema_Orientation Variable. + + + + + The identifier for the OpcUa_XmlSchema_ThreeDOrientation Variable. + + + + + The identifier for the OpcUa_XmlSchema_Frame Variable. + + + + + The identifier for the OpcUa_XmlSchema_ThreeDFrame Variable. + + + + + The identifier for the OpcUa_XmlSchema_IdentityMappingRuleType Variable. + + + + + The identifier for the OpcUa_XmlSchema_CurrencyUnitType Variable. + + + + + The identifier for the OpcUa_XmlSchema_TrustListDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataTypeSchemaHeader Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataTypeDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_StructureDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_EnumDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_SimpleTypeDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_UABinaryFileDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetMetaDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_FieldMetaData Variable. + + + + + The identifier for the OpcUa_XmlSchema_ConfigurationVersionDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedDataSetDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedDataSetSourceDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedVariableDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedDataItemsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedEventsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetWriterDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetWriterTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PubSubGroupDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_WriterGroupDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_WriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_WriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PubSubConnectionDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_NetworkAddressDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_NetworkAddressUrlDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ReaderGroupDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ReaderGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ReaderGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetReaderDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetReaderTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SubscribedDataSetDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_TargetVariablesDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_FieldTargetDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SubscribedDataSetMirrorDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PubSubConfigurationDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_UadpWriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_UadpDataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_UadpDataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_JsonWriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_JsonDataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_JsonDataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DatagramConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DatagramWriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_BrokerConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_BrokerWriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_BrokerDataSetWriterTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_BrokerDataSetReaderTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_AliasNameDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_RolePermissionType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataTypeDefinition Variable. + + + + + The identifier for the OpcUa_XmlSchema_StructureField Variable. + + + + + The identifier for the OpcUa_XmlSchema_StructureDefinition Variable. + + + + + The identifier for the OpcUa_XmlSchema_EnumDefinition Variable. + + + + + The identifier for the OpcUa_XmlSchema_Argument Variable. + + + + + The identifier for the OpcUa_XmlSchema_EnumValueType Variable. + + + + + The identifier for the OpcUa_XmlSchema_EnumField Variable. + + + + + The identifier for the OpcUa_XmlSchema_OptionSet Variable. + + + + + The identifier for the OpcUa_XmlSchema_Union Variable. + + + + + The identifier for the OpcUa_XmlSchema_TimeZoneDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ApplicationDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_ServerOnNetwork Variable. + + + + + The identifier for the OpcUa_XmlSchema_UserTokenPolicy Variable. + + + + + The identifier for the OpcUa_XmlSchema_EndpointDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_RegisteredServer Variable. + + + + + The identifier for the OpcUa_XmlSchema_DiscoveryConfiguration Variable. + + + + + The identifier for the OpcUa_XmlSchema_MdnsDiscoveryConfiguration Variable. + + + + + The identifier for the OpcUa_XmlSchema_SignedSoftwareCertificate Variable. + + + + + The identifier for the OpcUa_XmlSchema_UserIdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_AnonymousIdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_UserNameIdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_X509IdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_IssuedIdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_AddNodesItem Variable. + + + + + The identifier for the OpcUa_XmlSchema_AddReferencesItem Variable. + + + + + The identifier for the OpcUa_XmlSchema_DeleteNodesItem Variable. + + + + + The identifier for the OpcUa_XmlSchema_DeleteReferencesItem Variable. + + + + + The identifier for the OpcUa_XmlSchema_RelativePathElement Variable. + + + + + The identifier for the OpcUa_XmlSchema_RelativePath Variable. + + + + + The identifier for the OpcUa_XmlSchema_EndpointConfiguration Variable. + + + + + The identifier for the OpcUa_XmlSchema_ContentFilterElement Variable. + + + + + The identifier for the OpcUa_XmlSchema_ContentFilter Variable. + + + + + The identifier for the OpcUa_XmlSchema_FilterOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_ElementOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_LiteralOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_AttributeOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_SimpleAttributeOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_HistoryEvent Variable. + + + + + The identifier for the OpcUa_XmlSchema_MonitoringFilter Variable. + + + + + The identifier for the OpcUa_XmlSchema_EventFilter Variable. + + + + + The identifier for the OpcUa_XmlSchema_AggregateConfiguration Variable. + + + + + The identifier for the OpcUa_XmlSchema_HistoryEventFieldList Variable. + + + + + The identifier for the OpcUa_XmlSchema_BuildInfo Variable. + + + + + The identifier for the OpcUa_XmlSchema_RedundantServerDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_EndpointUrlListDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_NetworkGroupDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SamplingIntervalDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ServerDiagnosticsSummaryDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ServerStatusDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SessionDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SessionSecurityDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ServiceCounterDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_StatusResult Variable. + + + + + The identifier for the OpcUa_XmlSchema_SubscriptionDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ModelChangeStructureDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SemanticChangeStructureDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_Range Variable. + + + + + The identifier for the OpcUa_XmlSchema_EUInformation Variable. + + + + + The identifier for the OpcUa_XmlSchema_ComplexNumberType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DoubleComplexNumberType Variable. + + + + + The identifier for the OpcUa_XmlSchema_AxisInformation Variable. + + + + + The identifier for the OpcUa_XmlSchema_XVType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ProgramDiagnosticDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ProgramDiagnostic2DataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_Annotation Variable. + + + + + A class that declares constants for all VariableTypes in the Model Design. + + + + + + The identifier for the BaseVariableType VariableType. + + + + + The identifier for the BaseDataVariableType VariableType. + + + + + The identifier for the PropertyType VariableType. + + + + + The identifier for the DataTypeDescriptionType VariableType. + + + + + The identifier for the DataTypeDictionaryType VariableType. + + + + + The identifier for the ServerVendorCapabilityType VariableType. + + + + + The identifier for the ServerStatusType VariableType. + + + + + The identifier for the BuildInfoType VariableType. + + + + + The identifier for the ServerDiagnosticsSummaryType VariableType. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType VariableType. + + + + + The identifier for the SamplingIntervalDiagnosticsType VariableType. + + + + + The identifier for the SubscriptionDiagnosticsArrayType VariableType. + + + + + The identifier for the SubscriptionDiagnosticsType VariableType. + + + + + The identifier for the SessionDiagnosticsArrayType VariableType. + + + + + The identifier for the SessionDiagnosticsVariableType VariableType. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType VariableType. + + + + + The identifier for the SessionSecurityDiagnosticsType VariableType. + + + + + The identifier for the OptionSetType VariableType. + + + + + The identifier for the SelectionListType VariableType. + + + + + The identifier for the AudioVariableType VariableType. + + + + + The identifier for the StateVariableType VariableType. + + + + + The identifier for the TransitionVariableType VariableType. + + + + + The identifier for the FiniteStateVariableType VariableType. + + + + + The identifier for the FiniteTransitionVariableType VariableType. + + + + + The identifier for the GuardVariableType VariableType. + + + + + The identifier for the ExpressionGuardVariableType VariableType. + + + + + The identifier for the ElseGuardVariableType VariableType. + + + + + The identifier for the RationalNumberType VariableType. + + + + + The identifier for the VectorType VariableType. + + + + + The identifier for the ThreeDVectorType VariableType. + + + + + The identifier for the CartesianCoordinatesType VariableType. + + + + + The identifier for the ThreeDCartesianCoordinatesType VariableType. + + + + + The identifier for the OrientationType VariableType. + + + + + The identifier for the ThreeDOrientationType VariableType. + + + + + The identifier for the FrameType VariableType. + + + + + The identifier for the ThreeDFrameType VariableType. + + + + + The identifier for the DataItemType VariableType. + + + + + The identifier for the BaseAnalogType VariableType. + + + + + The identifier for the AnalogItemType VariableType. + + + + + The identifier for the AnalogUnitType VariableType. + + + + + The identifier for the AnalogUnitRangeType VariableType. + + + + + The identifier for the DiscreteItemType VariableType. + + + + + The identifier for the TwoStateDiscreteType VariableType. + + + + + The identifier for the MultiStateDiscreteType VariableType. + + + + + The identifier for the MultiStateValueDiscreteType VariableType. + + + + + The identifier for the ArrayItemType VariableType. + + + + + The identifier for the YArrayItemType VariableType. + + + + + The identifier for the XYArrayItemType VariableType. + + + + + The identifier for the ImageItemType VariableType. + + + + + The identifier for the CubeItemType VariableType. + + + + + The identifier for the NDimensionArrayItemType VariableType. + + + + + The identifier for the TwoStateVariableType VariableType. + + + + + The identifier for the ConditionVariableType VariableType. + + + + + The identifier for the AlarmRateVariableType VariableType. + + + + + The identifier for the ProgramDiagnosticType VariableType. + + + + + The identifier for the ProgramDiagnostic2Type VariableType. + + + + + The identifier for the PubSubDiagnosticsCounterType VariableType. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteBaseType VariableType. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteType VariableType. + + + + + A class that declares constants for all DataTypes in the Model Design. + + + + + + The identifier for the BaseDataType DataType. + + + + + The identifier for the Number DataType. + + + + + The identifier for the Integer DataType. + + + + + The identifier for the UInteger DataType. + + + + + The identifier for the Enumeration DataType. + + + + + The identifier for the Boolean DataType. + + + + + The identifier for the SByte DataType. + + + + + The identifier for the Byte DataType. + + + + + The identifier for the Int16 DataType. + + + + + The identifier for the UInt16 DataType. + + + + + The identifier for the Int32 DataType. + + + + + The identifier for the UInt32 DataType. + + + + + The identifier for the Int64 DataType. + + + + + The identifier for the UInt64 DataType. + + + + + The identifier for the Float DataType. + + + + + The identifier for the Double DataType. + + + + + The identifier for the String DataType. + + + + + The identifier for the DateTime DataType. + + + + + The identifier for the Guid DataType. + + + + + The identifier for the ByteString DataType. + + + + + The identifier for the XmlElement DataType. + + + + + The identifier for the NodeId DataType. + + + + + The identifier for the ExpandedNodeId DataType. + + + + + The identifier for the StatusCode DataType. + + + + + The identifier for the QualifiedName DataType. + + + + + The identifier for the LocalizedText DataType. + + + + + The identifier for the Structure DataType. + + + + + The identifier for the DataValue DataType. + + + + + The identifier for the DiagnosticInfo DataType. + + + + + The identifier for the Image DataType. + + + + + The identifier for the Decimal DataType. + + + + + The identifier for the NamingRuleType DataType. + + + + + The identifier for the ImageBMP DataType. + + + + + The identifier for the ImageGIF DataType. + + + + + The identifier for the ImageJPG DataType. + + + + + The identifier for the ImagePNG DataType. + + + + + The identifier for the AudioDataType DataType. + + + + + The identifier for the BitFieldMaskDataType DataType. + + + + + The identifier for the KeyValuePair DataType. + + + + + The identifier for the EndpointType DataType. + + + + + The identifier for the RationalNumber DataType. + + + + + The identifier for the Vector DataType. + + + + + The identifier for the ThreeDVector DataType. + + + + + The identifier for the CartesianCoordinates DataType. + + + + + The identifier for the ThreeDCartesianCoordinates DataType. + + + + + The identifier for the Orientation DataType. + + + + + The identifier for the ThreeDOrientation DataType. + + + + + The identifier for the Frame DataType. + + + + + The identifier for the ThreeDFrame DataType. + + + + + The identifier for the OpenFileMode DataType. + + + + + The identifier for the IdentityCriteriaType DataType. + + + + + The identifier for the IdentityMappingRuleType DataType. + + + + + The identifier for the CurrencyUnitType DataType. + + + + + The identifier for the TrustListMasks DataType. + + + + + The identifier for the TrustListDataType DataType. + + + + + The identifier for the DecimalDataType DataType. + + + + + The identifier for the DataTypeSchemaHeader DataType. + + + + + The identifier for the DataTypeDescription DataType. + + + + + The identifier for the StructureDescription DataType. + + + + + The identifier for the EnumDescription DataType. + + + + + The identifier for the SimpleTypeDescription DataType. + + + + + The identifier for the UABinaryFileDataType DataType. + + + + + The identifier for the PubSubState DataType. + + + + + The identifier for the DataSetMetaDataType DataType. + + + + + The identifier for the FieldMetaData DataType. + + + + + The identifier for the DataSetFieldFlags DataType. + + + + + The identifier for the ConfigurationVersionDataType DataType. + + + + + The identifier for the PublishedDataSetDataType DataType. + + + + + The identifier for the PublishedDataSetSourceDataType DataType. + + + + + The identifier for the PublishedVariableDataType DataType. + + + + + The identifier for the PublishedDataItemsDataType DataType. + + + + + The identifier for the PublishedEventsDataType DataType. + + + + + The identifier for the DataSetFieldContentMask DataType. + + + + + The identifier for the DataSetWriterDataType DataType. + + + + + The identifier for the DataSetWriterTransportDataType DataType. + + + + + The identifier for the DataSetWriterMessageDataType DataType. + + + + + The identifier for the PubSubGroupDataType DataType. + + + + + The identifier for the WriterGroupDataType DataType. + + + + + The identifier for the WriterGroupTransportDataType DataType. + + + + + The identifier for the WriterGroupMessageDataType DataType. + + + + + The identifier for the PubSubConnectionDataType DataType. + + + + + The identifier for the ConnectionTransportDataType DataType. + + + + + The identifier for the NetworkAddressDataType DataType. + + + + + The identifier for the NetworkAddressUrlDataType DataType. + + + + + The identifier for the ReaderGroupDataType DataType. + + + + + The identifier for the ReaderGroupTransportDataType DataType. + + + + + The identifier for the ReaderGroupMessageDataType DataType. + + + + + The identifier for the DataSetReaderDataType DataType. + + + + + The identifier for the DataSetReaderTransportDataType DataType. + + + + + The identifier for the DataSetReaderMessageDataType DataType. + + + + + The identifier for the SubscribedDataSetDataType DataType. + + + + + The identifier for the TargetVariablesDataType DataType. + + + + + The identifier for the FieldTargetDataType DataType. + + + + + The identifier for the OverrideValueHandling DataType. + + + + + The identifier for the SubscribedDataSetMirrorDataType DataType. + + + + + The identifier for the PubSubConfigurationDataType DataType. + + + + + The identifier for the DataSetOrderingType DataType. + + + + + The identifier for the UadpNetworkMessageContentMask DataType. + + + + + The identifier for the UadpWriterGroupMessageDataType DataType. + + + + + The identifier for the UadpDataSetMessageContentMask DataType. + + + + + The identifier for the UadpDataSetWriterMessageDataType DataType. + + + + + The identifier for the UadpDataSetReaderMessageDataType DataType. + + + + + The identifier for the JsonNetworkMessageContentMask DataType. + + + + + The identifier for the JsonWriterGroupMessageDataType DataType. + + + + + The identifier for the JsonDataSetMessageContentMask DataType. + + + + + The identifier for the JsonDataSetWriterMessageDataType DataType. + + + + + The identifier for the JsonDataSetReaderMessageDataType DataType. + + + + + The identifier for the DatagramConnectionTransportDataType DataType. + + + + + The identifier for the DatagramWriterGroupTransportDataType DataType. + + + + + The identifier for the BrokerConnectionTransportDataType DataType. + + + + + The identifier for the BrokerTransportQualityOfService DataType. + + + + + The identifier for the BrokerWriterGroupTransportDataType DataType. + + + + + The identifier for the BrokerDataSetWriterTransportDataType DataType. + + + + + The identifier for the BrokerDataSetReaderTransportDataType DataType. + + + + + The identifier for the DiagnosticsLevel DataType. + + + + + The identifier for the PubSubDiagnosticsCounterClassification DataType. + + + + + The identifier for the AliasNameDataType DataType. + + + + + The identifier for the IdType DataType. + + + + + The identifier for the NodeClass DataType. + + + + + The identifier for the PermissionType DataType. + + + + + The identifier for the AccessLevelType DataType. + + + + + The identifier for the AccessLevelExType DataType. + + + + + The identifier for the EventNotifierType DataType. + + + + + The identifier for the AccessRestrictionType DataType. + + + + + The identifier for the RolePermissionType DataType. + + + + + The identifier for the DataTypeDefinition DataType. + + + + + The identifier for the StructureType DataType. + + + + + The identifier for the StructureField DataType. + + + + + The identifier for the StructureDefinition DataType. + + + + + The identifier for the EnumDefinition DataType. + + + + + The identifier for the Node DataType. + + + + + The identifier for the InstanceNode DataType. + + + + + The identifier for the TypeNode DataType. + + + + + The identifier for the ObjectNode DataType. + + + + + The identifier for the ObjectTypeNode DataType. + + + + + The identifier for the VariableNode DataType. + + + + + The identifier for the VariableTypeNode DataType. + + + + + The identifier for the ReferenceTypeNode DataType. + + + + + The identifier for the MethodNode DataType. + + + + + The identifier for the ViewNode DataType. + + + + + The identifier for the DataTypeNode DataType. + + + + + The identifier for the ReferenceNode DataType. + + + + + The identifier for the Argument DataType. + + + + + The identifier for the EnumValueType DataType. + + + + + The identifier for the EnumField DataType. + + + + + The identifier for the OptionSet DataType. + + + + + The identifier for the Union DataType. + + + + + The identifier for the NormalizedString DataType. + + + + + The identifier for the DecimalString DataType. + + + + + The identifier for the DurationString DataType. + + + + + The identifier for the TimeString DataType. + + + + + The identifier for the DateString DataType. + + + + + The identifier for the Duration DataType. + + + + + The identifier for the UtcTime DataType. + + + + + The identifier for the LocaleId DataType. + + + + + The identifier for the TimeZoneDataType DataType. + + + + + The identifier for the Index DataType. + + + + + The identifier for the IntegerId DataType. + + + + + The identifier for the ApplicationType DataType. + + + + + The identifier for the ApplicationDescription DataType. + + + + + The identifier for the RequestHeader DataType. + + + + + The identifier for the ResponseHeader DataType. + + + + + The identifier for the VersionTime DataType. + + + + + The identifier for the ServiceFault DataType. + + + + + The identifier for the SessionlessInvokeRequestType DataType. + + + + + The identifier for the SessionlessInvokeResponseType DataType. + + + + + The identifier for the FindServersRequest DataType. + + + + + The identifier for the FindServersResponse DataType. + + + + + The identifier for the ServerOnNetwork DataType. + + + + + The identifier for the FindServersOnNetworkRequest DataType. + + + + + The identifier for the FindServersOnNetworkResponse DataType. + + + + + The identifier for the ApplicationInstanceCertificate DataType. + + + + + The identifier for the MessageSecurityMode DataType. + + + + + The identifier for the UserTokenType DataType. + + + + + The identifier for the UserTokenPolicy DataType. + + + + + The identifier for the EndpointDescription DataType. + + + + + The identifier for the GetEndpointsRequest DataType. + + + + + The identifier for the GetEndpointsResponse DataType. + + + + + The identifier for the RegisteredServer DataType. + + + + + The identifier for the RegisterServerRequest DataType. + + + + + The identifier for the RegisterServerResponse DataType. + + + + + The identifier for the DiscoveryConfiguration DataType. + + + + + The identifier for the MdnsDiscoveryConfiguration DataType. + + + + + The identifier for the RegisterServer2Request DataType. + + + + + The identifier for the RegisterServer2Response DataType. + + + + + The identifier for the SecurityTokenRequestType DataType. + + + + + The identifier for the ChannelSecurityToken DataType. + + + + + The identifier for the OpenSecureChannelRequest DataType. + + + + + The identifier for the OpenSecureChannelResponse DataType. + + + + + The identifier for the CloseSecureChannelRequest DataType. + + + + + The identifier for the CloseSecureChannelResponse DataType. + + + + + The identifier for the SignedSoftwareCertificate DataType. + + + + + The identifier for the SessionAuthenticationToken DataType. + + + + + The identifier for the SignatureData DataType. + + + + + The identifier for the CreateSessionRequest DataType. + + + + + The identifier for the CreateSessionResponse DataType. + + + + + The identifier for the UserIdentityToken DataType. + + + + + The identifier for the AnonymousIdentityToken DataType. + + + + + The identifier for the UserNameIdentityToken DataType. + + + + + The identifier for the X509IdentityToken DataType. + + + + + The identifier for the IssuedIdentityToken DataType. + + + + + The identifier for the RsaEncryptedSecret DataType. + + + + + The identifier for the ActivateSessionRequest DataType. + + + + + The identifier for the ActivateSessionResponse DataType. + + + + + The identifier for the CloseSessionRequest DataType. + + + + + The identifier for the CloseSessionResponse DataType. + + + + + The identifier for the CancelRequest DataType. + + + + + The identifier for the CancelResponse DataType. + + + + + The identifier for the NodeAttributesMask DataType. + + + + + The identifier for the NodeAttributes DataType. + + + + + The identifier for the ObjectAttributes DataType. + + + + + The identifier for the VariableAttributes DataType. + + + + + The identifier for the MethodAttributes DataType. + + + + + The identifier for the ObjectTypeAttributes DataType. + + + + + The identifier for the VariableTypeAttributes DataType. + + + + + The identifier for the ReferenceTypeAttributes DataType. + + + + + The identifier for the DataTypeAttributes DataType. + + + + + The identifier for the ViewAttributes DataType. + + + + + The identifier for the GenericAttributeValue DataType. + + + + + The identifier for the GenericAttributes DataType. + + + + + The identifier for the AddNodesItem DataType. + + + + + The identifier for the AddNodesResult DataType. + + + + + The identifier for the AddNodesRequest DataType. + + + + + The identifier for the AddNodesResponse DataType. + + + + + The identifier for the AddReferencesItem DataType. + + + + + The identifier for the AddReferencesRequest DataType. + + + + + The identifier for the AddReferencesResponse DataType. + + + + + The identifier for the DeleteNodesItem DataType. + + + + + The identifier for the DeleteNodesRequest DataType. + + + + + The identifier for the DeleteNodesResponse DataType. + + + + + The identifier for the DeleteReferencesItem DataType. + + + + + The identifier for the DeleteReferencesRequest DataType. + + + + + The identifier for the DeleteReferencesResponse DataType. + + + + + The identifier for the AttributeWriteMask DataType. + + + + + The identifier for the BrowseDirection DataType. + + + + + The identifier for the ViewDescription DataType. + + + + + The identifier for the BrowseDescription DataType. + + + + + The identifier for the BrowseResultMask DataType. + + + + + The identifier for the ReferenceDescription DataType. + + + + + The identifier for the ContinuationPoint DataType. + + + + + The identifier for the BrowseResult DataType. + + + + + The identifier for the BrowseRequest DataType. + + + + + The identifier for the BrowseResponse DataType. + + + + + The identifier for the BrowseNextRequest DataType. + + + + + The identifier for the BrowseNextResponse DataType. + + + + + The identifier for the RelativePathElement DataType. + + + + + The identifier for the RelativePath DataType. + + + + + The identifier for the BrowsePath DataType. + + + + + The identifier for the BrowsePathTarget DataType. + + + + + The identifier for the BrowsePathResult DataType. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsRequest DataType. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsResponse DataType. + + + + + The identifier for the RegisterNodesRequest DataType. + + + + + The identifier for the RegisterNodesResponse DataType. + + + + + The identifier for the UnregisterNodesRequest DataType. + + + + + The identifier for the UnregisterNodesResponse DataType. + + + + + The identifier for the Counter DataType. + + + + + The identifier for the NumericRange DataType. + + + + + The identifier for the Time DataType. + + + + + The identifier for the Date DataType. + + + + + The identifier for the EndpointConfiguration DataType. + + + + + The identifier for the QueryDataDescription DataType. + + + + + The identifier for the NodeTypeDescription DataType. + + + + + The identifier for the FilterOperator DataType. + + + + + The identifier for the QueryDataSet DataType. + + + + + The identifier for the NodeReference DataType. + + + + + The identifier for the ContentFilterElement DataType. + + + + + The identifier for the ContentFilter DataType. + + + + + The identifier for the FilterOperand DataType. + + + + + The identifier for the ElementOperand DataType. + + + + + The identifier for the LiteralOperand DataType. + + + + + The identifier for the AttributeOperand DataType. + + + + + The identifier for the SimpleAttributeOperand DataType. + + + + + The identifier for the ContentFilterElementResult DataType. + + + + + The identifier for the ContentFilterResult DataType. + + + + + The identifier for the ParsingResult DataType. + + + + + The identifier for the QueryFirstRequest DataType. + + + + + The identifier for the QueryFirstResponse DataType. + + + + + The identifier for the QueryNextRequest DataType. + + + + + The identifier for the QueryNextResponse DataType. + + + + + The identifier for the TimestampsToReturn DataType. + + + + + The identifier for the ReadValueId DataType. + + + + + The identifier for the ReadRequest DataType. + + + + + The identifier for the ReadResponse DataType. + + + + + The identifier for the HistoryReadValueId DataType. + + + + + The identifier for the HistoryReadResult DataType. + + + + + The identifier for the HistoryReadDetails DataType. + + + + + The identifier for the ReadEventDetails DataType. + + + + + The identifier for the ReadRawModifiedDetails DataType. + + + + + The identifier for the ReadProcessedDetails DataType. + + + + + The identifier for the ReadAtTimeDetails DataType. + + + + + The identifier for the ReadAnnotationDataDetails DataType. + + + + + The identifier for the HistoryData DataType. + + + + + The identifier for the ModificationInfo DataType. + + + + + The identifier for the HistoryModifiedData DataType. + + + + + The identifier for the HistoryEvent DataType. + + + + + The identifier for the HistoryReadRequest DataType. + + + + + The identifier for the HistoryReadResponse DataType. + + + + + The identifier for the WriteValue DataType. + + + + + The identifier for the WriteRequest DataType. + + + + + The identifier for the WriteResponse DataType. + + + + + The identifier for the HistoryUpdateDetails DataType. + + + + + The identifier for the HistoryUpdateType DataType. + + + + + The identifier for the PerformUpdateType DataType. + + + + + The identifier for the UpdateDataDetails DataType. + + + + + The identifier for the UpdateStructureDataDetails DataType. + + + + + The identifier for the UpdateEventDetails DataType. + + + + + The identifier for the DeleteRawModifiedDetails DataType. + + + + + The identifier for the DeleteAtTimeDetails DataType. + + + + + The identifier for the DeleteEventDetails DataType. + + + + + The identifier for the HistoryUpdateResult DataType. + + + + + The identifier for the HistoryUpdateRequest DataType. + + + + + The identifier for the HistoryUpdateResponse DataType. + + + + + The identifier for the CallMethodRequest DataType. + + + + + The identifier for the CallMethodResult DataType. + + + + + The identifier for the CallRequest DataType. + + + + + The identifier for the CallResponse DataType. + + + + + The identifier for the MonitoringMode DataType. + + + + + The identifier for the DataChangeTrigger DataType. + + + + + The identifier for the DeadbandType DataType. + + + + + The identifier for the MonitoringFilter DataType. + + + + + The identifier for the DataChangeFilter DataType. + + + + + The identifier for the EventFilter DataType. + + + + + The identifier for the AggregateConfiguration DataType. + + + + + The identifier for the AggregateFilter DataType. + + + + + The identifier for the MonitoringFilterResult DataType. + + + + + The identifier for the EventFilterResult DataType. + + + + + The identifier for the AggregateFilterResult DataType. + + + + + The identifier for the MonitoringParameters DataType. + + + + + The identifier for the MonitoredItemCreateRequest DataType. + + + + + The identifier for the MonitoredItemCreateResult DataType. + + + + + The identifier for the CreateMonitoredItemsRequest DataType. + + + + + The identifier for the CreateMonitoredItemsResponse DataType. + + + + + The identifier for the MonitoredItemModifyRequest DataType. + + + + + The identifier for the MonitoredItemModifyResult DataType. + + + + + The identifier for the ModifyMonitoredItemsRequest DataType. + + + + + The identifier for the ModifyMonitoredItemsResponse DataType. + + + + + The identifier for the SetMonitoringModeRequest DataType. + + + + + The identifier for the SetMonitoringModeResponse DataType. + + + + + The identifier for the SetTriggeringRequest DataType. + + + + + The identifier for the SetTriggeringResponse DataType. + + + + + The identifier for the DeleteMonitoredItemsRequest DataType. + + + + + The identifier for the DeleteMonitoredItemsResponse DataType. + + + + + The identifier for the CreateSubscriptionRequest DataType. + + + + + The identifier for the CreateSubscriptionResponse DataType. + + + + + The identifier for the ModifySubscriptionRequest DataType. + + + + + The identifier for the ModifySubscriptionResponse DataType. + + + + + The identifier for the SetPublishingModeRequest DataType. + + + + + The identifier for the SetPublishingModeResponse DataType. + + + + + The identifier for the NotificationMessage DataType. + + + + + The identifier for the NotificationData DataType. + + + + + The identifier for the DataChangeNotification DataType. + + + + + The identifier for the MonitoredItemNotification DataType. + + + + + The identifier for the EventNotificationList DataType. + + + + + The identifier for the EventFieldList DataType. + + + + + The identifier for the HistoryEventFieldList DataType. + + + + + The identifier for the StatusChangeNotification DataType. + + + + + The identifier for the SubscriptionAcknowledgement DataType. + + + + + The identifier for the PublishRequest DataType. + + + + + The identifier for the PublishResponse DataType. + + + + + The identifier for the RepublishRequest DataType. + + + + + The identifier for the RepublishResponse DataType. + + + + + The identifier for the TransferResult DataType. + + + + + The identifier for the TransferSubscriptionsRequest DataType. + + + + + The identifier for the TransferSubscriptionsResponse DataType. + + + + + The identifier for the DeleteSubscriptionsRequest DataType. + + + + + The identifier for the DeleteSubscriptionsResponse DataType. + + + + + The identifier for the BuildInfo DataType. + + + + + The identifier for the RedundancySupport DataType. + + + + + The identifier for the ServerState DataType. + + + + + The identifier for the RedundantServerDataType DataType. + + + + + The identifier for the EndpointUrlListDataType DataType. + + + + + The identifier for the NetworkGroupDataType DataType. + + + + + The identifier for the SamplingIntervalDiagnosticsDataType DataType. + + + + + The identifier for the ServerDiagnosticsSummaryDataType DataType. + + + + + The identifier for the ServerStatusDataType DataType. + + + + + The identifier for the SessionDiagnosticsDataType DataType. + + + + + The identifier for the SessionSecurityDiagnosticsDataType DataType. + + + + + The identifier for the ServiceCounterDataType DataType. + + + + + The identifier for the StatusResult DataType. + + + + + The identifier for the SubscriptionDiagnosticsDataType DataType. + + + + + The identifier for the ModelChangeStructureVerbMask DataType. + + + + + The identifier for the ModelChangeStructureDataType DataType. + + + + + The identifier for the SemanticChangeStructureDataType DataType. + + + + + The identifier for the Range DataType. + + + + + The identifier for the EUInformation DataType. + + + + + The identifier for the AxisScaleEnumeration DataType. + + + + + The identifier for the ComplexNumberType DataType. + + + + + The identifier for the DoubleComplexNumberType DataType. + + + + + The identifier for the AxisInformation DataType. + + + + + The identifier for the XVType DataType. + + + + + The identifier for the ProgramDiagnosticDataType DataType. + + + + + The identifier for the ProgramDiagnostic2DataType DataType. + + + + + The identifier for the Annotation DataType. + + + + + The identifier for the ExceptionDeviationFormat DataType. + + + + + A class that declares constants for all Methods in the Model Design. + + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Open Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Close Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Read Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Write Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_GetPosition Method. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_SetPosition Method. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_AddRole Method. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_RemoveRole Method. + + + + + The identifier for the ServerType_GetMonitoredItems Method. + + + + + The identifier for the ServerType_ResendData Method. + + + + + The identifier for the ServerType_SetSubscriptionDurable Method. + + + + + The identifier for the ServerType_RequestServerStateChange Method. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_AddRole Method. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_RemoveRole Method. + + + + + The identifier for the FileType_Open Method. + + + + + The identifier for the FileType_Close Method. + + + + + The identifier for the FileType_Read Method. + + + + + The identifier for the FileType_Write Method. + + + + + The identifier for the FileType_GetPosition Method. + + + + + The identifier for the FileType_SetPosition Method. + + + + + The identifier for the AddressSpaceFileType_ExportNamespace Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Open Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Close Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Read Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Write Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_GetPosition Method. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_SetPosition Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Open Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Close Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Read Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Write Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition Method. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_SetPosition Method. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_AddRole Method. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_RemoveRole Method. + + + + + The identifier for the Server_GetMonitoredItems Method. + + + + + The identifier for the Server_ResendData Method. + + + + + The identifier for the Server_SetSubscriptionDurable Method. + + + + + The identifier for the Server_RequestServerStateChange Method. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateDirectory Method. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateFile Method. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_DeleteFileSystemObject Method. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_MoveOrCopy Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Open Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Close Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Read Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Write Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_GetPosition Method. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_SetPosition Method. + + + + + The identifier for the FileDirectoryType_CreateDirectory Method. + + + + + The identifier for the FileDirectoryType_CreateFile Method. + + + + + The identifier for the FileDirectoryType_DeleteFileSystemObject Method. + + + + + The identifier for the FileDirectoryType_MoveOrCopy Method. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateDirectory Method. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateFile Method. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_DeleteFileSystemObject Method. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_MoveOrCopy Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_Open Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_Close Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_Read Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_Write Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_GetPosition Method. + + + + + The identifier for the FileSystem_FileName_Placeholder_SetPosition Method. + + + + + The identifier for the FileSystem_CreateDirectory Method. + + + + + The identifier for the FileSystem_CreateFile Method. + + + + + The identifier for the FileSystem_DeleteFileSystemObject Method. + + + + + The identifier for the FileSystem_MoveOrCopy Method. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForRead Method. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForWrite Method. + + + + + The identifier for the TemporaryFileTransferType_CloseAndCommit Method. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder_Reset Method. + + + + + The identifier for the FileTransferStateMachineType_Reset Method. + + + + + The identifier for the RoleSetType_AddRole Method. + + + + + The identifier for the RoleSetType_RemoveRole Method. + + + + + The identifier for the RoleType_AddIdentity Method. + + + + + The identifier for the RoleType_RemoveIdentity Method. + + + + + The identifier for the RoleType_AddApplication Method. + + + + + The identifier for the RoleType_RemoveApplication Method. + + + + + The identifier for the RoleType_AddEndpoint Method. + + + + + The identifier for the RoleType_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Anonymous_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Anonymous_AddApplication Method. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Anonymous_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddIdentity Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddApplication Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Observer_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Observer_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Observer_AddApplication Method. + + + + + The identifier for the WellKnownRole_Observer_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Observer_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Observer_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Operator_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Operator_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Operator_AddApplication Method. + + + + + The identifier for the WellKnownRole_Operator_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Operator_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Operator_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Engineer_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Engineer_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Engineer_AddApplication Method. + + + + + The identifier for the WellKnownRole_Engineer_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Engineer_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Engineer_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_Supervisor_AddIdentity Method. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_Supervisor_AddApplication Method. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_Supervisor_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddIdentity Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddApplication Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveEndpoint Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddIdentity Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveIdentity Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddApplication Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveApplication Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddEndpoint Method. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveEndpoint Method. + + + + + The identifier for the ConditionType_Disable Method. + + + + + The identifier for the ConditionType_Enable Method. + + + + + The identifier for the ConditionType_AddComment Method. + + + + + The identifier for the ConditionType_ConditionRefresh Method. + + + + + The identifier for the ConditionType_ConditionRefresh2 Method. + + + + + The identifier for the DialogConditionType_Respond Method. + + + + + The identifier for the AcknowledgeableConditionType_Acknowledge Method. + + + + + The identifier for the AcknowledgeableConditionType_Confirm Method. + + + + + The identifier for the AlarmConditionType_ShelvingState_TimedShelve Method. + + + + + The identifier for the AlarmConditionType_ShelvingState_Unshelve Method. + + + + + The identifier for the AlarmConditionType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the AlarmConditionType_Silence Method. + + + + + The identifier for the AlarmConditionType_Suppress Method. + + + + + The identifier for the AlarmConditionType_Unsuppress Method. + + + + + The identifier for the AlarmConditionType_RemoveFromService Method. + + + + + The identifier for the AlarmConditionType_PlaceInService Method. + + + + + The identifier for the AlarmConditionType_Reset Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Disable Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Enable Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_AddComment Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Acknowledge Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_TimedShelve Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_Unshelve Method. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ShelvedStateMachineType_TimedShelve Method. + + + + + The identifier for the ShelvedStateMachineType_Unshelve Method. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelve Method. + + + + + The identifier for the LimitAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the LimitAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the LimitAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the TripAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the TripAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the TripAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the AlarmMetricsType_Reset Method. + + + + + The identifier for the ProgramStateMachineType_Start Method. + + + + + The identifier for the ProgramStateMachineType_Suspend Method. + + + + + The identifier for the ProgramStateMachineType_Resume Method. + + + + + The identifier for the ProgramStateMachineType_Halt Method. + + + + + The identifier for the ProgramStateMachineType_Reset Method. + + + + + The identifier for the TrustListType_OpenWithMasks Method. + + + + + The identifier for the TrustListType_CloseAndUpdate Method. + + + + + The identifier for the TrustListType_AddCertificate Method. + + + + + The identifier for the TrustListType_RemoveCertificate Method. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_TimedShelve Method. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_Unshelve Method. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupType_TrustList_Open Method. + + + + + The identifier for the CertificateGroupType_TrustList_Close Method. + + + + + The identifier for the CertificateGroupType_TrustList_Read Method. + + + + + The identifier for the CertificateGroupType_TrustList_Write Method. + + + + + The identifier for the CertificateGroupType_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupType_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupType_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Open Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Close Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Read Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Write Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_SetPosition Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfigurationType_UpdateCertificate Method. + + + + + The identifier for the ServerConfigurationType_ApplyChanges Method. + + + + + The identifier for the ServerConfigurationType_CreateSigningRequest Method. + + + + + The identifier for the ServerConfigurationType_GetRejectedList Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the ServerConfiguration_UpdateCertificate Method. + + + + + The identifier for the ServerConfiguration_ApplyChanges Method. + + + + + The identifier for the ServerConfiguration_CreateSigningRequest Method. + + + + + The identifier for the ServerConfiguration_GetRejectedList Method. + + + + + The identifier for the KeyCredentialConfigurationFolderType_CreateCredential Method. + + + + + The identifier for the KeyCredentialConfigurationType_UpdateCredential Method. + + + + + The identifier for the KeyCredentialConfigurationType_DeleteCredential Method. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityKeys Method. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityGroup Method. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_AddSecurityGroup Method. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_RemoveSecurityGroup Method. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup Method. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_RemoveSecurityGroup Method. + + + + + The identifier for the SecurityGroupFolderType_AddSecurityGroup Method. + + + + + The identifier for the SecurityGroupFolderType_RemoveSecurityGroup Method. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_AddSecurityGroup Method. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_RemoveSecurityGroup Method. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishSubscribeType_SetSecurityKeys Method. + + + + + The identifier for the PublishSubscribeType_AddConnection Method. + + + + + The identifier for the PublishSubscribeType_RemoveConnection Method. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Reset Method. + + + + + The identifier for the PublishSubscribe_GetSecurityKeys Method. + + + + + The identifier for the PublishSubscribe_GetSecurityGroup Method. + + + + + The identifier for the PublishSubscribe_SecurityGroups_AddSecurityGroup Method. + + + + + The identifier for the PublishSubscribe_SecurityGroups_RemoveSecurityGroup Method. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishSubscribe_AddConnection Method. + + + + + The identifier for the PublishSubscribe_RemoveConnection Method. + + + + + The identifier for the PublishSubscribe_Diagnostics_Reset Method. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_AddExtensionField Method. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_RemoveExtensionField Method. + + + + + The identifier for the ExtensionFieldsType_AddExtensionField Method. + + + + + The identifier for the ExtensionFieldsType_RemoveExtensionField Method. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_AddExtensionField Method. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_RemoveExtensionField Method. + + + + + The identifier for the PublishedDataItemsType_AddVariables Method. + + + + + The identifier for the PublishedDataItemsType_RemoveVariables Method. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PublishedEventsType_ExtensionFields_AddExtensionField Method. + + + + + The identifier for the PublishedEventsType_ExtensionFields_RemoveExtensionField Method. + + + + + The identifier for the PublishedEventsType_ModifyFieldSelection Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItems Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEvents Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_RemovePublishedDataSet Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddDataSetFolder Method. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_RemoveDataSetFolder Method. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField Method. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_RemoveExtensionField Method. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItems Method. + + + + + The identifier for the DataSetFolderType_AddPublishedEvents Method. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItemsTemplate Method. + + + + + The identifier for the DataSetFolderType_AddPublishedEventsTemplate Method. + + + + + The identifier for the DataSetFolderType_RemovePublishedDataSet Method. + + + + + The identifier for the DataSetFolderType_AddDataSetFolder Method. + + + + + The identifier for the DataSetFolderType_RemoveDataSetFolder Method. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Reset Method. + + + + + The identifier for the PubSubConnectionType_AddWriterGroup Method. + + + + + The identifier for the PubSubConnectionType_AddReaderGroup Method. + + + + + The identifier for the PubSubConnectionType_RemoveGroup Method. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the WriterGroupType_Diagnostics_Reset Method. + + + + + The identifier for the WriterGroupType_AddDataSetWriter Method. + + + + + The identifier for the WriterGroupType_RemoveDataSetWriter Method. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Reset Method. + + + + + The identifier for the ReaderGroupType_Diagnostics_Reset Method. + + + + + The identifier for the ReaderGroupType_AddDataSetReader Method. + + + + + The identifier for the ReaderGroupType_RemoveDataSetReader Method. + + + + + The identifier for the DataSetWriterType_Diagnostics_Reset Method. + + + + + The identifier for the DataSetReaderType_Diagnostics_Reset Method. + + + + + The identifier for the DataSetReaderType_CreateTargetVariables Method. + + + + + The identifier for the DataSetReaderType_CreateDataSetMirror Method. + + + + + The identifier for the TargetVariablesType_AddTargetVariables Method. + + + + + The identifier for the TargetVariablesType_RemoveTargetVariables Method. + + + + + The identifier for the PubSubStatusType_Enable Method. + + + + + The identifier for the PubSubStatusType_Disable Method. + + + + + The identifier for the PubSubDiagnosticsType_Reset Method. + + + + + The identifier for the AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias Method. + + + + + The identifier for the AliasNameCategoryType_FindAlias Method. + + + + + The identifier for the Aliases_SubAliasNameCategories_Placeholder_FindAlias Method. + + + + + The identifier for the Aliases_FindAlias Method. + + + + + The identifier for the TagVariables_SubAliasNameCategories_Placeholder_FindAlias Method. + + + + + The identifier for the TagVariables_FindAlias Method. + + + + + The identifier for the Topics_SubAliasNameCategories_Placeholder_FindAlias Method. + + + + + The identifier for the Topics_FindAlias Method. + + + + + A class that declares constants for all Objects in the Model Design. + + + + + + The identifier for the DefaultBinary Object. + + + + + The identifier for the DefaultXml Object. + + + + + The identifier for the ModellingRule_Mandatory Object. + + + + + The identifier for the ModellingRule_Optional Object. + + + + + The identifier for the ModellingRule_ExposesItsArray Object. + + + + + The identifier for the ModellingRule_OptionalPlaceholder Object. + + + + + The identifier for the ModellingRule_MandatoryPlaceholder Object. + + + + + The identifier for the RootFolder Object. + + + + + The identifier for the ObjectsFolder Object. + + + + + The identifier for the TypesFolder Object. + + + + + The identifier for the ViewsFolder Object. + + + + + The identifier for the ObjectTypesFolder Object. + + + + + The identifier for the VariableTypesFolder Object. + + + + + The identifier for the DataTypesFolder Object. + + + + + The identifier for the ReferenceTypesFolder Object. + + + + + The identifier for the XmlSchema_TypeSystem Object. + + + + + The identifier for the OPCBinarySchema_TypeSystem Object. + + + + + The identifier for the OPCUANamespaceMetadata Object. + + + + + The identifier for the ServerType_ServerCapabilities Object. + + + + + The identifier for the ServerType_ServerCapabilities_ModellingRules Object. + + + + + The identifier for the ServerType_ServerCapabilities_AggregateFunctions Object. + + + + + The identifier for the ServerType_ServerDiagnostics Object. + + + + + The identifier for the ServerType_ServerDiagnostics_SessionsDiagnosticsSummary Object. + + + + + The identifier for the ServerType_VendorServerInfo Object. + + + + + The identifier for the ServerType_ServerRedundancy Object. + + + + + The identifier for the ServerType_Namespaces Object. + + + + + The identifier for the ServerCapabilitiesType_OperationLimits Object. + + + + + The identifier for the ServerCapabilitiesType_ModellingRules Object. + + + + + The identifier for the ServerCapabilitiesType_AggregateFunctions Object. + + + + + The identifier for the ServerCapabilitiesType_RoleSet Object. + + + + + The identifier for the ServerDiagnosticsType_SessionsDiagnosticsSummary Object. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder Object. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile Object. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder Object. + + + + + The identifier for the EventTypesFolder Object. + + + + + The identifier for the Server Object. + + + + + The identifier for the Server_ServerCapabilities Object. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits Object. + + + + + The identifier for the Server_ServerCapabilities_ModellingRules Object. + + + + + The identifier for the Server_ServerCapabilities_AggregateFunctions Object. + + + + + The identifier for the Server_ServerCapabilities_RoleSet Object. + + + + + The identifier for the Server_ServerDiagnostics Object. + + + + + The identifier for the Server_ServerDiagnostics_SessionsDiagnosticsSummary Object. + + + + + The identifier for the Server_VendorServerInfo Object. + + + + + The identifier for the Server_ServerRedundancy Object. + + + + + The identifier for the Server_Namespaces Object. + + + + + The identifier for the HistoryServerCapabilities Object. + + + + + The identifier for the HistoryServerCapabilities_AggregateFunctions Object. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder Object. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder Object. + + + + + The identifier for the FileSystem Object. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder Object. + + + + + The identifier for the FileTransferStateMachineType_Idle Object. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepare Object. + + + + + The identifier for the FileTransferStateMachineType_ReadTransfer Object. + + + + + The identifier for the FileTransferStateMachineType_ApplyWrite Object. + + + + + The identifier for the FileTransferStateMachineType_Error Object. + + + + + The identifier for the FileTransferStateMachineType_IdleToReadPrepare Object. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepareToReadTransfer Object. + + + + + The identifier for the FileTransferStateMachineType_ReadTransferToIdle Object. + + + + + The identifier for the FileTransferStateMachineType_IdleToApplyWrite Object. + + + + + The identifier for the FileTransferStateMachineType_ApplyWriteToIdle Object. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepareToError Object. + + + + + The identifier for the FileTransferStateMachineType_ReadTransferToError Object. + + + + + The identifier for the FileTransferStateMachineType_ApplyWriteToError Object. + + + + + The identifier for the FileTransferStateMachineType_ErrorToIdle Object. + + + + + The identifier for the RoleSetType_RoleName_Placeholder Object. + + + + + The identifier for the WellKnownRole_Anonymous Object. + + + + + The identifier for the WellKnownRole_AuthenticatedUser Object. + + + + + The identifier for the WellKnownRole_Observer Object. + + + + + The identifier for the WellKnownRole_Operator Object. + + + + + The identifier for the WellKnownRole_Engineer Object. + + + + + The identifier for the WellKnownRole_Supervisor Object. + + + + + The identifier for the WellKnownRole_ConfigureAdmin Object. + + + + + The identifier for the WellKnownRole_SecurityAdmin Object. + + + + + The identifier for the DictionaryEntryType_DictionaryEntryName_Placeholder Object. + + + + + The identifier for the DictionaryFolderType_DictionaryFolderName_Placeholder Object. + + + + + The identifier for the DictionaryFolderType_DictionaryEntryName_Placeholder Object. + + + + + The identifier for the Dictionaries Object. + + + + + The identifier for the InterfaceTypes Object. + + + + + The identifier for the OrderedListType_OrderedObject_Placeholder Object. + + + + + The identifier for the AlarmConditionType_ShelvingState Object. + + + + + The identifier for the AlarmConditionType_FirstInGroup Object. + + + + + The identifier for the AlarmConditionType_AlarmGroup_Placeholder Object. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder Object. + + + + + The identifier for the ShelvedStateMachineType_Unshelved Object. + + + + + The identifier for the ShelvedStateMachineType_TimedShelved Object. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelved Object. + + + + + The identifier for the ShelvedStateMachineType_UnshelvedToTimedShelved Object. + + + + + The identifier for the ShelvedStateMachineType_UnshelvedToOneShotShelved Object. + + + + + The identifier for the ShelvedStateMachineType_TimedShelvedToUnshelved Object. + + + + + The identifier for the ShelvedStateMachineType_TimedShelvedToOneShotShelved Object. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelvedToUnshelved Object. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelvedToTimedShelved Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighHigh Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_High Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_Low Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowLow Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowLowToLow Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowToLowLow Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighHighToHigh Object. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighToHighHigh Object. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState Object. + + + + + The identifier for the ProgramStateMachineType_FinalResultData Object. + + + + + The identifier for the ProgramStateMachineType_Halted Object. + + + + + The identifier for the ProgramStateMachineType_Ready Object. + + + + + The identifier for the ProgramStateMachineType_Running Object. + + + + + The identifier for the ProgramStateMachineType_Suspended Object. + + + + + The identifier for the ProgramStateMachineType_HaltedToReady Object. + + + + + The identifier for the ProgramStateMachineType_ReadyToRunning Object. + + + + + The identifier for the ProgramStateMachineType_RunningToHalted Object. + + + + + The identifier for the ProgramStateMachineType_RunningToReady Object. + + + + + The identifier for the ProgramStateMachineType_RunningToSuspended Object. + + + + + The identifier for the ProgramStateMachineType_SuspendedToRunning Object. + + + + + The identifier for the ProgramStateMachineType_SuspendedToHalted Object. + + + + + The identifier for the ProgramStateMachineType_SuspendedToReady Object. + + + + + The identifier for the ProgramStateMachineType_ReadyToHalted Object. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration Object. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateFunctions Object. + + + + + The identifier for the HAConfiguration Object. + + + + + The identifier for the HAConfiguration_AggregateConfiguration Object. + + + + + The identifier for the HistoryServerCapabilitiesType_AggregateFunctions Object. + + + + + The identifier for the CertificateGroupType_TrustList Object. + + + + + The identifier for the CertificateGroupType_CertificateExpired Object. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup Object. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder Object. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the ServerConfiguration Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup Object. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the KeyCredentialConfigurationFolderType_ServiceName_Placeholder Object. + + + + + The identifier for the KeyCredentialConfiguration Object. + + + + + The identifier for the AuthorizationServices Object. + + + + + The identifier for the AggregateFunction_Interpolative Object. + + + + + The identifier for the AggregateFunction_Average Object. + + + + + The identifier for the AggregateFunction_TimeAverage Object. + + + + + The identifier for the AggregateFunction_TimeAverage2 Object. + + + + + The identifier for the AggregateFunction_Total Object. + + + + + The identifier for the AggregateFunction_Total2 Object. + + + + + The identifier for the AggregateFunction_Minimum Object. + + + + + The identifier for the AggregateFunction_Maximum Object. + + + + + The identifier for the AggregateFunction_MinimumActualTime Object. + + + + + The identifier for the AggregateFunction_MaximumActualTime Object. + + + + + The identifier for the AggregateFunction_Range Object. + + + + + The identifier for the AggregateFunction_Minimum2 Object. + + + + + The identifier for the AggregateFunction_Maximum2 Object. + + + + + The identifier for the AggregateFunction_MinimumActualTime2 Object. + + + + + The identifier for the AggregateFunction_MaximumActualTime2 Object. + + + + + The identifier for the AggregateFunction_Range2 Object. + + + + + The identifier for the AggregateFunction_AnnotationCount Object. + + + + + The identifier for the AggregateFunction_Count Object. + + + + + The identifier for the AggregateFunction_DurationInStateZero Object. + + + + + The identifier for the AggregateFunction_DurationInStateNonZero Object. + + + + + The identifier for the AggregateFunction_NumberOfTransitions Object. + + + + + The identifier for the AggregateFunction_Start Object. + + + + + The identifier for the AggregateFunction_End Object. + + + + + The identifier for the AggregateFunction_Delta Object. + + + + + The identifier for the AggregateFunction_StartBound Object. + + + + + The identifier for the AggregateFunction_EndBound Object. + + + + + The identifier for the AggregateFunction_DeltaBounds Object. + + + + + The identifier for the AggregateFunction_DurationGood Object. + + + + + The identifier for the AggregateFunction_DurationBad Object. + + + + + The identifier for the AggregateFunction_PercentGood Object. + + + + + The identifier for the AggregateFunction_PercentBad Object. + + + + + The identifier for the AggregateFunction_WorstQuality Object. + + + + + The identifier for the AggregateFunction_WorstQuality2 Object. + + + + + The identifier for the AggregateFunction_StandardDeviationSample Object. + + + + + The identifier for the AggregateFunction_StandardDeviationPopulation Object. + + + + + The identifier for the AggregateFunction_VarianceSample Object. + + + + + The identifier for the AggregateFunction_VariancePopulation Object. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups Object. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder Object. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Address Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Status Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets Object. + + + + + The identifier for the PublishSubscribeType_Status Object. + + + + + The identifier for the PublishSubscribeType_Diagnostics Object. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters Object. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishSubscribe Object. + + + + + The identifier for the PublishSubscribe_SecurityGroups Object. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Address Object. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Status Object. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishSubscribe_PublishedDataSets Object. + + + + + The identifier for the PublishSubscribe_Status Object. + + + + + The identifier for the PublishSubscribe_Diagnostics Object. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters Object. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder Object. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Status Object. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishedDataSetType_ExtensionFields Object. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Status Object. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Status Object. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder Object. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder Object. + + + + + The identifier for the PubSubConnectionType_Address Object. + + + + + The identifier for the PubSubConnectionType_TransportSettings Object. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder Object. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Status Object. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder Object. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Status Object. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the PubSubConnectionType_Status Object. + + + + + The identifier for the PubSubConnectionType_Diagnostics Object. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters Object. + + + + + The identifier for the PubSubConnectionType_Diagnostics_LiveValues Object. + + + + + The identifier for the PubSubGroupType_Status Object. + + + + + The identifier for the WriterGroupType_TransportSettings Object. + + + + + The identifier for the WriterGroupType_MessageSettings Object. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder Object. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Status Object. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the WriterGroupType_Diagnostics Object. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters Object. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Status Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues Object. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_SubscribedDataSet Object. + + + + + The identifier for the ReaderGroupType_Diagnostics Object. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters Object. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues Object. + + + + + The identifier for the ReaderGroupType_TransportSettings Object. + + + + + The identifier for the ReaderGroupType_MessageSettings Object. + + + + + The identifier for the DataSetWriterType_TransportSettings Object. + + + + + The identifier for the DataSetWriterType_MessageSettings Object. + + + + + The identifier for the DataSetWriterType_Status Object. + + + + + The identifier for the DataSetWriterType_Diagnostics Object. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters Object. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues Object. + + + + + The identifier for the DataSetReaderType_TransportSettings Object. + + + + + The identifier for the DataSetReaderType_MessageSettings Object. + + + + + The identifier for the DataSetReaderType_Status Object. + + + + + The identifier for the DataSetReaderType_Diagnostics Object. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters Object. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues Object. + + + + + The identifier for the DataSetReaderType_SubscribedDataSet Object. + + + + + The identifier for the PubSubDiagnosticsType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsConnectionType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues Object. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters Object. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues Object. + + + + + The identifier for the DatagramConnectionTransportType_DiscoveryAddress Object. + + + + + The identifier for the AliasNameCategoryType_Alias_Placeholder Object. + + + + + The identifier for the AliasNameCategoryType_SubAliasNameCategories_Placeholder Object. + + + + + The identifier for the Aliases Object. + + + + + The identifier for the TagVariables Object. + + + + + The identifier for the Topics Object. + + + + + The identifier for the KeyValuePair_Encoding_DefaultBinary Object. + + + + + The identifier for the EndpointType_Encoding_DefaultBinary Object. + + + + + The identifier for the RationalNumber_Encoding_DefaultBinary Object. + + + + + The identifier for the Vector_Encoding_DefaultBinary Object. + + + + + The identifier for the ThreeDVector_Encoding_DefaultBinary Object. + + + + + The identifier for the CartesianCoordinates_Encoding_DefaultBinary Object. + + + + + The identifier for the ThreeDCartesianCoordinates_Encoding_DefaultBinary Object. + + + + + The identifier for the Orientation_Encoding_DefaultBinary Object. + + + + + The identifier for the ThreeDOrientation_Encoding_DefaultBinary Object. + + + + + The identifier for the Frame_Encoding_DefaultBinary Object. + + + + + The identifier for the ThreeDFrame_Encoding_DefaultBinary Object. + + + + + The identifier for the IdentityMappingRuleType_Encoding_DefaultBinary Object. + + + + + The identifier for the CurrencyUnitType_Encoding_DefaultBinary Object. + + + + + The identifier for the TrustListDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DecimalDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeSchemaHeader_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the StructureDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the EnumDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the SimpleTypeDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the UABinaryFileDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetMetaDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the FieldMetaData_Encoding_DefaultBinary Object. + + + + + The identifier for the ConfigurationVersionDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedDataSetDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedDataSetSourceDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedVariableDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedDataItemsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishedEventsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetWriterDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetWriterTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetWriterMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PubSubGroupDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the WriterGroupDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the WriterGroupTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the WriterGroupMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PubSubConnectionDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ConnectionTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the NetworkAddressDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the NetworkAddressUrlDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ReaderGroupDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ReaderGroupTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ReaderGroupMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetReaderDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetReaderTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataSetReaderMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SubscribedDataSetDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the TargetVariablesDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the FieldTargetDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SubscribedDataSetMirrorDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the PubSubConfigurationDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the UadpWriterGroupMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the UadpDataSetWriterMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the UadpDataSetReaderMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the JsonWriterGroupMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the JsonDataSetWriterMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the JsonDataSetReaderMessageDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DatagramConnectionTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the DatagramWriterGroupTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the BrokerConnectionTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the BrokerWriterGroupTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the BrokerDataSetWriterTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the BrokerDataSetReaderTransportDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the AliasNameDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the RolePermissionType_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeDefinition_Encoding_DefaultBinary Object. + + + + + The identifier for the StructureField_Encoding_DefaultBinary Object. + + + + + The identifier for the StructureDefinition_Encoding_DefaultBinary Object. + + + + + The identifier for the EnumDefinition_Encoding_DefaultBinary Object. + + + + + The identifier for the Node_Encoding_DefaultBinary Object. + + + + + The identifier for the InstanceNode_Encoding_DefaultBinary Object. + + + + + The identifier for the TypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ObjectNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ObjectTypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the VariableNode_Encoding_DefaultBinary Object. + + + + + The identifier for the VariableTypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ReferenceTypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the MethodNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ViewNode_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeNode_Encoding_DefaultBinary Object. + + + + + The identifier for the ReferenceNode_Encoding_DefaultBinary Object. + + + + + The identifier for the Argument_Encoding_DefaultBinary Object. + + + + + The identifier for the EnumValueType_Encoding_DefaultBinary Object. + + + + + The identifier for the EnumField_Encoding_DefaultBinary Object. + + + + + The identifier for the OptionSet_Encoding_DefaultBinary Object. + + + + + The identifier for the Union_Encoding_DefaultBinary Object. + + + + + The identifier for the TimeZoneDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ApplicationDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the RequestHeader_Encoding_DefaultBinary Object. + + + + + The identifier for the ResponseHeader_Encoding_DefaultBinary Object. + + + + + The identifier for the ServiceFault_Encoding_DefaultBinary Object. + + + + + The identifier for the SessionlessInvokeRequestType_Encoding_DefaultBinary Object. + + + + + The identifier for the SessionlessInvokeResponseType_Encoding_DefaultBinary Object. + + + + + The identifier for the FindServersRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the FindServersResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the ServerOnNetwork_Encoding_DefaultBinary Object. + + + + + The identifier for the FindServersOnNetworkRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the FindServersOnNetworkResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the UserTokenPolicy_Encoding_DefaultBinary Object. + + + + + The identifier for the EndpointDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the GetEndpointsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the GetEndpointsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisteredServer_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterServerRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterServerResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DiscoveryConfiguration_Encoding_DefaultBinary Object. + + + + + The identifier for the MdnsDiscoveryConfiguration_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterServer2Request_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterServer2Response_Encoding_DefaultBinary Object. + + + + + The identifier for the ChannelSecurityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the OpenSecureChannelRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the OpenSecureChannelResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CloseSecureChannelRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CloseSecureChannelResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the SignedSoftwareCertificate_Encoding_DefaultBinary Object. + + + + + The identifier for the SignatureData_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateSessionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateSessionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the UserIdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the AnonymousIdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the UserNameIdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the X509IdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the IssuedIdentityToken_Encoding_DefaultBinary Object. + + + + + The identifier for the ActivateSessionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the ActivateSessionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CloseSessionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CloseSessionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CancelRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CancelResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the NodeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the ObjectAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the VariableAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the MethodAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the ObjectTypeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the VariableTypeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the ReferenceTypeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the DataTypeAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the ViewAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the GenericAttributeValue_Encoding_DefaultBinary Object. + + + + + The identifier for the GenericAttributes_Encoding_DefaultBinary Object. + + + + + The identifier for the AddNodesItem_Encoding_DefaultBinary Object. + + + + + The identifier for the AddNodesResult_Encoding_DefaultBinary Object. + + + + + The identifier for the AddNodesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the AddNodesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the AddReferencesItem_Encoding_DefaultBinary Object. + + + + + The identifier for the AddReferencesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the AddReferencesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteNodesItem_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteNodesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteNodesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteReferencesItem_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteReferencesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteReferencesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the ViewDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the ReferenceDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseResult_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseNextRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowseNextResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the RelativePathElement_Encoding_DefaultBinary Object. + + + + + The identifier for the RelativePath_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowsePath_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowsePathTarget_Encoding_DefaultBinary Object. + + + + + The identifier for the BrowsePathResult_Encoding_DefaultBinary Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterNodesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the RegisterNodesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the UnregisterNodesRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the UnregisterNodesResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the EndpointConfiguration_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryDataDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the NodeTypeDescription_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryDataSet_Encoding_DefaultBinary Object. + + + + + The identifier for the NodeReference_Encoding_DefaultBinary Object. + + + + + The identifier for the ContentFilterElement_Encoding_DefaultBinary Object. + + + + + The identifier for the ContentFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the FilterOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the ElementOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the LiteralOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the AttributeOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the SimpleAttributeOperand_Encoding_DefaultBinary Object. + + + + + The identifier for the ContentFilterElementResult_Encoding_DefaultBinary Object. + + + + + The identifier for the ContentFilterResult_Encoding_DefaultBinary Object. + + + + + The identifier for the ParsingResult_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryFirstRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryFirstResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryNextRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the QueryNextResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadValueId_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadValueId_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadResult_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadEventDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadRawModifiedDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadProcessedDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadAtTimeDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the ReadAnnotationDataDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryData_Encoding_DefaultBinary Object. + + + + + The identifier for the ModificationInfo_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryModifiedData_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryEvent_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryReadResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the WriteValue_Encoding_DefaultBinary Object. + + + + + The identifier for the WriteRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the WriteResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryUpdateDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the UpdateDataDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the UpdateStructureDataDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the UpdateEventDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteRawModifiedDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteAtTimeDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteEventDetails_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryUpdateResult_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryUpdateRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryUpdateResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CallMethodRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CallMethodResult_Encoding_DefaultBinary Object. + + + + + The identifier for the CallRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CallResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoringFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the DataChangeFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the EventFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the AggregateConfiguration_Encoding_DefaultBinary Object. + + + + + The identifier for the AggregateFilter_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoringFilterResult_Encoding_DefaultBinary Object. + + + + + The identifier for the EventFilterResult_Encoding_DefaultBinary Object. + + + + + The identifier for the AggregateFilterResult_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoringParameters_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemCreateRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemCreateResult_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateMonitoredItemsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateMonitoredItemsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemModifyRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemModifyResult_Encoding_DefaultBinary Object. + + + + + The identifier for the ModifyMonitoredItemsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the ModifyMonitoredItemsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the SetMonitoringModeRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the SetMonitoringModeResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the SetTriggeringRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the SetTriggeringResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteMonitoredItemsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteMonitoredItemsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateSubscriptionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the CreateSubscriptionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the ModifySubscriptionRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the ModifySubscriptionResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the SetPublishingModeRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the SetPublishingModeResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the NotificationMessage_Encoding_DefaultBinary Object. + + + + + The identifier for the NotificationData_Encoding_DefaultBinary Object. + + + + + The identifier for the DataChangeNotification_Encoding_DefaultBinary Object. + + + + + The identifier for the MonitoredItemNotification_Encoding_DefaultBinary Object. + + + + + The identifier for the EventNotificationList_Encoding_DefaultBinary Object. + + + + + The identifier for the EventFieldList_Encoding_DefaultBinary Object. + + + + + The identifier for the HistoryEventFieldList_Encoding_DefaultBinary Object. + + + + + The identifier for the StatusChangeNotification_Encoding_DefaultBinary Object. + + + + + The identifier for the SubscriptionAcknowledgement_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the PublishResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the RepublishRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the RepublishResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the TransferResult_Encoding_DefaultBinary Object. + + + + + The identifier for the TransferSubscriptionsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the TransferSubscriptionsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteSubscriptionsRequest_Encoding_DefaultBinary Object. + + + + + The identifier for the DeleteSubscriptionsResponse_Encoding_DefaultBinary Object. + + + + + The identifier for the BuildInfo_Encoding_DefaultBinary Object. + + + + + The identifier for the RedundantServerDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the EndpointUrlListDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the NetworkGroupDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SamplingIntervalDiagnosticsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ServerDiagnosticsSummaryDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ServerStatusDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SessionDiagnosticsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SessionSecurityDiagnosticsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ServiceCounterDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the StatusResult_Encoding_DefaultBinary Object. + + + + + The identifier for the SubscriptionDiagnosticsDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ModelChangeStructureDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the SemanticChangeStructureDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the Range_Encoding_DefaultBinary Object. + + + + + The identifier for the EUInformation_Encoding_DefaultBinary Object. + + + + + The identifier for the ComplexNumberType_Encoding_DefaultBinary Object. + + + + + The identifier for the DoubleComplexNumberType_Encoding_DefaultBinary Object. + + + + + The identifier for the AxisInformation_Encoding_DefaultBinary Object. + + + + + The identifier for the XVType_Encoding_DefaultBinary Object. + + + + + The identifier for the ProgramDiagnosticDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ProgramDiagnostic2DataType_Encoding_DefaultBinary Object. + + + + + The identifier for the Annotation_Encoding_DefaultBinary Object. + + + + + The identifier for the KeyValuePair_Encoding_DefaultXml Object. + + + + + The identifier for the EndpointType_Encoding_DefaultXml Object. + + + + + The identifier for the RationalNumber_Encoding_DefaultXml Object. + + + + + The identifier for the Vector_Encoding_DefaultXml Object. + + + + + The identifier for the ThreeDVector_Encoding_DefaultXml Object. + + + + + The identifier for the CartesianCoordinates_Encoding_DefaultXml Object. + + + + + The identifier for the ThreeDCartesianCoordinates_Encoding_DefaultXml Object. + + + + + The identifier for the Orientation_Encoding_DefaultXml Object. + + + + + The identifier for the ThreeDOrientation_Encoding_DefaultXml Object. + + + + + The identifier for the Frame_Encoding_DefaultXml Object. + + + + + The identifier for the ThreeDFrame_Encoding_DefaultXml Object. + + + + + The identifier for the IdentityMappingRuleType_Encoding_DefaultXml Object. + + + + + The identifier for the CurrencyUnitType_Encoding_DefaultXml Object. + + + + + The identifier for the TrustListDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DecimalDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeSchemaHeader_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeDescription_Encoding_DefaultXml Object. + + + + + The identifier for the StructureDescription_Encoding_DefaultXml Object. + + + + + The identifier for the EnumDescription_Encoding_DefaultXml Object. + + + + + The identifier for the SimpleTypeDescription_Encoding_DefaultXml Object. + + + + + The identifier for the UABinaryFileDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetMetaDataType_Encoding_DefaultXml Object. + + + + + The identifier for the FieldMetaData_Encoding_DefaultXml Object. + + + + + The identifier for the ConfigurationVersionDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedDataSetDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedDataSetSourceDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedVariableDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedDataItemsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PublishedEventsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetWriterDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetWriterTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetWriterMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PubSubGroupDataType_Encoding_DefaultXml Object. + + + + + The identifier for the WriterGroupDataType_Encoding_DefaultXml Object. + + + + + The identifier for the WriterGroupTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the WriterGroupMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PubSubConnectionDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ConnectionTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the NetworkAddressDataType_Encoding_DefaultXml Object. + + + + + The identifier for the NetworkAddressUrlDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ReaderGroupDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ReaderGroupTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ReaderGroupMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetReaderDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetReaderTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DataSetReaderMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SubscribedDataSetDataType_Encoding_DefaultXml Object. + + + + + The identifier for the TargetVariablesDataType_Encoding_DefaultXml Object. + + + + + The identifier for the FieldTargetDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SubscribedDataSetMirrorDataType_Encoding_DefaultXml Object. + + + + + The identifier for the PubSubConfigurationDataType_Encoding_DefaultXml Object. + + + + + The identifier for the UadpWriterGroupMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the UadpDataSetWriterMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the UadpDataSetReaderMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the JsonWriterGroupMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the JsonDataSetWriterMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the JsonDataSetReaderMessageDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DatagramConnectionTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the DatagramWriterGroupTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the BrokerConnectionTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the BrokerWriterGroupTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the BrokerDataSetWriterTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the BrokerDataSetReaderTransportDataType_Encoding_DefaultXml Object. + + + + + The identifier for the AliasNameDataType_Encoding_DefaultXml Object. + + + + + The identifier for the RolePermissionType_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeDefinition_Encoding_DefaultXml Object. + + + + + The identifier for the StructureField_Encoding_DefaultXml Object. + + + + + The identifier for the StructureDefinition_Encoding_DefaultXml Object. + + + + + The identifier for the EnumDefinition_Encoding_DefaultXml Object. + + + + + The identifier for the Node_Encoding_DefaultXml Object. + + + + + The identifier for the InstanceNode_Encoding_DefaultXml Object. + + + + + The identifier for the TypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the ObjectNode_Encoding_DefaultXml Object. + + + + + The identifier for the ObjectTypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the VariableNode_Encoding_DefaultXml Object. + + + + + The identifier for the VariableTypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the ReferenceTypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the MethodNode_Encoding_DefaultXml Object. + + + + + The identifier for the ViewNode_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeNode_Encoding_DefaultXml Object. + + + + + The identifier for the ReferenceNode_Encoding_DefaultXml Object. + + + + + The identifier for the Argument_Encoding_DefaultXml Object. + + + + + The identifier for the EnumValueType_Encoding_DefaultXml Object. + + + + + The identifier for the EnumField_Encoding_DefaultXml Object. + + + + + The identifier for the OptionSet_Encoding_DefaultXml Object. + + + + + The identifier for the Union_Encoding_DefaultXml Object. + + + + + The identifier for the TimeZoneDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ApplicationDescription_Encoding_DefaultXml Object. + + + + + The identifier for the RequestHeader_Encoding_DefaultXml Object. + + + + + The identifier for the ResponseHeader_Encoding_DefaultXml Object. + + + + + The identifier for the ServiceFault_Encoding_DefaultXml Object. + + + + + The identifier for the SessionlessInvokeRequestType_Encoding_DefaultXml Object. + + + + + The identifier for the SessionlessInvokeResponseType_Encoding_DefaultXml Object. + + + + + The identifier for the FindServersRequest_Encoding_DefaultXml Object. + + + + + The identifier for the FindServersResponse_Encoding_DefaultXml Object. + + + + + The identifier for the ServerOnNetwork_Encoding_DefaultXml Object. + + + + + The identifier for the FindServersOnNetworkRequest_Encoding_DefaultXml Object. + + + + + The identifier for the FindServersOnNetworkResponse_Encoding_DefaultXml Object. + + + + + The identifier for the UserTokenPolicy_Encoding_DefaultXml Object. + + + + + The identifier for the EndpointDescription_Encoding_DefaultXml Object. + + + + + The identifier for the GetEndpointsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the GetEndpointsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the RegisteredServer_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterServerRequest_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterServerResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DiscoveryConfiguration_Encoding_DefaultXml Object. + + + + + The identifier for the MdnsDiscoveryConfiguration_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterServer2Request_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterServer2Response_Encoding_DefaultXml Object. + + + + + The identifier for the ChannelSecurityToken_Encoding_DefaultXml Object. + + + + + The identifier for the OpenSecureChannelRequest_Encoding_DefaultXml Object. + + + + + The identifier for the OpenSecureChannelResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CloseSecureChannelRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CloseSecureChannelResponse_Encoding_DefaultXml Object. + + + + + The identifier for the SignedSoftwareCertificate_Encoding_DefaultXml Object. + + + + + The identifier for the SignatureData_Encoding_DefaultXml Object. + + + + + The identifier for the CreateSessionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CreateSessionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the UserIdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the AnonymousIdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the UserNameIdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the X509IdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the IssuedIdentityToken_Encoding_DefaultXml Object. + + + + + The identifier for the ActivateSessionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the ActivateSessionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CloseSessionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CloseSessionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CancelRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CancelResponse_Encoding_DefaultXml Object. + + + + + The identifier for the NodeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the ObjectAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the VariableAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the MethodAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the ObjectTypeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the VariableTypeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the ReferenceTypeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the DataTypeAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the ViewAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the GenericAttributeValue_Encoding_DefaultXml Object. + + + + + The identifier for the GenericAttributes_Encoding_DefaultXml Object. + + + + + The identifier for the AddNodesItem_Encoding_DefaultXml Object. + + + + + The identifier for the AddNodesResult_Encoding_DefaultXml Object. + + + + + The identifier for the AddNodesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the AddNodesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the AddReferencesItem_Encoding_DefaultXml Object. + + + + + The identifier for the AddReferencesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the AddReferencesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteNodesItem_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteNodesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteNodesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteReferencesItem_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteReferencesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteReferencesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the ViewDescription_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseDescription_Encoding_DefaultXml Object. + + + + + The identifier for the ReferenceDescription_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseResult_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseRequest_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseResponse_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseNextRequest_Encoding_DefaultXml Object. + + + + + The identifier for the BrowseNextResponse_Encoding_DefaultXml Object. + + + + + The identifier for the RelativePathElement_Encoding_DefaultXml Object. + + + + + The identifier for the RelativePath_Encoding_DefaultXml Object. + + + + + The identifier for the BrowsePath_Encoding_DefaultXml Object. + + + + + The identifier for the BrowsePathTarget_Encoding_DefaultXml Object. + + + + + The identifier for the BrowsePathResult_Encoding_DefaultXml Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterNodesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the RegisterNodesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the UnregisterNodesRequest_Encoding_DefaultXml Object. + + + + + The identifier for the UnregisterNodesResponse_Encoding_DefaultXml Object. + + + + + The identifier for the EndpointConfiguration_Encoding_DefaultXml Object. + + + + + The identifier for the QueryDataDescription_Encoding_DefaultXml Object. + + + + + The identifier for the NodeTypeDescription_Encoding_DefaultXml Object. + + + + + The identifier for the QueryDataSet_Encoding_DefaultXml Object. + + + + + The identifier for the NodeReference_Encoding_DefaultXml Object. + + + + + The identifier for the ContentFilterElement_Encoding_DefaultXml Object. + + + + + The identifier for the ContentFilter_Encoding_DefaultXml Object. + + + + + The identifier for the FilterOperand_Encoding_DefaultXml Object. + + + + + The identifier for the ElementOperand_Encoding_DefaultXml Object. + + + + + The identifier for the LiteralOperand_Encoding_DefaultXml Object. + + + + + The identifier for the AttributeOperand_Encoding_DefaultXml Object. + + + + + The identifier for the SimpleAttributeOperand_Encoding_DefaultXml Object. + + + + + The identifier for the ContentFilterElementResult_Encoding_DefaultXml Object. + + + + + The identifier for the ContentFilterResult_Encoding_DefaultXml Object. + + + + + The identifier for the ParsingResult_Encoding_DefaultXml Object. + + + + + The identifier for the QueryFirstRequest_Encoding_DefaultXml Object. + + + + + The identifier for the QueryFirstResponse_Encoding_DefaultXml Object. + + + + + The identifier for the QueryNextRequest_Encoding_DefaultXml Object. + + + + + The identifier for the QueryNextResponse_Encoding_DefaultXml Object. + + + + + The identifier for the ReadValueId_Encoding_DefaultXml Object. + + + + + The identifier for the ReadRequest_Encoding_DefaultXml Object. + + + + + The identifier for the ReadResponse_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadValueId_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadResult_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadEventDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadRawModifiedDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadProcessedDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadAtTimeDetails_Encoding_DefaultXml Object. + + + + + The identifier for the ReadAnnotationDataDetails_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryData_Encoding_DefaultXml Object. + + + + + The identifier for the ModificationInfo_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryModifiedData_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryEvent_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadRequest_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryReadResponse_Encoding_DefaultXml Object. + + + + + The identifier for the WriteValue_Encoding_DefaultXml Object. + + + + + The identifier for the WriteRequest_Encoding_DefaultXml Object. + + + + + The identifier for the WriteResponse_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryUpdateDetails_Encoding_DefaultXml Object. + + + + + The identifier for the UpdateDataDetails_Encoding_DefaultXml Object. + + + + + The identifier for the UpdateStructureDataDetails_Encoding_DefaultXml Object. + + + + + The identifier for the UpdateEventDetails_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteRawModifiedDetails_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteAtTimeDetails_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteEventDetails_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryUpdateResult_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryUpdateRequest_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryUpdateResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CallMethodRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CallMethodResult_Encoding_DefaultXml Object. + + + + + The identifier for the CallRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CallResponse_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoringFilter_Encoding_DefaultXml Object. + + + + + The identifier for the DataChangeFilter_Encoding_DefaultXml Object. + + + + + The identifier for the EventFilter_Encoding_DefaultXml Object. + + + + + The identifier for the AggregateConfiguration_Encoding_DefaultXml Object. + + + + + The identifier for the AggregateFilter_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoringFilterResult_Encoding_DefaultXml Object. + + + + + The identifier for the EventFilterResult_Encoding_DefaultXml Object. + + + + + The identifier for the AggregateFilterResult_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoringParameters_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemCreateRequest_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemCreateResult_Encoding_DefaultXml Object. + + + + + The identifier for the CreateMonitoredItemsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CreateMonitoredItemsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemModifyRequest_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemModifyResult_Encoding_DefaultXml Object. + + + + + The identifier for the ModifyMonitoredItemsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the ModifyMonitoredItemsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the SetMonitoringModeRequest_Encoding_DefaultXml Object. + + + + + The identifier for the SetMonitoringModeResponse_Encoding_DefaultXml Object. + + + + + The identifier for the SetTriggeringRequest_Encoding_DefaultXml Object. + + + + + The identifier for the SetTriggeringResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteMonitoredItemsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteMonitoredItemsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the CreateSubscriptionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the CreateSubscriptionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the ModifySubscriptionRequest_Encoding_DefaultXml Object. + + + + + The identifier for the ModifySubscriptionResponse_Encoding_DefaultXml Object. + + + + + The identifier for the SetPublishingModeRequest_Encoding_DefaultXml Object. + + + + + The identifier for the SetPublishingModeResponse_Encoding_DefaultXml Object. + + + + + The identifier for the NotificationMessage_Encoding_DefaultXml Object. + + + + + The identifier for the NotificationData_Encoding_DefaultXml Object. + + + + + The identifier for the DataChangeNotification_Encoding_DefaultXml Object. + + + + + The identifier for the MonitoredItemNotification_Encoding_DefaultXml Object. + + + + + The identifier for the EventNotificationList_Encoding_DefaultXml Object. + + + + + The identifier for the EventFieldList_Encoding_DefaultXml Object. + + + + + The identifier for the HistoryEventFieldList_Encoding_DefaultXml Object. + + + + + The identifier for the StatusChangeNotification_Encoding_DefaultXml Object. + + + + + The identifier for the SubscriptionAcknowledgement_Encoding_DefaultXml Object. + + + + + The identifier for the PublishRequest_Encoding_DefaultXml Object. + + + + + The identifier for the PublishResponse_Encoding_DefaultXml Object. + + + + + The identifier for the RepublishRequest_Encoding_DefaultXml Object. + + + + + The identifier for the RepublishResponse_Encoding_DefaultXml Object. + + + + + The identifier for the TransferResult_Encoding_DefaultXml Object. + + + + + The identifier for the TransferSubscriptionsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the TransferSubscriptionsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteSubscriptionsRequest_Encoding_DefaultXml Object. + + + + + The identifier for the DeleteSubscriptionsResponse_Encoding_DefaultXml Object. + + + + + The identifier for the BuildInfo_Encoding_DefaultXml Object. + + + + + The identifier for the RedundantServerDataType_Encoding_DefaultXml Object. + + + + + The identifier for the EndpointUrlListDataType_Encoding_DefaultXml Object. + + + + + The identifier for the NetworkGroupDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SamplingIntervalDiagnosticsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ServerDiagnosticsSummaryDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ServerStatusDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SessionDiagnosticsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SessionSecurityDiagnosticsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ServiceCounterDataType_Encoding_DefaultXml Object. + + + + + The identifier for the StatusResult_Encoding_DefaultXml Object. + + + + + The identifier for the SubscriptionDiagnosticsDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ModelChangeStructureDataType_Encoding_DefaultXml Object. + + + + + The identifier for the SemanticChangeStructureDataType_Encoding_DefaultXml Object. + + + + + The identifier for the Range_Encoding_DefaultXml Object. + + + + + The identifier for the EUInformation_Encoding_DefaultXml Object. + + + + + The identifier for the ComplexNumberType_Encoding_DefaultXml Object. + + + + + The identifier for the DoubleComplexNumberType_Encoding_DefaultXml Object. + + + + + The identifier for the AxisInformation_Encoding_DefaultXml Object. + + + + + The identifier for the XVType_Encoding_DefaultXml Object. + + + + + The identifier for the ProgramDiagnosticDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ProgramDiagnostic2DataType_Encoding_DefaultXml Object. + + + + + The identifier for the Annotation_Encoding_DefaultXml Object. + + + + + The identifier for the KeyValuePair_Encoding_DefaultJson Object. + + + + + The identifier for the EndpointType_Encoding_DefaultJson Object. + + + + + The identifier for the RationalNumber_Encoding_DefaultJson Object. + + + + + The identifier for the Vector_Encoding_DefaultJson Object. + + + + + The identifier for the ThreeDVector_Encoding_DefaultJson Object. + + + + + The identifier for the CartesianCoordinates_Encoding_DefaultJson Object. + + + + + The identifier for the ThreeDCartesianCoordinates_Encoding_DefaultJson Object. + + + + + The identifier for the Orientation_Encoding_DefaultJson Object. + + + + + The identifier for the ThreeDOrientation_Encoding_DefaultJson Object. + + + + + The identifier for the Frame_Encoding_DefaultJson Object. + + + + + The identifier for the ThreeDFrame_Encoding_DefaultJson Object. + + + + + The identifier for the IdentityMappingRuleType_Encoding_DefaultJson Object. + + + + + The identifier for the CurrencyUnitType_Encoding_DefaultJson Object. + + + + + The identifier for the TrustListDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DecimalDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeSchemaHeader_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeDescription_Encoding_DefaultJson Object. + + + + + The identifier for the StructureDescription_Encoding_DefaultJson Object. + + + + + The identifier for the EnumDescription_Encoding_DefaultJson Object. + + + + + The identifier for the SimpleTypeDescription_Encoding_DefaultJson Object. + + + + + The identifier for the UABinaryFileDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetMetaDataType_Encoding_DefaultJson Object. + + + + + The identifier for the FieldMetaData_Encoding_DefaultJson Object. + + + + + The identifier for the ConfigurationVersionDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedDataSetDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedDataSetSourceDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedVariableDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedDataItemsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PublishedEventsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetWriterDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetWriterTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetWriterMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PubSubGroupDataType_Encoding_DefaultJson Object. + + + + + The identifier for the WriterGroupDataType_Encoding_DefaultJson Object. + + + + + The identifier for the WriterGroupTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the WriterGroupMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PubSubConnectionDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ConnectionTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the NetworkAddressDataType_Encoding_DefaultJson Object. + + + + + The identifier for the NetworkAddressUrlDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ReaderGroupDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ReaderGroupTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ReaderGroupMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetReaderDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetReaderTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DataSetReaderMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SubscribedDataSetDataType_Encoding_DefaultJson Object. + + + + + The identifier for the TargetVariablesDataType_Encoding_DefaultJson Object. + + + + + The identifier for the FieldTargetDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SubscribedDataSetMirrorDataType_Encoding_DefaultJson Object. + + + + + The identifier for the PubSubConfigurationDataType_Encoding_DefaultJson Object. + + + + + The identifier for the UadpWriterGroupMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the UadpDataSetWriterMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the UadpDataSetReaderMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the JsonWriterGroupMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the JsonDataSetWriterMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the JsonDataSetReaderMessageDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DatagramConnectionTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the DatagramWriterGroupTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the BrokerConnectionTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the BrokerWriterGroupTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the BrokerDataSetWriterTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the BrokerDataSetReaderTransportDataType_Encoding_DefaultJson Object. + + + + + The identifier for the AliasNameDataType_Encoding_DefaultJson Object. + + + + + The identifier for the RolePermissionType_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeDefinition_Encoding_DefaultJson Object. + + + + + The identifier for the StructureField_Encoding_DefaultJson Object. + + + + + The identifier for the StructureDefinition_Encoding_DefaultJson Object. + + + + + The identifier for the EnumDefinition_Encoding_DefaultJson Object. + + + + + The identifier for the Node_Encoding_DefaultJson Object. + + + + + The identifier for the InstanceNode_Encoding_DefaultJson Object. + + + + + The identifier for the TypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the ObjectNode_Encoding_DefaultJson Object. + + + + + The identifier for the ObjectTypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the VariableNode_Encoding_DefaultJson Object. + + + + + The identifier for the VariableTypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the ReferenceTypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the MethodNode_Encoding_DefaultJson Object. + + + + + The identifier for the ViewNode_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeNode_Encoding_DefaultJson Object. + + + + + The identifier for the ReferenceNode_Encoding_DefaultJson Object. + + + + + The identifier for the Argument_Encoding_DefaultJson Object. + + + + + The identifier for the EnumValueType_Encoding_DefaultJson Object. + + + + + The identifier for the EnumField_Encoding_DefaultJson Object. + + + + + The identifier for the OptionSet_Encoding_DefaultJson Object. + + + + + The identifier for the Union_Encoding_DefaultJson Object. + + + + + The identifier for the TimeZoneDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ApplicationDescription_Encoding_DefaultJson Object. + + + + + The identifier for the RequestHeader_Encoding_DefaultJson Object. + + + + + The identifier for the ResponseHeader_Encoding_DefaultJson Object. + + + + + The identifier for the ServiceFault_Encoding_DefaultJson Object. + + + + + The identifier for the SessionlessInvokeRequestType_Encoding_DefaultJson Object. + + + + + The identifier for the SessionlessInvokeResponseType_Encoding_DefaultJson Object. + + + + + The identifier for the FindServersRequest_Encoding_DefaultJson Object. + + + + + The identifier for the FindServersResponse_Encoding_DefaultJson Object. + + + + + The identifier for the ServerOnNetwork_Encoding_DefaultJson Object. + + + + + The identifier for the FindServersOnNetworkRequest_Encoding_DefaultJson Object. + + + + + The identifier for the FindServersOnNetworkResponse_Encoding_DefaultJson Object. + + + + + The identifier for the UserTokenPolicy_Encoding_DefaultJson Object. + + + + + The identifier for the EndpointDescription_Encoding_DefaultJson Object. + + + + + The identifier for the GetEndpointsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the GetEndpointsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the RegisteredServer_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterServerRequest_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterServerResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DiscoveryConfiguration_Encoding_DefaultJson Object. + + + + + The identifier for the MdnsDiscoveryConfiguration_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterServer2Request_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterServer2Response_Encoding_DefaultJson Object. + + + + + The identifier for the ChannelSecurityToken_Encoding_DefaultJson Object. + + + + + The identifier for the OpenSecureChannelRequest_Encoding_DefaultJson Object. + + + + + The identifier for the OpenSecureChannelResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CloseSecureChannelRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CloseSecureChannelResponse_Encoding_DefaultJson Object. + + + + + The identifier for the SignedSoftwareCertificate_Encoding_DefaultJson Object. + + + + + The identifier for the SignatureData_Encoding_DefaultJson Object. + + + + + The identifier for the CreateSessionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CreateSessionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the UserIdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the AnonymousIdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the UserNameIdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the X509IdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the IssuedIdentityToken_Encoding_DefaultJson Object. + + + + + The identifier for the ActivateSessionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the ActivateSessionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CloseSessionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CloseSessionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CancelRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CancelResponse_Encoding_DefaultJson Object. + + + + + The identifier for the NodeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the ObjectAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the VariableAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the MethodAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the ObjectTypeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the VariableTypeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the ReferenceTypeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the DataTypeAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the ViewAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the GenericAttributeValue_Encoding_DefaultJson Object. + + + + + The identifier for the GenericAttributes_Encoding_DefaultJson Object. + + + + + The identifier for the AddNodesItem_Encoding_DefaultJson Object. + + + + + The identifier for the AddNodesResult_Encoding_DefaultJson Object. + + + + + The identifier for the AddNodesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the AddNodesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the AddReferencesItem_Encoding_DefaultJson Object. + + + + + The identifier for the AddReferencesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the AddReferencesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteNodesItem_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteNodesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteNodesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteReferencesItem_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteReferencesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteReferencesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the ViewDescription_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseDescription_Encoding_DefaultJson Object. + + + + + The identifier for the ReferenceDescription_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseResult_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseRequest_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseResponse_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseNextRequest_Encoding_DefaultJson Object. + + + + + The identifier for the BrowseNextResponse_Encoding_DefaultJson Object. + + + + + The identifier for the RelativePathElement_Encoding_DefaultJson Object. + + + + + The identifier for the RelativePath_Encoding_DefaultJson Object. + + + + + The identifier for the BrowsePath_Encoding_DefaultJson Object. + + + + + The identifier for the BrowsePathTarget_Encoding_DefaultJson Object. + + + + + The identifier for the BrowsePathResult_Encoding_DefaultJson Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterNodesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the RegisterNodesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the UnregisterNodesRequest_Encoding_DefaultJson Object. + + + + + The identifier for the UnregisterNodesResponse_Encoding_DefaultJson Object. + + + + + The identifier for the EndpointConfiguration_Encoding_DefaultJson Object. + + + + + The identifier for the QueryDataDescription_Encoding_DefaultJson Object. + + + + + The identifier for the NodeTypeDescription_Encoding_DefaultJson Object. + + + + + The identifier for the QueryDataSet_Encoding_DefaultJson Object. + + + + + The identifier for the NodeReference_Encoding_DefaultJson Object. + + + + + The identifier for the ContentFilterElement_Encoding_DefaultJson Object. + + + + + The identifier for the ContentFilter_Encoding_DefaultJson Object. + + + + + The identifier for the FilterOperand_Encoding_DefaultJson Object. + + + + + The identifier for the ElementOperand_Encoding_DefaultJson Object. + + + + + The identifier for the LiteralOperand_Encoding_DefaultJson Object. + + + + + The identifier for the AttributeOperand_Encoding_DefaultJson Object. + + + + + The identifier for the SimpleAttributeOperand_Encoding_DefaultJson Object. + + + + + The identifier for the ContentFilterElementResult_Encoding_DefaultJson Object. + + + + + The identifier for the ContentFilterResult_Encoding_DefaultJson Object. + + + + + The identifier for the ParsingResult_Encoding_DefaultJson Object. + + + + + The identifier for the QueryFirstRequest_Encoding_DefaultJson Object. + + + + + The identifier for the QueryFirstResponse_Encoding_DefaultJson Object. + + + + + The identifier for the QueryNextRequest_Encoding_DefaultJson Object. + + + + + The identifier for the QueryNextResponse_Encoding_DefaultJson Object. + + + + + The identifier for the ReadValueId_Encoding_DefaultJson Object. + + + + + The identifier for the ReadRequest_Encoding_DefaultJson Object. + + + + + The identifier for the ReadResponse_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadValueId_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadResult_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadEventDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadRawModifiedDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadProcessedDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadAtTimeDetails_Encoding_DefaultJson Object. + + + + + The identifier for the ReadAnnotationDataDetails_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryData_Encoding_DefaultJson Object. + + + + + The identifier for the ModificationInfo_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryModifiedData_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryEvent_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadRequest_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryReadResponse_Encoding_DefaultJson Object. + + + + + The identifier for the WriteValue_Encoding_DefaultJson Object. + + + + + The identifier for the WriteRequest_Encoding_DefaultJson Object. + + + + + The identifier for the WriteResponse_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryUpdateDetails_Encoding_DefaultJson Object. + + + + + The identifier for the UpdateDataDetails_Encoding_DefaultJson Object. + + + + + The identifier for the UpdateStructureDataDetails_Encoding_DefaultJson Object. + + + + + The identifier for the UpdateEventDetails_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteRawModifiedDetails_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteAtTimeDetails_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteEventDetails_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryUpdateResult_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryUpdateRequest_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryUpdateResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CallMethodRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CallMethodResult_Encoding_DefaultJson Object. + + + + + The identifier for the CallRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CallResponse_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoringFilter_Encoding_DefaultJson Object. + + + + + The identifier for the DataChangeFilter_Encoding_DefaultJson Object. + + + + + The identifier for the EventFilter_Encoding_DefaultJson Object. + + + + + The identifier for the AggregateConfiguration_Encoding_DefaultJson Object. + + + + + The identifier for the AggregateFilter_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoringFilterResult_Encoding_DefaultJson Object. + + + + + The identifier for the EventFilterResult_Encoding_DefaultJson Object. + + + + + The identifier for the AggregateFilterResult_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoringParameters_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemCreateRequest_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemCreateResult_Encoding_DefaultJson Object. + + + + + The identifier for the CreateMonitoredItemsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CreateMonitoredItemsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemModifyRequest_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemModifyResult_Encoding_DefaultJson Object. + + + + + The identifier for the ModifyMonitoredItemsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the ModifyMonitoredItemsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the SetMonitoringModeRequest_Encoding_DefaultJson Object. + + + + + The identifier for the SetMonitoringModeResponse_Encoding_DefaultJson Object. + + + + + The identifier for the SetTriggeringRequest_Encoding_DefaultJson Object. + + + + + The identifier for the SetTriggeringResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteMonitoredItemsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteMonitoredItemsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the CreateSubscriptionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the CreateSubscriptionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the ModifySubscriptionRequest_Encoding_DefaultJson Object. + + + + + The identifier for the ModifySubscriptionResponse_Encoding_DefaultJson Object. + + + + + The identifier for the SetPublishingModeRequest_Encoding_DefaultJson Object. + + + + + The identifier for the SetPublishingModeResponse_Encoding_DefaultJson Object. + + + + + The identifier for the NotificationMessage_Encoding_DefaultJson Object. + + + + + The identifier for the NotificationData_Encoding_DefaultJson Object. + + + + + The identifier for the DataChangeNotification_Encoding_DefaultJson Object. + + + + + The identifier for the MonitoredItemNotification_Encoding_DefaultJson Object. + + + + + The identifier for the EventNotificationList_Encoding_DefaultJson Object. + + + + + The identifier for the EventFieldList_Encoding_DefaultJson Object. + + + + + The identifier for the HistoryEventFieldList_Encoding_DefaultJson Object. + + + + + The identifier for the StatusChangeNotification_Encoding_DefaultJson Object. + + + + + The identifier for the SubscriptionAcknowledgement_Encoding_DefaultJson Object. + + + + + The identifier for the PublishRequest_Encoding_DefaultJson Object. + + + + + The identifier for the PublishResponse_Encoding_DefaultJson Object. + + + + + The identifier for the RepublishRequest_Encoding_DefaultJson Object. + + + + + The identifier for the RepublishResponse_Encoding_DefaultJson Object. + + + + + The identifier for the TransferResult_Encoding_DefaultJson Object. + + + + + The identifier for the TransferSubscriptionsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the TransferSubscriptionsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteSubscriptionsRequest_Encoding_DefaultJson Object. + + + + + The identifier for the DeleteSubscriptionsResponse_Encoding_DefaultJson Object. + + + + + The identifier for the BuildInfo_Encoding_DefaultJson Object. + + + + + The identifier for the RedundantServerDataType_Encoding_DefaultJson Object. + + + + + The identifier for the EndpointUrlListDataType_Encoding_DefaultJson Object. + + + + + The identifier for the NetworkGroupDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SamplingIntervalDiagnosticsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ServerDiagnosticsSummaryDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ServerStatusDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SessionDiagnosticsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SessionSecurityDiagnosticsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ServiceCounterDataType_Encoding_DefaultJson Object. + + + + + The identifier for the StatusResult_Encoding_DefaultJson Object. + + + + + The identifier for the SubscriptionDiagnosticsDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ModelChangeStructureDataType_Encoding_DefaultJson Object. + + + + + The identifier for the SemanticChangeStructureDataType_Encoding_DefaultJson Object. + + + + + The identifier for the Range_Encoding_DefaultJson Object. + + + + + The identifier for the EUInformation_Encoding_DefaultJson Object. + + + + + The identifier for the ComplexNumberType_Encoding_DefaultJson Object. + + + + + The identifier for the DoubleComplexNumberType_Encoding_DefaultJson Object. + + + + + The identifier for the AxisInformation_Encoding_DefaultJson Object. + + + + + The identifier for the XVType_Encoding_DefaultJson Object. + + + + + The identifier for the ProgramDiagnosticDataType_Encoding_DefaultJson Object. + + + + + The identifier for the ProgramDiagnostic2DataType_Encoding_DefaultJson Object. + + + + + The identifier for the Annotation_Encoding_DefaultJson Object. + + + + + A class that declares constants for all ObjectTypes in the Model Design. + + + + + + The identifier for the BaseObjectType ObjectType. + + + + + The identifier for the FolderType ObjectType. + + + + + The identifier for the DataTypeSystemType ObjectType. + + + + + The identifier for the DataTypeEncodingType ObjectType. + + + + + The identifier for the ModellingRuleType ObjectType. + + + + + The identifier for the ServerType ObjectType. + + + + + The identifier for the ServerCapabilitiesType ObjectType. + + + + + The identifier for the ServerDiagnosticsType ObjectType. + + + + + The identifier for the SessionsDiagnosticsSummaryType ObjectType. + + + + + The identifier for the SessionDiagnosticsObjectType ObjectType. + + + + + The identifier for the VendorServerInfoType ObjectType. + + + + + The identifier for the ServerRedundancyType ObjectType. + + + + + The identifier for the TransparentRedundancyType ObjectType. + + + + + The identifier for the NonTransparentRedundancyType ObjectType. + + + + + The identifier for the NonTransparentNetworkRedundancyType ObjectType. + + + + + The identifier for the OperationLimitsType ObjectType. + + + + + The identifier for the FileType ObjectType. + + + + + The identifier for the AddressSpaceFileType ObjectType. + + + + + The identifier for the NamespaceMetadataType ObjectType. + + + + + The identifier for the NamespacesType ObjectType. + + + + + The identifier for the BaseEventType ObjectType. + + + + + The identifier for the AuditEventType ObjectType. + + + + + The identifier for the AuditSecurityEventType ObjectType. + + + + + The identifier for the AuditChannelEventType ObjectType. + + + + + The identifier for the AuditOpenSecureChannelEventType ObjectType. + + + + + The identifier for the AuditSessionEventType ObjectType. + + + + + The identifier for the AuditCreateSessionEventType ObjectType. + + + + + The identifier for the AuditUrlMismatchEventType ObjectType. + + + + + The identifier for the AuditActivateSessionEventType ObjectType. + + + + + The identifier for the AuditCancelEventType ObjectType. + + + + + The identifier for the AuditCertificateEventType ObjectType. + + + + + The identifier for the AuditCertificateDataMismatchEventType ObjectType. + + + + + The identifier for the AuditCertificateExpiredEventType ObjectType. + + + + + The identifier for the AuditCertificateInvalidEventType ObjectType. + + + + + The identifier for the AuditCertificateUntrustedEventType ObjectType. + + + + + The identifier for the AuditCertificateRevokedEventType ObjectType. + + + + + The identifier for the AuditCertificateMismatchEventType ObjectType. + + + + + The identifier for the AuditNodeManagementEventType ObjectType. + + + + + The identifier for the AuditAddNodesEventType ObjectType. + + + + + The identifier for the AuditDeleteNodesEventType ObjectType. + + + + + The identifier for the AuditAddReferencesEventType ObjectType. + + + + + The identifier for the AuditDeleteReferencesEventType ObjectType. + + + + + The identifier for the AuditUpdateEventType ObjectType. + + + + + The identifier for the AuditWriteUpdateEventType ObjectType. + + + + + The identifier for the AuditHistoryUpdateEventType ObjectType. + + + + + The identifier for the AuditUpdateMethodEventType ObjectType. + + + + + The identifier for the SystemEventType ObjectType. + + + + + The identifier for the DeviceFailureEventType ObjectType. + + + + + The identifier for the SystemStatusChangeEventType ObjectType. + + + + + The identifier for the BaseModelChangeEventType ObjectType. + + + + + The identifier for the GeneralModelChangeEventType ObjectType. + + + + + The identifier for the SemanticChangeEventType ObjectType. + + + + + The identifier for the EventQueueOverflowEventType ObjectType. + + + + + The identifier for the ProgressEventType ObjectType. + + + + + The identifier for the AggregateFunctionType ObjectType. + + + + + The identifier for the StateMachineType ObjectType. + + + + + The identifier for the FiniteStateMachineType ObjectType. + + + + + The identifier for the StateType ObjectType. + + + + + The identifier for the InitialStateType ObjectType. + + + + + The identifier for the TransitionType ObjectType. + + + + + The identifier for the ChoiceStateType ObjectType. + + + + + The identifier for the TransitionEventType ObjectType. + + + + + The identifier for the AuditUpdateStateEventType ObjectType. + + + + + The identifier for the FileDirectoryType ObjectType. + + + + + The identifier for the TemporaryFileTransferType ObjectType. + + + + + The identifier for the FileTransferStateMachineType ObjectType. + + + + + The identifier for the RoleSetType ObjectType. + + + + + The identifier for the RoleType ObjectType. + + + + + The identifier for the RoleMappingRuleChangedAuditEventType ObjectType. + + + + + The identifier for the DictionaryEntryType ObjectType. + + + + + The identifier for the DictionaryFolderType ObjectType. + + + + + The identifier for the IrdiDictionaryEntryType ObjectType. + + + + + The identifier for the UriDictionaryEntryType ObjectType. + + + + + The identifier for the BaseInterfaceType ObjectType. + + + + + The identifier for the IOrderedObjectType ObjectType. + + + + + The identifier for the OrderedListType ObjectType. + + + + + The identifier for the ConditionType ObjectType. + + + + + The identifier for the DialogConditionType ObjectType. + + + + + The identifier for the AcknowledgeableConditionType ObjectType. + + + + + The identifier for the AlarmConditionType ObjectType. + + + + + The identifier for the AlarmGroupType ObjectType. + + + + + The identifier for the ShelvedStateMachineType ObjectType. + + + + + The identifier for the LimitAlarmType ObjectType. + + + + + The identifier for the ExclusiveLimitStateMachineType ObjectType. + + + + + The identifier for the ExclusiveLimitAlarmType ObjectType. + + + + + The identifier for the NonExclusiveLimitAlarmType ObjectType. + + + + + The identifier for the NonExclusiveLevelAlarmType ObjectType. + + + + + The identifier for the ExclusiveLevelAlarmType ObjectType. + + + + + The identifier for the NonExclusiveDeviationAlarmType ObjectType. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType ObjectType. + + + + + The identifier for the ExclusiveDeviationAlarmType ObjectType. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType ObjectType. + + + + + The identifier for the DiscreteAlarmType ObjectType. + + + + + The identifier for the OffNormalAlarmType ObjectType. + + + + + The identifier for the SystemOffNormalAlarmType ObjectType. + + + + + The identifier for the TripAlarmType ObjectType. + + + + + The identifier for the InstrumentDiagnosticAlarmType ObjectType. + + + + + The identifier for the SystemDiagnosticAlarmType ObjectType. + + + + + The identifier for the CertificateExpirationAlarmType ObjectType. + + + + + The identifier for the DiscrepancyAlarmType ObjectType. + + + + + The identifier for the BaseConditionClassType ObjectType. + + + + + The identifier for the ProcessConditionClassType ObjectType. + + + + + The identifier for the MaintenanceConditionClassType ObjectType. + + + + + The identifier for the SystemConditionClassType ObjectType. + + + + + The identifier for the SafetyConditionClassType ObjectType. + + + + + The identifier for the HighlyManagedAlarmConditionClassType ObjectType. + + + + + The identifier for the TrainingConditionClassType ObjectType. + + + + + The identifier for the StatisticalConditionClassType ObjectType. + + + + + The identifier for the TestingConditionSubClassType ObjectType. + + + + + The identifier for the AuditConditionEventType ObjectType. + + + + + The identifier for the AuditConditionEnableEventType ObjectType. + + + + + The identifier for the AuditConditionCommentEventType ObjectType. + + + + + The identifier for the AuditConditionRespondEventType ObjectType. + + + + + The identifier for the AuditConditionAcknowledgeEventType ObjectType. + + + + + The identifier for the AuditConditionConfirmEventType ObjectType. + + + + + The identifier for the AuditConditionShelvingEventType ObjectType. + + + + + The identifier for the AuditConditionSuppressionEventType ObjectType. + + + + + The identifier for the AuditConditionSilenceEventType ObjectType. + + + + + The identifier for the AuditConditionResetEventType ObjectType. + + + + + The identifier for the AuditConditionOutOfServiceEventType ObjectType. + + + + + The identifier for the RefreshStartEventType ObjectType. + + + + + The identifier for the RefreshEndEventType ObjectType. + + + + + The identifier for the RefreshRequiredEventType ObjectType. + + + + + The identifier for the AlarmMetricsType ObjectType. + + + + + The identifier for the ProgramStateMachineType ObjectType. + + + + + The identifier for the ProgramTransitionEventType ObjectType. + + + + + The identifier for the AuditProgramTransitionEventType ObjectType. + + + + + The identifier for the ProgramTransitionAuditEventType ObjectType. + + + + + The identifier for the HistoricalDataConfigurationType ObjectType. + + + + + The identifier for the HistoryServerCapabilitiesType ObjectType. + + + + + The identifier for the AuditHistoryEventUpdateEventType ObjectType. + + + + + The identifier for the AuditHistoryValueUpdateEventType ObjectType. + + + + + The identifier for the AuditHistoryAnnotationUpdateEventType ObjectType. + + + + + The identifier for the AuditHistoryDeleteEventType ObjectType. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType ObjectType. + + + + + The identifier for the AuditHistoryAtTimeDeleteEventType ObjectType. + + + + + The identifier for the AuditHistoryEventDeleteEventType ObjectType. + + + + + The identifier for the TrustListType ObjectType. + + + + + The identifier for the TrustListOutOfDateAlarmType ObjectType. + + + + + The identifier for the CertificateGroupType ObjectType. + + + + + The identifier for the CertificateGroupFolderType ObjectType. + + + + + The identifier for the CertificateType ObjectType. + + + + + The identifier for the ApplicationCertificateType ObjectType. + + + + + The identifier for the HttpsCertificateType ObjectType. + + + + + The identifier for the UserCredentialCertificateType ObjectType. + + + + + The identifier for the RsaMinApplicationCertificateType ObjectType. + + + + + The identifier for the RsaSha256ApplicationCertificateType ObjectType. + + + + + The identifier for the TrustListUpdatedAuditEventType ObjectType. + + + + + The identifier for the ServerConfigurationType ObjectType. + + + + + The identifier for the CertificateUpdatedAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialConfigurationFolderType ObjectType. + + + + + The identifier for the KeyCredentialConfigurationType ObjectType. + + + + + The identifier for the KeyCredentialAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialUpdatedAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialDeletedAuditEventType ObjectType. + + + + + The identifier for the AuthorizationServiceConfigurationType ObjectType. + + + + + The identifier for the AggregateConfigurationType ObjectType. + + + + + The identifier for the PubSubKeyServiceType ObjectType. + + + + + The identifier for the SecurityGroupFolderType ObjectType. + + + + + The identifier for the SecurityGroupType ObjectType. + + + + + The identifier for the PublishSubscribeType ObjectType. + + + + + The identifier for the PublishedDataSetType ObjectType. + + + + + The identifier for the ExtensionFieldsType ObjectType. + + + + + The identifier for the PublishedDataItemsType ObjectType. + + + + + The identifier for the PublishedEventsType ObjectType. + + + + + The identifier for the DataSetFolderType ObjectType. + + + + + The identifier for the PubSubConnectionType ObjectType. + + + + + The identifier for the ConnectionTransportType ObjectType. + + + + + The identifier for the PubSubGroupType ObjectType. + + + + + The identifier for the WriterGroupType ObjectType. + + + + + The identifier for the WriterGroupTransportType ObjectType. + + + + + The identifier for the WriterGroupMessageType ObjectType. + + + + + The identifier for the ReaderGroupType ObjectType. + + + + + The identifier for the ReaderGroupTransportType ObjectType. + + + + + The identifier for the ReaderGroupMessageType ObjectType. + + + + + The identifier for the DataSetWriterType ObjectType. + + + + + The identifier for the DataSetWriterTransportType ObjectType. + + + + + The identifier for the DataSetWriterMessageType ObjectType. + + + + + The identifier for the DataSetReaderType ObjectType. + + + + + The identifier for the DataSetReaderTransportType ObjectType. + + + + + The identifier for the DataSetReaderMessageType ObjectType. + + + + + The identifier for the SubscribedDataSetType ObjectType. + + + + + The identifier for the TargetVariablesType ObjectType. + + + + + The identifier for the SubscribedDataSetMirrorType ObjectType. + + + + + The identifier for the PubSubStatusType ObjectType. + + + + + The identifier for the PubSubDiagnosticsType ObjectType. + + + + + The identifier for the PubSubDiagnosticsRootType ObjectType. + + + + + The identifier for the PubSubDiagnosticsConnectionType ObjectType. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType ObjectType. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType ObjectType. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType ObjectType. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType ObjectType. + + + + + The identifier for the PubSubStatusEventType ObjectType. + + + + + The identifier for the PubSubTransportLimitsExceedEventType ObjectType. + + + + + The identifier for the PubSubCommunicationFailureEventType ObjectType. + + + + + The identifier for the UadpWriterGroupMessageType ObjectType. + + + + + The identifier for the UadpDataSetWriterMessageType ObjectType. + + + + + The identifier for the UadpDataSetReaderMessageType ObjectType. + + + + + The identifier for the JsonWriterGroupMessageType ObjectType. + + + + + The identifier for the JsonDataSetWriterMessageType ObjectType. + + + + + The identifier for the JsonDataSetReaderMessageType ObjectType. + + + + + The identifier for the DatagramConnectionTransportType ObjectType. + + + + + The identifier for the DatagramWriterGroupTransportType ObjectType. + + + + + The identifier for the BrokerConnectionTransportType ObjectType. + + + + + The identifier for the BrokerWriterGroupTransportType ObjectType. + + + + + The identifier for the BrokerDataSetWriterTransportType ObjectType. + + + + + The identifier for the BrokerDataSetReaderTransportType ObjectType. + + + + + The identifier for the NetworkAddressType ObjectType. + + + + + The identifier for the NetworkAddressUrlType ObjectType. + + + + + The identifier for the AliasNameType ObjectType. + + + + + The identifier for the AliasNameCategoryType ObjectType. + + + + + A class that declares constants for all ReferenceTypes in the Model Design. + + + + + + The identifier for the References ReferenceType. + + + + + The identifier for the NonHierarchicalReferences ReferenceType. + + + + + The identifier for the HierarchicalReferences ReferenceType. + + + + + The identifier for the HasChild ReferenceType. + + + + + The identifier for the Organizes ReferenceType. + + + + + The identifier for the HasEventSource ReferenceType. + + + + + The identifier for the HasModellingRule ReferenceType. + + + + + The identifier for the HasEncoding ReferenceType. + + + + + The identifier for the HasDescription ReferenceType. + + + + + The identifier for the HasTypeDefinition ReferenceType. + + + + + The identifier for the GeneratesEvent ReferenceType. + + + + + The identifier for the AlwaysGeneratesEvent ReferenceType. + + + + + The identifier for the Aggregates ReferenceType. + + + + + The identifier for the HasSubtype ReferenceType. + + + + + The identifier for the HasProperty ReferenceType. + + + + + The identifier for the HasComponent ReferenceType. + + + + + The identifier for the HasNotifier ReferenceType. + + + + + The identifier for the HasOrderedComponent ReferenceType. + + + + + The identifier for the FromState ReferenceType. + + + + + The identifier for the ToState ReferenceType. + + + + + The identifier for the HasCause ReferenceType. + + + + + The identifier for the HasEffect ReferenceType. + + + + + The identifier for the HasSubStateMachine ReferenceType. + + + + + The identifier for the HasHistoricalConfiguration ReferenceType. + + + + + The identifier for the HasArgumentDescription ReferenceType. + + + + + The identifier for the HasOptionalInputArgumentDescription ReferenceType. + + + + + The identifier for the HasGuard ReferenceType. + + + + + The identifier for the HasDictionaryEntry ReferenceType. + + + + + The identifier for the HasInterface ReferenceType. + + + + + The identifier for the HasAddIn ReferenceType. + + + + + The identifier for the HasTrueSubState ReferenceType. + + + + + The identifier for the HasFalseSubState ReferenceType. + + + + + The identifier for the HasAlarmSuppressionGroup ReferenceType. + + + + + The identifier for the AlarmGroupMember ReferenceType. + + + + + The identifier for the HasCondition ReferenceType. + + + + + The identifier for the HasEffectDisable ReferenceType. + + + + + The identifier for the HasEffectEnable ReferenceType. + + + + + The identifier for the HasEffectSuppressed ReferenceType. + + + + + The identifier for the HasEffectUnsuppressed ReferenceType. + + + + + The identifier for the HasPubSubConnection ReferenceType. + + + + + The identifier for the DataSetToWriter ReferenceType. + + + + + The identifier for the HasDataSetWriter ReferenceType. + + + + + The identifier for the HasWriterGroup ReferenceType. + + + + + The identifier for the HasDataSetReader ReferenceType. + + + + + The identifier for the HasReaderGroup ReferenceType. + + + + + The identifier for the AliasFor ReferenceType. + + + + + A class that declares constants for all Variables in the Model Design. + + + + + + The identifier for the DataTypeDescriptionType_DataTypeVersion Variable. + + + + + The identifier for the DataTypeDescriptionType_DictionaryFragment Variable. + + + + + The identifier for the DataTypeDictionaryType_DataTypeVersion Variable. + + + + + The identifier for the DataTypeDictionaryType_NamespaceUri Variable. + + + + + The identifier for the DataTypeDictionaryType_Deprecated Variable. + + + + + The identifier for the NamingRuleType_EnumValues Variable. + + + + + The identifier for the ModellingRuleType_NamingRule Variable. + + + + + The identifier for the ModellingRule_Mandatory_NamingRule Variable. + + + + + The identifier for the ModellingRule_Optional_NamingRule Variable. + + + + + The identifier for the ModellingRule_ExposesItsArray_NamingRule Variable. + + + + + The identifier for the ModellingRule_OptionalPlaceholder_NamingRule Variable. + + + + + The identifier for the ModellingRule_MandatoryPlaceholder_NamingRule Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceUri Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceVersion Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespacePublicationDate Variable. + + + + + The identifier for the OPCUANamespaceMetadata_IsNamespaceSubset Variable. + + + + + The identifier for the OPCUANamespaceMetadata_StaticNodeIdTypes Variable. + + + + + The identifier for the OPCUANamespaceMetadata_StaticNumericNodeIdRange Variable. + + + + + The identifier for the OPCUANamespaceMetadata_StaticStringNodeIdPattern Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Size Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Writable Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_UserWritable Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_OpenCount Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Open_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Open_OutputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Close_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Read_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Read_OutputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_Write_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_GetPosition_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_GetPosition_OutputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_NamespaceFile_SetPosition_InputArguments Variable. + + + + + The identifier for the OPCUANamespaceMetadata_DefaultRolePermissions Variable. + + + + + The identifier for the OPCUANamespaceMetadata_DefaultUserRolePermissions Variable. + + + + + The identifier for the OPCUANamespaceMetadata_DefaultAccessRestrictions Variable. + + + + + The identifier for the NodeVersion Variable. + + + + + The identifier for the ViewVersion Variable. + + + + + The identifier for the Icon Variable. + + + + + The identifier for the LocalTime Variable. + + + + + The identifier for the AllowNulls Variable. + + + + + The identifier for the ValueAsText Variable. + + + + + The identifier for the MaxStringLength Variable. + + + + + The identifier for the MaxCharacters Variable. + + + + + The identifier for the MaxByteStringLength Variable. + + + + + The identifier for the MaxArrayLength Variable. + + + + + The identifier for the EngineeringUnits Variable. + + + + + The identifier for the EnumStrings Variable. + + + + + The identifier for the EnumValues Variable. + + + + + The identifier for the OptionSetValues Variable. + + + + + The identifier for the InputArguments Variable. + + + + + The identifier for the OutputArguments Variable. + + + + + The identifier for the DefaultInputValues Variable. + + + + + The identifier for the DefaultInstanceBrowseName Variable. + + + + + The identifier for the ServerType_ServerArray Variable. + + + + + The identifier for the ServerType_NamespaceArray Variable. + + + + + The identifier for the ServerType_UrisVersion Variable. + + + + + The identifier for the ServerType_ServerStatus Variable. + + + + + The identifier for the ServerType_ServerStatus_StartTime Variable. + + + + + The identifier for the ServerType_ServerStatus_CurrentTime Variable. + + + + + The identifier for the ServerType_ServerStatus_State Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_ProductUri Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_ManufacturerName Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_ProductName Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_SoftwareVersion Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_BuildNumber Variable. + + + + + The identifier for the ServerType_ServerStatus_BuildInfo_BuildDate Variable. + + + + + The identifier for the ServerType_ServerStatus_SecondsTillShutdown Variable. + + + + + The identifier for the ServerType_ServerStatus_ShutdownReason Variable. + + + + + The identifier for the ServerType_ServiceLevel Variable. + + + + + The identifier for the ServerType_Auditing Variable. + + + + + The identifier for the ServerType_EstimatedReturnTime Variable. + + + + + The identifier for the ServerType_LocalTime Variable. + + + + + The identifier for the ServerType_ServerCapabilities_ServerProfileArray Variable. + + + + + The identifier for the ServerType_ServerCapabilities_LocaleIdArray Variable. + + + + + The identifier for the ServerType_ServerCapabilities_MinSupportedSampleRate Variable. + + + + + The identifier for the ServerType_ServerCapabilities_MaxBrowseContinuationPoints Variable. + + + + + The identifier for the ServerType_ServerCapabilities_MaxQueryContinuationPoints Variable. + + + + + The identifier for the ServerType_ServerCapabilities_MaxHistoryContinuationPoints Variable. + + + + + The identifier for the ServerType_ServerCapabilities_SoftwareCertificates Variable. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_AddRole_InputArguments Variable. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_AddRole_OutputArguments Variable. + + + + + The identifier for the ServerType_ServerCapabilities_RoleSet_RemoveRole_InputArguments Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_ServerViewCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSessionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSessionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedSessionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_RejectedSessionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_SessionTimeoutCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_SessionAbortCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_PublishingIntervalCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSubscriptionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSubscriptionCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedRequestsCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_ServerDiagnosticsSummary_RejectedRequestsCount Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_SessionsDiagnosticsSummary_SessionDiagnosticsArray Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_SessionsDiagnosticsSummary_SessionSecurityDiagnosticsArray Variable. + + + + + The identifier for the ServerType_ServerDiagnostics_EnabledFlag Variable. + + + + + The identifier for the ServerType_ServerRedundancy_RedundancySupport Variable. + + + + + The identifier for the ServerType_GetMonitoredItems_InputArguments Variable. + + + + + The identifier for the ServerType_GetMonitoredItems_OutputArguments Variable. + + + + + The identifier for the ServerType_ResendData_InputArguments Variable. + + + + + The identifier for the ServerType_SetSubscriptionDurable_InputArguments Variable. + + + + + The identifier for the ServerType_SetSubscriptionDurable_OutputArguments Variable. + + + + + The identifier for the ServerType_RequestServerStateChange_InputArguments Variable. + + + + + The identifier for the ServerCapabilitiesType_ServerProfileArray Variable. + + + + + The identifier for the ServerCapabilitiesType_LocaleIdArray Variable. + + + + + The identifier for the ServerCapabilitiesType_MinSupportedSampleRate Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxBrowseContinuationPoints Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxQueryContinuationPoints Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxHistoryContinuationPoints Variable. + + + + + The identifier for the ServerCapabilitiesType_SoftwareCertificates Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxArrayLength Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxStringLength Variable. + + + + + The identifier for the ServerCapabilitiesType_MaxByteStringLength Variable. + + + + + The identifier for the ServerCapabilitiesType_VendorCapability_Placeholder Variable. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_AddRole_InputArguments Variable. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_AddRole_OutputArguments Variable. + + + + + The identifier for the ServerCapabilitiesType_RoleSet_RemoveRole_InputArguments Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_ServerViewCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_CurrentSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_CumulatedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_SecurityRejectedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_RejectedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_SessionTimeoutCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_SessionAbortCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_PublishingIntervalCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_CurrentSubscriptionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_CumulatedSubscriptionCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_SecurityRejectedRequestsCount Variable. + + + + + The identifier for the ServerDiagnosticsType_ServerDiagnosticsSummary_RejectedRequestsCount Variable. + + + + + The identifier for the ServerDiagnosticsType_SamplingIntervalDiagnosticsArray Variable. + + + + + The identifier for the ServerDiagnosticsType_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the ServerDiagnosticsType_SessionsDiagnosticsSummary_SessionDiagnosticsArray Variable. + + + + + The identifier for the ServerDiagnosticsType_SessionsDiagnosticsSummary_SessionSecurityDiagnosticsArray Variable. + + + + + The identifier for the ServerDiagnosticsType_EnabledFlag Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_SessionDiagnosticsArray Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_SessionSecurityDiagnosticsArray Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SessionId Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SessionName Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientDescription Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ServerUri Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_EndpointUrl Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_LocaleIds Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ActualSessionTimeout Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_MaxResponseMessageSize Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientConnectionTime Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientLastContactTime Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentSubscriptionsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentMonitoredItemsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentPublishRequestsInQueue Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TotalRequestCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_UnauthorizedRequestCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ReadCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_HistoryReadCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_WriteCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_HistoryUpdateCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CallCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CreateMonitoredItemsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ModifyMonitoredItemsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetMonitoringModeCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetTriggeringCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteMonitoredItemsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CreateSubscriptionCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ModifySubscriptionCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetPublishingModeCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_PublishCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_RepublishCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TransferSubscriptionsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteSubscriptionsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_AddNodesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_AddReferencesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteNodesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteReferencesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_BrowseCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_BrowseNextCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TranslateBrowsePathsToNodeIdsCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_QueryFirstCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_QueryNextCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_RegisterNodesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_UnregisterNodesCount Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SessionId Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientUserIdOfSession Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientUserIdHistory Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_AuthenticationMechanism Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_Encoding Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_TransportProtocol Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SecurityMode Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SecurityPolicyUri Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientCertificate Variable. + + + + + The identifier for the SessionsDiagnosticsSummaryType_ClientName_Placeholder_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SessionId Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SessionName Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ClientDescription Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ServerUri Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_EndpointUrl Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_LocaleIds Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ActualSessionTimeout Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_MaxResponseMessageSize Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ClientConnectionTime Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ClientLastContactTime Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CurrentSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CurrentMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CurrentPublishRequestsInQueue Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_TotalRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_UnauthorizedRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ReadCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_HistoryReadCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_WriteCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_HistoryUpdateCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CallCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CreateMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ModifyMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SetMonitoringModeCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SetTriggeringCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_DeleteMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_CreateSubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_ModifySubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_SetPublishingModeCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_PublishCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_RepublishCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_TransferSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_DeleteSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_AddNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_AddReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_DeleteNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_DeleteReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_BrowseCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_BrowseNextCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_TranslateBrowsePathsToNodeIdsCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_QueryFirstCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_QueryNextCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_RegisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionDiagnostics_UnregisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_SessionId Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_ClientUserIdOfSession Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_ClientUserIdHistory Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_AuthenticationMechanism Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_Encoding Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_TransportProtocol Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_SecurityMode Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_SecurityPolicyUri Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SessionSecurityDiagnostics_ClientCertificate Variable. + + + + + The identifier for the SessionDiagnosticsObjectType_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the ServerRedundancyType_RedundancySupport Variable. + + + + + The identifier for the TransparentRedundancyType_CurrentServerId Variable. + + + + + The identifier for the TransparentRedundancyType_RedundantServerArray Variable. + + + + + The identifier for the NonTransparentRedundancyType_ServerUriArray Variable. + + + + + The identifier for the NonTransparentNetworkRedundancyType_ServerNetworkGroups Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerRead Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerHistoryReadData Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerHistoryReadEvents Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerWrite Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerHistoryUpdateData Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerHistoryUpdateEvents Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerMethodCall Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerBrowse Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerRegisterNodes Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerTranslateBrowsePathsToNodeIds Variable. + + + + + The identifier for the OperationLimitsType_MaxNodesPerNodeManagement Variable. + + + + + The identifier for the OperationLimitsType_MaxMonitoredItemsPerCall Variable. + + + + + The identifier for the FileType_Size Variable. + + + + + The identifier for the FileType_Writable Variable. + + + + + The identifier for the FileType_UserWritable Variable. + + + + + The identifier for the FileType_OpenCount Variable. + + + + + The identifier for the FileType_MimeType Variable. + + + + + The identifier for the FileType_Open_InputArguments Variable. + + + + + The identifier for the FileType_Open_OutputArguments Variable. + + + + + The identifier for the FileType_Close_InputArguments Variable. + + + + + The identifier for the FileType_Read_InputArguments Variable. + + + + + The identifier for the FileType_Read_OutputArguments Variable. + + + + + The identifier for the FileType_Write_InputArguments Variable. + + + + + The identifier for the FileType_GetPosition_InputArguments Variable. + + + + + The identifier for the FileType_GetPosition_OutputArguments Variable. + + + + + The identifier for the FileType_SetPosition_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Open_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Open_OutputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Close_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Read_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Read_OutputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_Write_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_GetPosition_InputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_GetPosition_OutputArguments Variable. + + + + + The identifier for the AddressSpaceFileType_SetPosition_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceUri Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceVersion Variable. + + + + + The identifier for the NamespaceMetadataType_NamespacePublicationDate Variable. + + + + + The identifier for the NamespaceMetadataType_IsNamespaceSubset Variable. + + + + + The identifier for the NamespaceMetadataType_StaticNodeIdTypes Variable. + + + + + The identifier for the NamespaceMetadataType_StaticNumericNodeIdRange Variable. + + + + + The identifier for the NamespaceMetadataType_StaticStringNodeIdPattern Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Size Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Writable Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_UserWritable Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_OpenCount Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Open_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Open_OutputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Close_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Read_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Read_OutputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_Write_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_GetPosition_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_GetPosition_OutputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_NamespaceFile_SetPosition_InputArguments Variable. + + + + + The identifier for the NamespaceMetadataType_DefaultRolePermissions Variable. + + + + + The identifier for the NamespaceMetadataType_DefaultUserRolePermissions Variable. + + + + + The identifier for the NamespaceMetadataType_DefaultAccessRestrictions Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceUri Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceVersion Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespacePublicationDate Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_IsNamespaceSubset Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_StaticNodeIdTypes Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_StaticNumericNodeIdRange Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_StaticStringNodeIdPattern Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Size Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Writable Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_UserWritable Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_OpenCount Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Open_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Open_OutputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Close_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Read_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Read_OutputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Write_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition_InputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition_OutputArguments Variable. + + + + + The identifier for the NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_SetPosition_InputArguments Variable. + + + + + The identifier for the BaseEventType_EventId Variable. + + + + + The identifier for the BaseEventType_EventType Variable. + + + + + The identifier for the BaseEventType_SourceNode Variable. + + + + + The identifier for the BaseEventType_SourceName Variable. + + + + + The identifier for the BaseEventType_Time Variable. + + + + + The identifier for the BaseEventType_ReceiveTime Variable. + + + + + The identifier for the BaseEventType_LocalTime Variable. + + + + + The identifier for the BaseEventType_Message Variable. + + + + + The identifier for the BaseEventType_Severity Variable. + + + + + The identifier for the AuditEventType_ActionTimeStamp Variable. + + + + + The identifier for the AuditEventType_Status Variable. + + + + + The identifier for the AuditEventType_ServerId Variable. + + + + + The identifier for the AuditEventType_ClientAuditEntryId Variable. + + + + + The identifier for the AuditEventType_ClientUserId Variable. + + + + + The identifier for the AuditSecurityEventType_StatusCodeId Variable. + + + + + The identifier for the AuditChannelEventType_SecureChannelId Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_ClientCertificate Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_ClientCertificateThumbprint Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_RequestType Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_SecurityPolicyUri Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_SecurityMode Variable. + + + + + The identifier for the AuditOpenSecureChannelEventType_RequestedLifetime Variable. + + + + + The identifier for the AuditSessionEventType_SessionId Variable. + + + + + The identifier for the AuditCreateSessionEventType_SecureChannelId Variable. + + + + + The identifier for the AuditCreateSessionEventType_ClientCertificate Variable. + + + + + The identifier for the AuditCreateSessionEventType_ClientCertificateThumbprint Variable. + + + + + The identifier for the AuditCreateSessionEventType_RevisedSessionTimeout Variable. + + + + + The identifier for the AuditUrlMismatchEventType_EndpointUrl Variable. + + + + + The identifier for the AuditActivateSessionEventType_ClientSoftwareCertificates Variable. + + + + + The identifier for the AuditActivateSessionEventType_UserIdentityToken Variable. + + + + + The identifier for the AuditActivateSessionEventType_SecureChannelId Variable. + + + + + The identifier for the AuditCancelEventType_RequestHandle Variable. + + + + + The identifier for the AuditCertificateEventType_Certificate Variable. + + + + + The identifier for the AuditCertificateDataMismatchEventType_InvalidHostname Variable. + + + + + The identifier for the AuditCertificateDataMismatchEventType_InvalidUri Variable. + + + + + The identifier for the AuditAddNodesEventType_NodesToAdd Variable. + + + + + The identifier for the AuditDeleteNodesEventType_NodesToDelete Variable. + + + + + The identifier for the AuditAddReferencesEventType_ReferencesToAdd Variable. + + + + + The identifier for the AuditDeleteReferencesEventType_ReferencesToDelete Variable. + + + + + The identifier for the AuditWriteUpdateEventType_AttributeId Variable. + + + + + The identifier for the AuditWriteUpdateEventType_IndexRange Variable. + + + + + The identifier for the AuditWriteUpdateEventType_OldValue Variable. + + + + + The identifier for the AuditWriteUpdateEventType_NewValue Variable. + + + + + The identifier for the AuditHistoryUpdateEventType_ParameterDataTypeId Variable. + + + + + The identifier for the AuditUpdateMethodEventType_MethodId Variable. + + + + + The identifier for the AuditUpdateMethodEventType_InputArguments Variable. + + + + + The identifier for the SystemStatusChangeEventType_SystemState Variable. + + + + + The identifier for the GeneralModelChangeEventType_Changes Variable. + + + + + The identifier for the SemanticChangeEventType_Changes Variable. + + + + + The identifier for the ProgressEventType_Context Variable. + + + + + The identifier for the ProgressEventType_Progress Variable. + + + + + The identifier for the ServerStatusType_StartTime Variable. + + + + + The identifier for the ServerStatusType_CurrentTime Variable. + + + + + The identifier for the ServerStatusType_State Variable. + + + + + The identifier for the ServerStatusType_BuildInfo Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_ProductUri Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_ManufacturerName Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_ProductName Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_SoftwareVersion Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_BuildNumber Variable. + + + + + The identifier for the ServerStatusType_BuildInfo_BuildDate Variable. + + + + + The identifier for the ServerStatusType_SecondsTillShutdown Variable. + + + + + The identifier for the ServerStatusType_ShutdownReason Variable. + + + + + The identifier for the BuildInfoType_ProductUri Variable. + + + + + The identifier for the BuildInfoType_ManufacturerName Variable. + + + + + The identifier for the BuildInfoType_ProductName Variable. + + + + + The identifier for the BuildInfoType_SoftwareVersion Variable. + + + + + The identifier for the BuildInfoType_BuildNumber Variable. + + + + + The identifier for the BuildInfoType_BuildDate Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_ServerViewCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_CurrentSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_CumulatedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_SecurityRejectedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_RejectedSessionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_SessionTimeoutCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_SessionAbortCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_PublishingIntervalCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_CurrentSubscriptionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_CumulatedSubscriptionCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_SecurityRejectedRequestsCount Variable. + + + + + The identifier for the ServerDiagnosticsSummaryType_RejectedRequestsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_SamplingInterval Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_SampledMonitoredItemsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_MaxSampledMonitoredItemsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_DisabledMonitoredItemsSamplingCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsType_SamplingInterval Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsType_SampledMonitoredItemsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsType_MaxSampledMonitoredItemsCount Variable. + + + + + The identifier for the SamplingIntervalDiagnosticsType_DisabledMonitoredItemsSamplingCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_SessionId Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_SubscriptionId Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_Priority Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_PublishingInterval Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MaxKeepAliveCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MaxLifetimeCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MaxNotificationsPerPublish Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_PublishingEnabled Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_ModifyCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_EnableCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_DisableCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_RepublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_RepublishMessageRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_RepublishMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_TransferRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_TransferredToAltClientCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_TransferredToSameClientCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_PublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_DataChangeNotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_EventNotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_NotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_LatePublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_CurrentKeepAliveCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_CurrentLifetimeCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_UnacknowledgedMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_DiscardedMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MonitoredItemCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_DisabledMonitoredItemCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_MonitoringQueueOverflowCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_NextSequenceNumber Variable. + + + + + The identifier for the SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_EventQueueOverflowCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_SessionId Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_SubscriptionId Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_Priority Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_PublishingInterval Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MaxKeepAliveCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MaxLifetimeCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MaxNotificationsPerPublish Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_PublishingEnabled Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_ModifyCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_EnableCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_DisableCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_RepublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_RepublishMessageRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_RepublishMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_TransferRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_TransferredToAltClientCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_TransferredToSameClientCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_PublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_DataChangeNotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_EventNotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_NotificationsCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_LatePublishRequestCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_CurrentKeepAliveCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_CurrentLifetimeCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_UnacknowledgedMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_DiscardedMessageCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MonitoredItemCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_DisabledMonitoredItemCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_MonitoringQueueOverflowCount Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_NextSequenceNumber Variable. + + + + + The identifier for the SubscriptionDiagnosticsType_EventQueueOverflowCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SessionId Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SessionName Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ClientDescription Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ServerUri Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_EndpointUrl Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_LocaleIds Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ActualSessionTimeout Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_MaxResponseMessageSize Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ClientConnectionTime Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ClientLastContactTime Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CurrentSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CurrentMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CurrentPublishRequestsInQueue Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_TotalRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_UnauthorizedRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ReadCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_HistoryReadCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_WriteCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_HistoryUpdateCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CallCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CreateMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ModifyMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SetMonitoringModeCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SetTriggeringCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_DeleteMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_CreateSubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_ModifySubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_SetPublishingModeCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_PublishCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_RepublishCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_TransferSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_DeleteSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_AddNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_AddReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_DeleteNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_DeleteReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_BrowseCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_BrowseNextCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_TranslateBrowsePathsToNodeIdsCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_QueryFirstCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_QueryNextCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_RegisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsArrayType_SessionDiagnostics_UnregisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SessionId Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SessionName Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ClientDescription Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ServerUri Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_EndpointUrl Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_LocaleIds Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ActualSessionTimeout Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_MaxResponseMessageSize Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ClientConnectionTime Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ClientLastContactTime Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CurrentSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CurrentMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CurrentPublishRequestsInQueue Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_TotalRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_UnauthorizedRequestCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ReadCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_HistoryReadCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_WriteCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_HistoryUpdateCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CallCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CreateMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ModifyMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SetMonitoringModeCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SetTriggeringCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_DeleteMonitoredItemsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_CreateSubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_ModifySubscriptionCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_SetPublishingModeCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_PublishCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_RepublishCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_TransferSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_DeleteSubscriptionsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_AddNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_AddReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_DeleteNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_DeleteReferencesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_BrowseCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_BrowseNextCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_TranslateBrowsePathsToNodeIdsCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_QueryFirstCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_QueryNextCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_RegisterNodesCount Variable. + + + + + The identifier for the SessionDiagnosticsVariableType_UnregisterNodesCount Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_SessionId Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_ClientUserIdOfSession Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_ClientUserIdHistory Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_AuthenticationMechanism Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_Encoding Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_TransportProtocol Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_SecurityMode Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_SecurityPolicyUri Variable. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType_SessionSecurityDiagnostics_ClientCertificate Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_SessionId Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_ClientUserIdOfSession Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_ClientUserIdHistory Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_AuthenticationMechanism Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_Encoding Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_TransportProtocol Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_SecurityMode Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_SecurityPolicyUri Variable. + + + + + The identifier for the SessionSecurityDiagnosticsType_ClientCertificate Variable. + + + + + The identifier for the OptionSetType_OptionSetValues Variable. + + + + + The identifier for the OptionSetType_BitMask Variable. + + + + + The identifier for the SelectionListType_Selections Variable. + + + + + The identifier for the SelectionListType_SelectionDescriptions Variable. + + + + + The identifier for the SelectionListType_RestrictToList Variable. + + + + + The identifier for the AudioVariableType_ListId Variable. + + + + + The identifier for the AudioVariableType_AgencyId Variable. + + + + + The identifier for the AudioVariableType_VersionId Variable. + + + + + The identifier for the Server_ServerArray Variable. + + + + + The identifier for the Server_NamespaceArray Variable. + + + + + The identifier for the Server_ServerStatus Variable. + + + + + The identifier for the Server_ServerStatus_StartTime Variable. + + + + + The identifier for the Server_ServerStatus_CurrentTime Variable. + + + + + The identifier for the Server_ServerStatus_State Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_ProductUri Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_ManufacturerName Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_ProductName Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_SoftwareVersion Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_BuildNumber Variable. + + + + + The identifier for the Server_ServerStatus_BuildInfo_BuildDate Variable. + + + + + The identifier for the Server_ServerStatus_SecondsTillShutdown Variable. + + + + + The identifier for the Server_ServerStatus_ShutdownReason Variable. + + + + + The identifier for the Server_ServiceLevel Variable. + + + + + The identifier for the Server_Auditing Variable. + + + + + The identifier for the Server_EstimatedReturnTime Variable. + + + + + The identifier for the Server_LocalTime Variable. + + + + + The identifier for the Server_ServerCapabilities_ServerProfileArray Variable. + + + + + The identifier for the Server_ServerCapabilities_LocaleIdArray Variable. + + + + + The identifier for the Server_ServerCapabilities_MinSupportedSampleRate Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxBrowseContinuationPoints Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxQueryContinuationPoints Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxHistoryContinuationPoints Variable. + + + + + The identifier for the Server_ServerCapabilities_SoftwareCertificates Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxArrayLength Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxStringLength Variable. + + + + + The identifier for the Server_ServerCapabilities_MaxByteStringLength Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerRead Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerHistoryReadData Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerHistoryReadEvents Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerWrite Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerHistoryUpdateData Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerHistoryUpdateEvents Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerMethodCall Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerBrowse Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerRegisterNodes Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerTranslateBrowsePathsToNodeIds Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxNodesPerNodeManagement Variable. + + + + + The identifier for the Server_ServerCapabilities_OperationLimits_MaxMonitoredItemsPerCall Variable. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_AddRole_InputArguments Variable. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_AddRole_OutputArguments Variable. + + + + + The identifier for the Server_ServerCapabilities_RoleSet_RemoveRole_InputArguments Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_ServerViewCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSessionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSessionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedSessionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_RejectedSessionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_SessionTimeoutCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_SessionAbortCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_PublishingIntervalCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSubscriptionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSubscriptionCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedRequestsCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_ServerDiagnosticsSummary_RejectedRequestsCount Variable. + + + + + The identifier for the Server_ServerDiagnostics_SamplingIntervalDiagnosticsArray Variable. + + + + + The identifier for the Server_ServerDiagnostics_SubscriptionDiagnosticsArray Variable. + + + + + The identifier for the Server_ServerDiagnostics_SessionsDiagnosticsSummary_SessionDiagnosticsArray Variable. + + + + + The identifier for the Server_ServerDiagnostics_SessionsDiagnosticsSummary_SessionSecurityDiagnosticsArray Variable. + + + + + The identifier for the Server_ServerDiagnostics_EnabledFlag Variable. + + + + + The identifier for the Server_ServerRedundancy_RedundancySupport Variable. + + + + + The identifier for the Server_GetMonitoredItems_InputArguments Variable. + + + + + The identifier for the Server_GetMonitoredItems_OutputArguments Variable. + + + + + The identifier for the Server_ResendData_InputArguments Variable. + + + + + The identifier for the Server_SetSubscriptionDurable_InputArguments Variable. + + + + + The identifier for the Server_SetSubscriptionDurable_OutputArguments Variable. + + + + + The identifier for the Server_RequestServerStateChange_InputArguments Variable. + + + + + The identifier for the Server_ServerRedundancy_CurrentServerId Variable. + + + + + The identifier for the Server_ServerRedundancy_RedundantServerArray Variable. + + + + + The identifier for the Server_ServerRedundancy_ServerUriArray Variable. + + + + + The identifier for the Server_ServerRedundancy_ServerNetworkGroups Variable. + + + + + The identifier for the HistoryServerCapabilities_AccessHistoryDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_AccessHistoryEventsCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_MaxReturnDataValues Variable. + + + + + The identifier for the HistoryServerCapabilities_MaxReturnEventValues Variable. + + + + + The identifier for the HistoryServerCapabilities_InsertDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_ReplaceDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_UpdateDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_DeleteRawCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_DeleteAtTimeCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_InsertEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_ReplaceEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_UpdateEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_DeleteEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_InsertAnnotationCapability Variable. + + + + + The identifier for the HistoryServerCapabilities_ServerTimestampSupported Variable. + + + + + The identifier for the StateMachineType_CurrentState Variable. + + + + + The identifier for the StateMachineType_CurrentState_Id Variable. + + + + + The identifier for the StateMachineType_LastTransition Variable. + + + + + The identifier for the StateMachineType_LastTransition_Id Variable. + + + + + The identifier for the StateVariableType_Id Variable. + + + + + The identifier for the StateVariableType_Name Variable. + + + + + The identifier for the StateVariableType_Number Variable. + + + + + The identifier for the StateVariableType_EffectiveDisplayName Variable. + + + + + The identifier for the TransitionVariableType_Id Variable. + + + + + The identifier for the TransitionVariableType_Name Variable. + + + + + The identifier for the TransitionVariableType_Number Variable. + + + + + The identifier for the TransitionVariableType_TransitionTime Variable. + + + + + The identifier for the TransitionVariableType_EffectiveTransitionTime Variable. + + + + + The identifier for the FiniteStateMachineType_CurrentState Variable. + + + + + The identifier for the FiniteStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the FiniteStateMachineType_LastTransition Variable. + + + + + The identifier for the FiniteStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the FiniteStateMachineType_AvailableStates Variable. + + + + + The identifier for the FiniteStateMachineType_AvailableTransitions Variable. + + + + + The identifier for the FiniteStateVariableType_Id Variable. + + + + + The identifier for the FiniteTransitionVariableType_Id Variable. + + + + + The identifier for the StateType_StateNumber Variable. + + + + + The identifier for the TransitionType_TransitionNumber Variable. + + + + + The identifier for the ExpressionGuardVariableType_Expression Variable. + + + + + The identifier for the RationalNumberType_Numerator Variable. + + + + + The identifier for the RationalNumberType_Denominator Variable. + + + + + The identifier for the VectorType_VectorUnit Variable. + + + + + The identifier for the ThreeDVectorType_X Variable. + + + + + The identifier for the ThreeDVectorType_Y Variable. + + + + + The identifier for the ThreeDVectorType_Z Variable. + + + + + The identifier for the CartesianCoordinatesType_LengthUnit Variable. + + + + + The identifier for the ThreeDCartesianCoordinatesType_X Variable. + + + + + The identifier for the ThreeDCartesianCoordinatesType_Y Variable. + + + + + The identifier for the ThreeDCartesianCoordinatesType_Z Variable. + + + + + The identifier for the OrientationType_AngleUnit Variable. + + + + + The identifier for the ThreeDOrientationType_A Variable. + + + + + The identifier for the ThreeDOrientationType_B Variable. + + + + + The identifier for the ThreeDOrientationType_C Variable. + + + + + The identifier for the FrameType_CartesianCoordinates Variable. + + + + + The identifier for the FrameType_Orientation Variable. + + + + + The identifier for the FrameType_Constant Variable. + + + + + The identifier for the FrameType_BaseFrame Variable. + + + + + The identifier for the FrameType_FixedBase Variable. + + + + + The identifier for the ThreeDFrameType_CartesianCoordinates Variable. + + + + + The identifier for the ThreeDFrameType_Orientation Variable. + + + + + The identifier for the ThreeDFrameType_CartesianCoordinates_X Variable. + + + + + The identifier for the ThreeDFrameType_CartesianCoordinates_Y Variable. + + + + + The identifier for the ThreeDFrameType_CartesianCoordinates_Z Variable. + + + + + The identifier for the ThreeDFrameType_Orientation_A Variable. + + + + + The identifier for the ThreeDFrameType_Orientation_B Variable. + + + + + The identifier for the ThreeDFrameType_Orientation_C Variable. + + + + + The identifier for the TransitionEventType_Transition Variable. + + + + + The identifier for the TransitionEventType_Transition_Id Variable. + + + + + The identifier for the TransitionEventType_FromState Variable. + + + + + The identifier for the TransitionEventType_FromState_Id Variable. + + + + + The identifier for the TransitionEventType_ToState Variable. + + + + + The identifier for the TransitionEventType_ToState_Id Variable. + + + + + The identifier for the AuditUpdateStateEventType_OldStateId Variable. + + + + + The identifier for the AuditUpdateStateEventType_NewStateId Variable. + + + + + The identifier for the OpenFileMode_EnumValues Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateDirectory_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateDirectory_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateFile_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_CreateFile_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_DeleteFileSystemObject_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_MoveOrCopy_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileDirectoryName_Placeholder_MoveOrCopy_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Size Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Writable Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_UserWritable Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_OpenCount Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Open_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Open_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Close_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Read_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Read_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_Write_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_GetPosition_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_GetPosition_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_FileName_Placeholder_SetPosition_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_CreateDirectory_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_CreateDirectory_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_CreateFile_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_CreateFile_OutputArguments Variable. + + + + + The identifier for the FileDirectoryType_DeleteFileSystemObject_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_MoveOrCopy_InputArguments Variable. + + + + + The identifier for the FileDirectoryType_MoveOrCopy_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateDirectory_InputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateDirectory_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateFile_InputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_CreateFile_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_DeleteFileSystemObject_InputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_MoveOrCopy_InputArguments Variable. + + + + + The identifier for the FileSystem_FileDirectoryName_Placeholder_MoveOrCopy_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Size Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Writable Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_UserWritable Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_OpenCount Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Open_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Open_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Close_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Read_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Read_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_Write_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_GetPosition_InputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_GetPosition_OutputArguments Variable. + + + + + The identifier for the FileSystem_FileName_Placeholder_SetPosition_InputArguments Variable. + + + + + The identifier for the FileSystem_CreateDirectory_InputArguments Variable. + + + + + The identifier for the FileSystem_CreateDirectory_OutputArguments Variable. + + + + + The identifier for the FileSystem_CreateFile_InputArguments Variable. + + + + + The identifier for the FileSystem_CreateFile_OutputArguments Variable. + + + + + The identifier for the FileSystem_DeleteFileSystemObject_InputArguments Variable. + + + + + The identifier for the FileSystem_MoveOrCopy_InputArguments Variable. + + + + + The identifier for the FileSystem_MoveOrCopy_OutputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_ClientProcessingTimeout Variable. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForRead_InputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForRead_OutputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForWrite_InputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_GenerateFileForWrite_OutputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_CloseAndCommit_InputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_CloseAndCommit_OutputArguments Variable. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder_CurrentState Variable. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder_CurrentState_Id Variable. + + + + + The identifier for the TemporaryFileTransferType_TransferState_Placeholder_LastTransition_Id Variable. + + + + + The identifier for the FileTransferStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the FileTransferStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the FileTransferStateMachineType_Idle_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepare_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadTransfer_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ApplyWrite_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_Error_StateNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_IdleToReadPrepare_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepareToReadTransfer_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadTransferToIdle_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_IdleToApplyWrite_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ApplyWriteToIdle_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadPrepareToError_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ReadTransferToError_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ApplyWriteToError_TransitionNumber Variable. + + + + + The identifier for the FileTransferStateMachineType_ErrorToIdle_TransitionNumber Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_Identities Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_AddIdentity_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_AddApplication_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_RemoveApplication_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_AddEndpoint_InputArguments Variable. + + + + + The identifier for the RoleSetType_RoleName_Placeholder_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the RoleSetType_AddRole_InputArguments Variable. + + + + + The identifier for the RoleSetType_AddRole_OutputArguments Variable. + + + + + The identifier for the RoleSetType_RemoveRole_InputArguments Variable. + + + + + The identifier for the RoleType_Identities Variable. + + + + + The identifier for the RoleType_Applications Variable. + + + + + The identifier for the RoleType_ApplicationsExclude Variable. + + + + + The identifier for the RoleType_Endpoints Variable. + + + + + The identifier for the RoleType_EndpointsExclude Variable. + + + + + The identifier for the RoleType_AddIdentity_InputArguments Variable. + + + + + The identifier for the RoleType_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the RoleType_AddApplication_InputArguments Variable. + + + + + The identifier for the RoleType_RemoveApplication_InputArguments Variable. + + + + + The identifier for the RoleType_AddEndpoint_InputArguments Variable. + + + + + The identifier for the RoleType_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the IdentityCriteriaType_EnumValues Variable. + + + + + The identifier for the WellKnownRole_Anonymous_Identities Variable. + + + + + The identifier for the WellKnownRole_Anonymous_Applications Variable. + + + + + The identifier for the WellKnownRole_Anonymous_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Anonymous_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Anonymous_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Anonymous_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Anonymous_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_Identities Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_Applications Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_Endpoints Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_AuthenticatedUser_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_Identities Variable. + + + + + The identifier for the WellKnownRole_Observer_Applications Variable. + + + + + The identifier for the WellKnownRole_Observer_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Observer_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Observer_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Observer_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Observer_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_Identities Variable. + + + + + The identifier for the WellKnownRole_Operator_Applications Variable. + + + + + The identifier for the WellKnownRole_Operator_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Operator_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Operator_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Operator_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Operator_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_Identities Variable. + + + + + The identifier for the WellKnownRole_Engineer_Applications Variable. + + + + + The identifier for the WellKnownRole_Engineer_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Engineer_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Engineer_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Engineer_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Engineer_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_Identities Variable. + + + + + The identifier for the WellKnownRole_Supervisor_Applications Variable. + + + + + The identifier for the WellKnownRole_Supervisor_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_Supervisor_Endpoints Variable. + + + + + The identifier for the WellKnownRole_Supervisor_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_Supervisor_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_Supervisor_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_Identities Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_Applications Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_Endpoints Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_ConfigureAdmin_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_Identities Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_Applications Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_ApplicationsExclude Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_Endpoints Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_EndpointsExclude Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveIdentity_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveApplication_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_AddEndpoint_InputArguments Variable. + + + + + The identifier for the WellKnownRole_SecurityAdmin_RemoveEndpoint_InputArguments Variable. + + + + + The identifier for the CurrencyUnit Variable. + + + + + The identifier for the IOrderedObjectType_NumberInList Variable. + + + + + The identifier for the OrderedListType_OrderedObject_Placeholder_NumberInList Variable. + + + + + The identifier for the OrderedListType_NodeVersion Variable. + + + + + The identifier for the DataItemType_Definition Variable. + + + + + The identifier for the DataItemType_ValuePrecision Variable. + + + + + The identifier for the BaseAnalogType_InstrumentRange Variable. + + + + + The identifier for the BaseAnalogType_EURange Variable. + + + + + The identifier for the BaseAnalogType_EngineeringUnits Variable. + + + + + The identifier for the AnalogItemType_EURange Variable. + + + + + The identifier for the AnalogUnitType_EngineeringUnits Variable. + + + + + The identifier for the AnalogUnitRangeType_EngineeringUnits Variable. + + + + + The identifier for the TwoStateDiscreteType_FalseState Variable. + + + + + The identifier for the TwoStateDiscreteType_TrueState Variable. + + + + + The identifier for the MultiStateDiscreteType_EnumStrings Variable. + + + + + The identifier for the MultiStateValueDiscreteType_EnumValues Variable. + + + + + The identifier for the MultiStateValueDiscreteType_ValueAsText Variable. + + + + + The identifier for the ArrayItemType_InstrumentRange Variable. + + + + + The identifier for the ArrayItemType_EURange Variable. + + + + + The identifier for the ArrayItemType_EngineeringUnits Variable. + + + + + The identifier for the ArrayItemType_Title Variable. + + + + + The identifier for the ArrayItemType_AxisScaleType Variable. + + + + + The identifier for the YArrayItemType_XAxisDefinition Variable. + + + + + The identifier for the XYArrayItemType_XAxisDefinition Variable. + + + + + The identifier for the ImageItemType_XAxisDefinition Variable. + + + + + The identifier for the ImageItemType_YAxisDefinition Variable. + + + + + The identifier for the CubeItemType_XAxisDefinition Variable. + + + + + The identifier for the CubeItemType_YAxisDefinition Variable. + + + + + The identifier for the CubeItemType_ZAxisDefinition Variable. + + + + + The identifier for the NDimensionArrayItemType_AxisDefinition Variable. + + + + + The identifier for the TwoStateVariableType_Id Variable. + + + + + The identifier for the TwoStateVariableType_TransitionTime Variable. + + + + + The identifier for the TwoStateVariableType_EffectiveTransitionTime Variable. + + + + + The identifier for the TwoStateVariableType_TrueState Variable. + + + + + The identifier for the TwoStateVariableType_FalseState Variable. + + + + + The identifier for the ConditionVariableType_SourceTimestamp Variable. + + + + + The identifier for the ConditionType_ConditionClassId Variable. + + + + + The identifier for the ConditionType_ConditionClassName Variable. + + + + + The identifier for the ConditionType_ConditionSubClassId Variable. + + + + + The identifier for the ConditionType_ConditionSubClassName Variable. + + + + + The identifier for the ConditionType_ConditionName Variable. + + + + + The identifier for the ConditionType_BranchId Variable. + + + + + The identifier for the ConditionType_Retain Variable. + + + + + The identifier for the ConditionType_EnabledState Variable. + + + + + The identifier for the ConditionType_EnabledState_Id Variable. + + + + + The identifier for the ConditionType_EnabledState_EffectiveDisplayName Variable. + + + + + The identifier for the ConditionType_EnabledState_TransitionTime Variable. + + + + + The identifier for the ConditionType_EnabledState_EffectiveTransitionTime Variable. + + + + + The identifier for the ConditionType_EnabledState_TrueState Variable. + + + + + The identifier for the ConditionType_EnabledState_FalseState Variable. + + + + + The identifier for the ConditionType_Quality Variable. + + + + + The identifier for the ConditionType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ConditionType_LastSeverity Variable. + + + + + The identifier for the ConditionType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ConditionType_Comment Variable. + + + + + The identifier for the ConditionType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ConditionType_ClientUserId Variable. + + + + + The identifier for the ConditionType_AddComment_InputArguments Variable. + + + + + The identifier for the ConditionType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ConditionType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the DialogConditionType_EnabledState Variable. + + + + + The identifier for the DialogConditionType_EnabledState_Id Variable. + + + + + The identifier for the DialogConditionType_Quality_SourceTimestamp Variable. + + + + + The identifier for the DialogConditionType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the DialogConditionType_Comment_SourceTimestamp Variable. + + + + + The identifier for the DialogConditionType_AddComment_InputArguments Variable. + + + + + The identifier for the DialogConditionType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the DialogConditionType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the DialogConditionType_DialogState Variable. + + + + + The identifier for the DialogConditionType_DialogState_Id Variable. + + + + + The identifier for the DialogConditionType_DialogState_TransitionTime Variable. + + + + + The identifier for the DialogConditionType_DialogState_TrueState Variable. + + + + + The identifier for the DialogConditionType_DialogState_FalseState Variable. + + + + + The identifier for the DialogConditionType_Prompt Variable. + + + + + The identifier for the DialogConditionType_ResponseOptionSet Variable. + + + + + The identifier for the DialogConditionType_DefaultResponse Variable. + + + + + The identifier for the DialogConditionType_OkResponse Variable. + + + + + The identifier for the DialogConditionType_CancelResponse Variable. + + + + + The identifier for the DialogConditionType_LastResponse Variable. + + + + + The identifier for the DialogConditionType_Respond_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_EnabledState Variable. + + + + + The identifier for the AcknowledgeableConditionType_EnabledState_Id Variable. + + + + + The identifier for the AcknowledgeableConditionType_Quality_SourceTimestamp Variable. + + + + + The identifier for the AcknowledgeableConditionType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the AcknowledgeableConditionType_Comment_SourceTimestamp Variable. + + + + + The identifier for the AcknowledgeableConditionType_AddComment_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState_Id Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState_TransitionTime Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState_TrueState Variable. + + + + + The identifier for the AcknowledgeableConditionType_AckedState_FalseState Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState_Id Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState_TransitionTime Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState_TrueState Variable. + + + + + The identifier for the AcknowledgeableConditionType_ConfirmedState_FalseState Variable. + + + + + The identifier for the AcknowledgeableConditionType_Acknowledge_InputArguments Variable. + + + + + The identifier for the AcknowledgeableConditionType_Confirm_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_EnabledState Variable. + + + + + The identifier for the AlarmConditionType_EnabledState_Id Variable. + + + + + The identifier for the AlarmConditionType_Quality_SourceTimestamp Variable. + + + + + The identifier for the AlarmConditionType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the AlarmConditionType_Comment_SourceTimestamp Variable. + + + + + The identifier for the AlarmConditionType_AddComment_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_AckedState_Id Variable. + + + + + The identifier for the AlarmConditionType_ConfirmedState_Id Variable. + + + + + The identifier for the AlarmConditionType_Acknowledge_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_Confirm_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_ActiveState Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_Id Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_EffectiveDisplayName Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_EffectiveTransitionTime Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_ActiveState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_InputNode Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState_Id Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_SuppressedState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState_Id Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_OutOfServiceState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_CurrentState Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_LastTransition Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_LastTransition_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the AlarmConditionType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the AlarmConditionType_SuppressedOrShelved Variable. + + + + + The identifier for the AlarmConditionType_MaxTimeShelved Variable. + + + + + The identifier for the AlarmConditionType_AudibleEnabled Variable. + + + + + The identifier for the AlarmConditionType_AudibleSound Variable. + + + + + The identifier for the AlarmConditionType_SilenceState Variable. + + + + + The identifier for the AlarmConditionType_SilenceState_Id Variable. + + + + + The identifier for the AlarmConditionType_SilenceState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_SilenceState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_SilenceState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_OnDelay Variable. + + + + + The identifier for the AlarmConditionType_OffDelay Variable. + + + + + The identifier for the AlarmConditionType_FirstInGroupFlag Variable. + + + + + The identifier for the AlarmConditionType_LatchedState Variable. + + + + + The identifier for the AlarmConditionType_LatchedState_Id Variable. + + + + + The identifier for the AlarmConditionType_LatchedState_TransitionTime Variable. + + + + + The identifier for the AlarmConditionType_LatchedState_TrueState Variable. + + + + + The identifier for the AlarmConditionType_LatchedState_FalseState Variable. + + + + + The identifier for the AlarmConditionType_ReAlarmTime Variable. + + + + + The identifier for the AlarmConditionType_ReAlarmRepeatCount Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_EventId Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_EventType Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SourceNode Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SourceName Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Time Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ReceiveTime Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Message Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Severity Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ConditionClassId Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ConditionClassName Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ConditionName Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_BranchId Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Retain Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_EnabledState Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_EnabledState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Quality Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Quality_SourceTimestamp Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_LastSeverity Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Comment Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Comment_SourceTimestamp Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ClientUserId Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_AddComment_InputArguments Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_AckedState Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_AckedState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Acknowledge_InputArguments Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_Confirm_InputArguments Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ActiveState Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ActiveState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_InputNode Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedOrShelved Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_SilenceState_Id Variable. + + + + + The identifier for the AlarmGroupType_AlarmConditionInstance_Placeholder_LatchedState_Id Variable. + + + + + The identifier for the ShelvedStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the ShelvedStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the ShelvedStateMachineType_UnshelveTime Variable. + + + + + The identifier for the ShelvedStateMachineType_Unshelved_StateNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_TimedShelved_StateNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelved_StateNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_UnshelvedToTimedShelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_UnshelvedToOneShotShelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_TimedShelvedToUnshelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_TimedShelvedToOneShotShelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelvedToUnshelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_OneShotShelvedToTimedShelved_TransitionNumber Variable. + + + + + The identifier for the ShelvedStateMachineType_TimedShelve_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_EnabledState_Id Variable. + + + + + The identifier for the LimitAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the LimitAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the LimitAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the LimitAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_AckedState_Id Variable. + + + + + The identifier for the LimitAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the LimitAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_ActiveState_Id Variable. + + + + + The identifier for the LimitAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the LimitAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the LimitAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the LimitAlarmType_SilenceState_Id Variable. + + + + + The identifier for the LimitAlarmType_LatchedState_Id Variable. + + + + + The identifier for the LimitAlarmType_HighHighLimit Variable. + + + + + The identifier for the LimitAlarmType_HighLimit Variable. + + + + + The identifier for the LimitAlarmType_LowLimit Variable. + + + + + The identifier for the LimitAlarmType_LowLowLimit Variable. + + + + + The identifier for the LimitAlarmType_BaseHighHighLimit Variable. + + + + + The identifier for the LimitAlarmType_BaseHighLimit Variable. + + + + + The identifier for the LimitAlarmType_BaseLowLimit Variable. + + + + + The identifier for the LimitAlarmType_BaseLowLowLimit Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighHigh_StateNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_High_StateNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_Low_StateNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowLow_StateNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowLowToLow_TransitionNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_LowToLowLow_TransitionNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighHighToHigh_TransitionNumber Variable. + + + + + The identifier for the ExclusiveLimitStateMachineType_HighToHighHigh_TransitionNumber Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_EnabledState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_AckedState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ActiveState Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ActiveState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_SilenceState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LatchedState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_CurrentState Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_LastTransition Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveLimitAlarmType_LimitState_LastTransition_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_EnabledState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_AckedState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ActiveState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ActiveState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_SilenceState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LatchedState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState_TrueState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighHighState_FalseState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState_TrueState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_HighState_FalseState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState_TrueState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowState_FalseState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState_Id Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState_TransitionTime Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState_TrueState Variable. + + + + + The identifier for the NonExclusiveLimitAlarmType_LowLowState_FalseState Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_EnabledState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_AckedState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ActiveState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_SilenceState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_LatchedState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_HighHighState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_HighState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_LowState_Id Variable. + + + + + The identifier for the NonExclusiveLevelAlarmType_LowLowState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_EnabledState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_AckedState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ActiveState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_SilenceState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LatchedState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LimitState_CurrentState Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LimitState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveLevelAlarmType_LimitState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_EnabledState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_AckedState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ActiveState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_SilenceState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_LatchedState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_HighHighState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_HighState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_LowState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_LowLowState_Id Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_SetpointNode Variable. + + + + + The identifier for the NonExclusiveDeviationAlarmType_BaseSetpointNode Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_EnabledState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_AckedState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ActiveState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_SilenceState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_LatchedState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_HighHighState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_HighState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_LowState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_LowLowState_Id Variable. + + + + + The identifier for the NonExclusiveRateOfChangeAlarmType_EngineeringUnits Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_EnabledState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_AckedState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ActiveState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_SilenceState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LatchedState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LimitState_CurrentState Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LimitState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_LimitState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_SetpointNode Variable. + + + + + The identifier for the ExclusiveDeviationAlarmType_BaseSetpointNode Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_EnabledState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_AckedState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ActiveState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_SilenceState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LatchedState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LimitState_CurrentState Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LimitState_CurrentState_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_LimitState_LastTransition_Id Variable. + + + + + The identifier for the ExclusiveRateOfChangeAlarmType_EngineeringUnits Variable. + + + + + The identifier for the DiscreteAlarmType_EnabledState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the DiscreteAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the DiscreteAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the DiscreteAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_AckedState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_ActiveState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the DiscreteAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the DiscreteAlarmType_SilenceState_Id Variable. + + + + + The identifier for the DiscreteAlarmType_LatchedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_EnabledState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the OffNormalAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the OffNormalAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the OffNormalAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_AckedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_ActiveState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the OffNormalAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the OffNormalAlarmType_SilenceState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_LatchedState_Id Variable. + + + + + The identifier for the OffNormalAlarmType_NormalState Variable. + + + + + The identifier for the SystemOffNormalAlarmType_EnabledState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the SystemOffNormalAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the SystemOffNormalAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the SystemOffNormalAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_AckedState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ActiveState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the SystemOffNormalAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the SystemOffNormalAlarmType_SilenceState_Id Variable. + + + + + The identifier for the SystemOffNormalAlarmType_LatchedState_Id Variable. + + + + + The identifier for the TripAlarmType_EnabledState_Id Variable. + + + + + The identifier for the TripAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the TripAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the TripAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the TripAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the TripAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the TripAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the TripAlarmType_AckedState_Id Variable. + + + + + The identifier for the TripAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the TripAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the TripAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the TripAlarmType_ActiveState_Id Variable. + + + + + The identifier for the TripAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the TripAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the TripAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the TripAlarmType_SilenceState_Id Variable. + + + + + The identifier for the TripAlarmType_LatchedState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_EnabledState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_AckedState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ActiveState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_SilenceState_Id Variable. + + + + + The identifier for the InstrumentDiagnosticAlarmType_LatchedState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_EnabledState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_AckedState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ActiveState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_SilenceState_Id Variable. + + + + + The identifier for the SystemDiagnosticAlarmType_LatchedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_EnabledState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateExpirationAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateExpirationAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_AckedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ActiveState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateExpirationAlarmType_SilenceState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_LatchedState_Id Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ExpirationDate Variable. + + + + + The identifier for the CertificateExpirationAlarmType_ExpirationLimit Variable. + + + + + The identifier for the CertificateExpirationAlarmType_CertificateType Variable. + + + + + The identifier for the CertificateExpirationAlarmType_Certificate Variable. + + + + + The identifier for the DiscrepancyAlarmType_EnabledState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the DiscrepancyAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the DiscrepancyAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the DiscrepancyAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_AckedState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_ActiveState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the DiscrepancyAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the DiscrepancyAlarmType_SilenceState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_LatchedState_Id Variable. + + + + + The identifier for the DiscrepancyAlarmType_TargetValueNode Variable. + + + + + The identifier for the DiscrepancyAlarmType_ExpectedTime Variable. + + + + + The identifier for the DiscrepancyAlarmType_Tolerance Variable. + + + + + The identifier for the AuditConditionCommentEventType_ConditionEventId Variable. + + + + + The identifier for the AuditConditionCommentEventType_Comment Variable. + + + + + The identifier for the AuditConditionRespondEventType_SelectedResponse Variable. + + + + + The identifier for the AuditConditionAcknowledgeEventType_ConditionEventId Variable. + + + + + The identifier for the AuditConditionAcknowledgeEventType_Comment Variable. + + + + + The identifier for the AuditConditionConfirmEventType_ConditionEventId Variable. + + + + + The identifier for the AuditConditionConfirmEventType_Comment Variable. + + + + + The identifier for the AuditConditionShelvingEventType_ShelvingTime Variable. + + + + + The identifier for the AlarmMetricsType_AlarmCount Variable. + + + + + The identifier for the AlarmMetricsType_StartTime Variable. + + + + + The identifier for the AlarmMetricsType_MaximumActiveState Variable. + + + + + The identifier for the AlarmMetricsType_MaximumUnAck Variable. + + + + + The identifier for the AlarmMetricsType_CurrentAlarmRate Variable. + + + + + The identifier for the AlarmMetricsType_CurrentAlarmRate_Rate Variable. + + + + + The identifier for the AlarmMetricsType_MaximumAlarmRate Variable. + + + + + The identifier for the AlarmMetricsType_MaximumAlarmRate_Rate Variable. + + + + + The identifier for the AlarmMetricsType_MaximumReAlarmCount Variable. + + + + + The identifier for the AlarmMetricsType_AverageAlarmRate Variable. + + + + + The identifier for the AlarmMetricsType_AverageAlarmRate_Rate Variable. + + + + + The identifier for the AlarmRateVariableType_Rate Variable. + + + + + The identifier for the ProgramStateMachineType_CurrentState Variable. + + + + + The identifier for the ProgramStateMachineType_CurrentState_Id Variable. + + + + + The identifier for the ProgramStateMachineType_CurrentState_Number Variable. + + + + + The identifier for the ProgramStateMachineType_LastTransition Variable. + + + + + The identifier for the ProgramStateMachineType_LastTransition_Id Variable. + + + + + The identifier for the ProgramStateMachineType_LastTransition_Number Variable. + + + + + The identifier for the ProgramStateMachineType_LastTransition_TransitionTime Variable. + + + + + The identifier for the ProgramStateMachineType_Creatable Variable. + + + + + The identifier for the ProgramStateMachineType_Deletable Variable. + + + + + The identifier for the ProgramStateMachineType_AutoDelete Variable. + + + + + The identifier for the ProgramStateMachineType_RecycleCount Variable. + + + + + The identifier for the ProgramStateMachineType_InstanceCount Variable. + + + + + The identifier for the ProgramStateMachineType_MaxInstanceCount Variable. + + + + + The identifier for the ProgramStateMachineType_MaxRecycleCount Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_CreateSessionId Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_CreateClientName Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_InvocationCreationTime Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastTransitionTime Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodCall Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodSessionId Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodInputArguments Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodOutputArguments Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodInputValues Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodOutputValues Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodCallTime Variable. + + + + + The identifier for the ProgramStateMachineType_ProgramDiagnostic_LastMethodReturnStatus Variable. + + + + + The identifier for the ProgramStateMachineType_Halted_StateNumber Variable. + + + + + The identifier for the ProgramStateMachineType_Ready_StateNumber Variable. + + + + + The identifier for the ProgramStateMachineType_Running_StateNumber Variable. + + + + + The identifier for the ProgramStateMachineType_Suspended_StateNumber Variable. + + + + + The identifier for the ProgramStateMachineType_HaltedToReady_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_ReadyToRunning_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_RunningToHalted_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_RunningToReady_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_RunningToSuspended_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_SuspendedToRunning_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_SuspendedToHalted_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_SuspendedToReady_TransitionNumber Variable. + + + + + The identifier for the ProgramStateMachineType_ReadyToHalted_TransitionNumber Variable. + + + + + The identifier for the ProgramTransitionEventType_Transition_Id Variable. + + + + + The identifier for the ProgramTransitionEventType_FromState_Id Variable. + + + + + The identifier for the ProgramTransitionEventType_ToState_Id Variable. + + + + + The identifier for the ProgramTransitionEventType_IntermediateResult Variable. + + + + + The identifier for the AuditProgramTransitionEventType_TransitionNumber Variable. + + + + + The identifier for the ProgramTransitionAuditEventType_Transition Variable. + + + + + The identifier for the ProgramTransitionAuditEventType_Transition_Id Variable. + + + + + The identifier for the ProgramDiagnosticType_CreateSessionId Variable. + + + + + The identifier for the ProgramDiagnosticType_CreateClientName Variable. + + + + + The identifier for the ProgramDiagnosticType_InvocationCreationTime Variable. + + + + + The identifier for the ProgramDiagnosticType_LastTransitionTime Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodCall Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodSessionId Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodInputArguments Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodOutputArguments Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodCallTime Variable. + + + + + The identifier for the ProgramDiagnosticType_LastMethodReturnStatus Variable. + + + + + The identifier for the ProgramDiagnostic2Type_CreateSessionId Variable. + + + + + The identifier for the ProgramDiagnostic2Type_CreateClientName Variable. + + + + + The identifier for the ProgramDiagnostic2Type_InvocationCreationTime Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastTransitionTime Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodCall Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodSessionId Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodInputArguments Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodOutputArguments Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodInputValues Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodOutputValues Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodCallTime Variable. + + + + + The identifier for the ProgramDiagnostic2Type_LastMethodReturnStatus Variable. + + + + + The identifier for the Annotations Variable. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration_TreatUncertainAsBad Variable. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration_PercentDataBad Variable. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration_PercentDataGood Variable. + + + + + The identifier for the HistoricalDataConfigurationType_AggregateConfiguration_UseSlopedExtrapolation Variable. + + + + + The identifier for the HistoricalDataConfigurationType_Stepped Variable. + + + + + The identifier for the HistoricalDataConfigurationType_Definition Variable. + + + + + The identifier for the HistoricalDataConfigurationType_MaxTimeInterval Variable. + + + + + The identifier for the HistoricalDataConfigurationType_MinTimeInterval Variable. + + + + + The identifier for the HistoricalDataConfigurationType_ExceptionDeviation Variable. + + + + + The identifier for the HistoricalDataConfigurationType_ExceptionDeviationFormat Variable. + + + + + The identifier for the HistoricalDataConfigurationType_StartOfArchive Variable. + + + + + The identifier for the HistoricalDataConfigurationType_StartOfOnlineArchive Variable. + + + + + The identifier for the HistoricalDataConfigurationType_ServerTimestampSupported Variable. + + + + + The identifier for the HAConfiguration_AggregateConfiguration_TreatUncertainAsBad Variable. + + + + + The identifier for the HAConfiguration_AggregateConfiguration_PercentDataBad Variable. + + + + + The identifier for the HAConfiguration_AggregateConfiguration_PercentDataGood Variable. + + + + + The identifier for the HAConfiguration_AggregateConfiguration_UseSlopedExtrapolation Variable. + + + + + The identifier for the HAConfiguration_Stepped Variable. + + + + + The identifier for the HistoricalEventFilter Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_AccessHistoryDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_AccessHistoryEventsCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_MaxReturnDataValues Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_MaxReturnEventValues Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_InsertDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_ReplaceDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_UpdateDataCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_DeleteRawCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_DeleteAtTimeCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_InsertEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_ReplaceEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_UpdateEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_DeleteEventCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_InsertAnnotationCapability Variable. + + + + + The identifier for the HistoryServerCapabilitiesType_ServerTimestampSupported Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_UpdatedNode Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_PerformInsertReplace Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_Filter Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_NewValues Variable. + + + + + The identifier for the AuditHistoryEventUpdateEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryValueUpdateEventType_UpdatedNode Variable. + + + + + The identifier for the AuditHistoryValueUpdateEventType_PerformInsertReplace Variable. + + + + + The identifier for the AuditHistoryValueUpdateEventType_NewValues Variable. + + + + + The identifier for the AuditHistoryValueUpdateEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryAnnotationUpdateEventType_PerformInsertReplace Variable. + + + + + The identifier for the AuditHistoryAnnotationUpdateEventType_NewValues Variable. + + + + + The identifier for the AuditHistoryAnnotationUpdateEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryDeleteEventType_UpdatedNode Variable. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType_IsDeleteModified Variable. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType_StartTime Variable. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType_EndTime Variable. + + + + + The identifier for the AuditHistoryRawModifyDeleteEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryAtTimeDeleteEventType_ReqTimes Variable. + + + + + The identifier for the AuditHistoryAtTimeDeleteEventType_OldValues Variable. + + + + + The identifier for the AuditHistoryEventDeleteEventType_EventIds Variable. + + + + + The identifier for the AuditHistoryEventDeleteEventType_OldValues Variable. + + + + + The identifier for the TrustListType_Open_InputArguments Variable. + + + + + The identifier for the TrustListType_Open_OutputArguments Variable. + + + + + The identifier for the TrustListType_Close_InputArguments Variable. + + + + + The identifier for the TrustListType_Read_InputArguments Variable. + + + + + The identifier for the TrustListType_Read_OutputArguments Variable. + + + + + The identifier for the TrustListType_Write_InputArguments Variable. + + + + + The identifier for the TrustListType_GetPosition_InputArguments Variable. + + + + + The identifier for the TrustListType_GetPosition_OutputArguments Variable. + + + + + The identifier for the TrustListType_SetPosition_InputArguments Variable. + + + + + The identifier for the TrustListType_LastUpdateTime Variable. + + + + + The identifier for the TrustListType_UpdateFrequency Variable. + + + + + The identifier for the TrustListType_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the TrustListType_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the TrustListType_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the TrustListType_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the TrustListType_AddCertificate_InputArguments Variable. + + + + + The identifier for the TrustListType_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the TrustListMasks_EnumValues Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_EnabledState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_Quality_SourceTimestamp Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_Comment_SourceTimestamp Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_AddComment_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ConditionRefresh_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ConditionRefresh2_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_AckedState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ConfirmedState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_Acknowledge_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_Confirm_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ActiveState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_SuppressedState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_OutOfServiceState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_CurrentState Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_SilenceState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_LatchedState_Id Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_TrustListId Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_LastUpdateTime Variable. + + + + + The identifier for the TrustListOutOfDateAlarmType_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupType_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupType_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupType_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupType_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupType_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Size Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Writable Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateTypes Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfigurationType_ServerCapabilities Variable. + + + + + The identifier for the ServerConfigurationType_SupportedPrivateKeyFormats Variable. + + + + + The identifier for the ServerConfigurationType_MaxTrustListSize Variable. + + + + + The identifier for the ServerConfigurationType_MulticastDnsEnabled Variable. + + + + + The identifier for the ServerConfigurationType_UpdateCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_UpdateCertificate_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CreateSigningRequest_InputArguments Variable. + + + + + The identifier for the ServerConfigurationType_CreateSigningRequest_OutputArguments Variable. + + + + + The identifier for the ServerConfigurationType_GetRejectedList_OutputArguments Variable. + + + + + The identifier for the CertificateUpdatedAuditEventType_CertificateGroup Variable. + + + + + The identifier for the CertificateUpdatedAuditEventType_CertificateType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the ServerConfiguration_ServerCapabilities Variable. + + + + + The identifier for the ServerConfiguration_SupportedPrivateKeyFormats Variable. + + + + + The identifier for the ServerConfiguration_MaxTrustListSize Variable. + + + + + The identifier for the ServerConfiguration_MulticastDnsEnabled Variable. + + + + + The identifier for the ServerConfiguration_UpdateCertificate_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_UpdateCertificate_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_CreateSigningRequest_InputArguments Variable. + + + + + The identifier for the ServerConfiguration_CreateSigningRequest_OutputArguments Variable. + + + + + The identifier for the ServerConfiguration_GetRejectedList_OutputArguments Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ResourceUri Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ProfileUri Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_ServiceName_Placeholder_UpdateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_CreateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialConfigurationFolderType_CreateCredential_OutputArguments Variable. + + + + + The identifier for the KeyCredentialConfiguration_ServiceName_Placeholder_ResourceUri Variable. + + + + + The identifier for the KeyCredentialConfiguration_ServiceName_Placeholder_ProfileUri Variable. + + + + + The identifier for the KeyCredentialConfiguration_ServiceName_Placeholder_UpdateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialConfiguration_CreateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialConfiguration_CreateCredential_OutputArguments Variable. + + + + + The identifier for the KeyCredentialConfigurationType_ResourceUri Variable. + + + + + The identifier for the KeyCredentialConfigurationType_ProfileUri Variable. + + + + + The identifier for the KeyCredentialConfigurationType_EndpointUrls Variable. + + + + + The identifier for the KeyCredentialConfigurationType_ServiceStatus Variable. + + + + + The identifier for the KeyCredentialConfigurationType_UpdateCredential_InputArguments Variable. + + + + + The identifier for the KeyCredentialAuditEventType_ResourceUri Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_ServiceUri Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_ServiceCertificate Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_IssuerEndpointUrl Variable. + + + + + The identifier for the AuthorizationServiceConfigurationType_ServiceUri Variable. + + + + + The identifier for the AuthorizationServiceConfigurationType_ServiceCertificate Variable. + + + + + The identifier for the AuthorizationServiceConfigurationType_IssuerEndpointUrl Variable. + + + + + The identifier for the AggregateConfigurationType_TreatUncertainAsBad Variable. + + + + + The identifier for the AggregateConfigurationType_PercentDataBad Variable. + + + + + The identifier for the AggregateConfigurationType_PercentDataGood Variable. + + + + + The identifier for the AggregateConfigurationType_UseSlopedExtrapolation Variable. + + + + + The identifier for the PubSubState_EnumStrings Variable. + + + + + The identifier for the DataSetFieldFlags_OptionSetValues Variable. + + + + + The identifier for the DataSetFieldContentMask_OptionSetValues Variable. + + + + + The identifier for the OverrideValueHandling_EnumStrings Variable. + + + + + The identifier for the DataSetOrderingType_EnumStrings Variable. + + + + + The identifier for the UadpNetworkMessageContentMask_OptionSetValues Variable. + + + + + The identifier for the UadpDataSetMessageContentMask_OptionSetValues Variable. + + + + + The identifier for the JsonNetworkMessageContentMask_OptionSetValues Variable. + + + + + The identifier for the JsonDataSetMessageContentMask_OptionSetValues Variable. + + + + + The identifier for the BrokerTransportQualityOfService_EnumStrings Variable. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityKeys_OutputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityGroup_InputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_GetSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PubSubKeyServiceType_SecurityGroups_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_SecurityGroupId Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_KeyLifetime Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_SecurityPolicyUri Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_MaxFutureKeyCount Variable. + + + + + The identifier for the SecurityGroupFolderType_SecurityGroupName_Placeholder_MaxPastKeyCount Variable. + + + + + The identifier for the SecurityGroupFolderType_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the SecurityGroupFolderType_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the SecurityGroupType_SecurityGroupId Variable. + + + + + The identifier for the SecurityGroupType_KeyLifetime Variable. + + + + + The identifier for the SecurityGroupType_SecurityPolicyUri Variable. + + + + + The identifier for the SecurityGroupType_MaxFutureKeyCount Variable. + + + + + The identifier for the SecurityGroupType_MaxPastKeyCount Variable. + + + + + The identifier for the PublishSubscribeType_GetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_GetSecurityKeys_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_GetSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_GetSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_SecurityGroups_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_PublisherId Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_TransportProfileUri Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_TransportProfileUri_Selections Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_ConnectionProperties Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_Selections Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_AddWriterGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_AddWriterGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_AddReaderGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_AddReaderGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_ConnectionName_Placeholder_RemoveGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_SetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_AddConnection_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_AddConnection_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_RemoveConnection_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedDataItems_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedDataItems_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedEvents_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedEvents_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedDataItemsTemplate_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedDataItemsTemplate_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedEventsTemplate_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddPublishedEventsTemplate_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_RemovePublishedDataSet_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddDataSetFolder_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_AddDataSetFolder_OutputArguments Variable. + + + + + The identifier for the PublishSubscribeType_PublishedDataSets_RemoveDataSetFolder_InputArguments Variable. + + + + + The identifier for the PublishSubscribeType_Status_State Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_SubError Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PublishSubscribeType_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribeType_SupportedTransportProfiles Variable. + + + + + The identifier for the PublishSubscribe_GetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_GetSecurityKeys_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_GetSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_GetSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_SecurityGroups_AddSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_SecurityGroups_AddSecurityGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_SecurityGroups_RemoveSecurityGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_PublisherId Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_TransportProfileUri Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_TransportProfileUri_Selections Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_ConnectionProperties Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_Selections Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_AddWriterGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_AddWriterGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_AddReaderGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_AddReaderGroup_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_ConnectionName_Placeholder_RemoveGroup_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_SetSecurityKeys_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_AddConnection_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_AddConnection_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_RemoveConnection_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedDataItems_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedDataItems_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedEvents_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedEvents_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedDataItemsTemplate_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedDataItemsTemplate_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedEventsTemplate_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddPublishedEventsTemplate_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_RemovePublishedDataSet_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddDataSetFolder_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_AddDataSetFolder_OutputArguments Variable. + + + + + The identifier for the PublishSubscribe_PublishedDataSets_RemoveDataSetFolder_InputArguments Variable. + + + + + The identifier for the PublishSubscribe_Status_State Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_SubError Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PublishSubscribe_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PublishSubscribe_SupportedTransportProfiles Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_DataSetWriterProperties Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataSetType_ConfigurationVersion Variable. + + + + + The identifier for the PublishedDataSetType_DataSetMetaData Variable. + + + + + The identifier for the PublishedDataSetType_DataSetClassId Variable. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_AddExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the PublishedDataSetType_ExtensionFields_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the ExtensionFieldsType_ExtensionFieldName_Placeholder Variable. + + + + + The identifier for the ExtensionFieldsType_AddExtensionField_InputArguments Variable. + + + + + The identifier for the ExtensionFieldsType_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the ExtensionFieldsType_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_DataSetWriterProperties Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_AddExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_ExtensionFields_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_PublishedData Variable. + + + + + The identifier for the PublishedDataItemsType_AddVariables_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_AddVariables_OutputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_RemoveVariables_InputArguments Variable. + + + + + The identifier for the PublishedDataItemsType_RemoveVariables_OutputArguments Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_DataSetWriterProperties Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Status_State Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PublishedEventsType_ExtensionFields_AddExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedEventsType_ExtensionFields_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the PublishedEventsType_ExtensionFields_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the PublishedEventsType_PubSubEventNotifier Variable. + + + + + The identifier for the PublishedEventsType_SelectedFields Variable. + + + + + The identifier for the PublishedEventsType_Filter Variable. + + + + + The identifier for the PublishedEventsType_ModifyFieldSelection_InputArguments Variable. + + + + + The identifier for the PublishedEventsType_ModifyFieldSelection_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItems_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItems_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEvents_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEvents_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_RemovePublishedDataSet_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddDataSetFolder_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_AddDataSetFolder_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_DataSetFolderName_Placeholder_RemoveDataSetFolder_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ConfigurationVersion Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_DataSetMetaData Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_RemoveExtensionField_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItems_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItems_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedEvents_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedEvents_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItemsTemplate_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedDataItemsTemplate_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedEventsTemplate_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddPublishedEventsTemplate_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_RemovePublishedDataSet_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddDataSetFolder_InputArguments Variable. + + + + + The identifier for the DataSetFolderType_AddDataSetFolder_OutputArguments Variable. + + + + + The identifier for the DataSetFolderType_RemoveDataSetFolder_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_PublisherId Variable. + + + + + The identifier for the PubSubConnectionType_TransportProfileUri Variable. + + + + + The identifier for the PubSubConnectionType_TransportProfileUri_Selections Variable. + + + + + The identifier for the PubSubConnectionType_ConnectionProperties Variable. + + + + + The identifier for the PubSubConnectionType_Address_NetworkInterface Variable. + + + + + The identifier for the PubSubConnectionType_Address_NetworkInterface_Selections Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_SecurityMode Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_MaxNetworkMessageSize Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_GroupProperties Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Status_State Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_WriterGroupId Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_PublishingInterval Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_KeepAliveTime Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Priority Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_LocaleIds Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_HeaderLayoutUri Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_Active Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_Classification Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_AddDataSetWriter_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_AddDataSetWriter_OutputArguments Variable. + + + + + The identifier for the PubSubConnectionType_WriterGroupName_Placeholder_RemoveDataSetWriter_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_SecurityMode Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_MaxNetworkMessageSize Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_GroupProperties Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Status_State Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_AddDataSetReader_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_AddDataSetReader_OutputArguments Variable. + + + + + The identifier for the PubSubConnectionType_ReaderGroupName_Placeholder_RemoveDataSetReader_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_Status_State Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalError Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_SubError Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_LiveValues_ResolvedAddress Variable. + + + + + The identifier for the PubSubConnectionType_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubConnectionType_AddWriterGroup_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_AddWriterGroup_OutputArguments Variable. + + + + + The identifier for the PubSubConnectionType_AddReaderGroup_InputArguments Variable. + + + + + The identifier for the PubSubConnectionType_AddReaderGroup_OutputArguments Variable. + + + + + The identifier for the PubSubConnectionType_RemoveGroup_InputArguments Variable. + + + + + The identifier for the PubSubGroupType_SecurityMode Variable. + + + + + The identifier for the PubSubGroupType_SecurityGroupId Variable. + + + + + The identifier for the PubSubGroupType_SecurityKeyServices Variable. + + + + + The identifier for the PubSubGroupType_MaxNetworkMessageSize Variable. + + + + + The identifier for the PubSubGroupType_GroupProperties Variable. + + + + + The identifier for the PubSubGroupType_Status_State Variable. + + + + + The identifier for the WriterGroupType_Status_State Variable. + + + + + The identifier for the WriterGroupType_WriterGroupId Variable. + + + + + The identifier for the WriterGroupType_PublishingInterval Variable. + + + + + The identifier for the WriterGroupType_KeepAliveTime Variable. + + + + + The identifier for the WriterGroupType_Priority Variable. + + + + + The identifier for the WriterGroupType_LocaleIds Variable. + + + + + The identifier for the WriterGroupType_HeaderLayoutUri Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_DataSetWriterProperties Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Status_State Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalError Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_SubError Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_SentNetworkMessages Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_SentNetworkMessages_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_SentNetworkMessages_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_SentNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_FailedTransmissions Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_FailedTransmissions_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_FailedTransmissions_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_FailedTransmissions_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_EncryptionErrors Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_EncryptionErrors_Active Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_EncryptionErrors_Classification Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_Counters_EncryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the WriterGroupType_AddDataSetWriter_InputArguments Variable. + + + + + The identifier for the WriterGroupType_AddDataSetWriter_OutputArguments Variable. + + + + + The identifier for the WriterGroupType_RemoveDataSetWriter_InputArguments Variable. + + + + + The identifier for the ReaderGroupType_Status_State Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_PublisherId Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_WriterGroupId Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_DataSetWriterId Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_DataSetMetaData Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_DataSetFieldContentMask Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_MessageReceiveTimeout Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_KeyFrameCount Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_HeaderLayoutUri Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_DataSetReaderProperties Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Status_State Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_SubError Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables_InputArguments Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables_OutputArguments Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_CreateDataSetMirror_InputArguments Variable. + + + + + The identifier for the ReaderGroupType_DataSetReaderName_Placeholder_CreateDataSetMirror_OutputArguments Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalError Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_SubError Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedNetworkMessages Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedNetworkMessages_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedNetworkMessages_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the ReaderGroupType_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the ReaderGroupType_AddDataSetReader_InputArguments Variable. + + + + + The identifier for the ReaderGroupType_AddDataSetReader_OutputArguments Variable. + + + + + The identifier for the ReaderGroupType_RemoveDataSetReader_InputArguments Variable. + + + + + The identifier for the DataSetWriterType_DataSetWriterId Variable. + + + + + The identifier for the DataSetWriterType_DataSetFieldContentMask Variable. + + + + + The identifier for the DataSetWriterType_KeyFrameCount Variable. + + + + + The identifier for the DataSetWriterType_DataSetWriterProperties Variable. + + + + + The identifier for the DataSetWriterType_Status_State Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalError Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_SubError Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetWriterType_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_PublisherId Variable. + + + + + The identifier for the DataSetReaderType_WriterGroupId Variable. + + + + + The identifier for the DataSetReaderType_DataSetWriterId Variable. + + + + + The identifier for the DataSetReaderType_DataSetMetaData Variable. + + + + + The identifier for the DataSetReaderType_DataSetFieldContentMask Variable. + + + + + The identifier for the DataSetReaderType_MessageReceiveTimeout Variable. + + + + + The identifier for the DataSetReaderType_KeyFrameCount Variable. + + + + + The identifier for the DataSetReaderType_HeaderLayoutUri Variable. + + + + + The identifier for the DataSetReaderType_SecurityMode Variable. + + + + + The identifier for the DataSetReaderType_SecurityGroupId Variable. + + + + + The identifier for the DataSetReaderType_SecurityKeyServices Variable. + + + + + The identifier for the DataSetReaderType_DataSetReaderProperties Variable. + + + + + The identifier for the DataSetReaderType_Status_State Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalInformation Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalInformation_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalInformation_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalError Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalError_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalError_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_SubError Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateError Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateError_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateError_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByParent Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalFromError Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StatePausedByParent Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the DataSetReaderType_CreateTargetVariables_InputArguments Variable. + + + + + The identifier for the DataSetReaderType_CreateTargetVariables_OutputArguments Variable. + + + + + The identifier for the DataSetReaderType_CreateDataSetMirror_InputArguments Variable. + + + + + The identifier for the DataSetReaderType_CreateDataSetMirror_OutputArguments Variable. + + + + + The identifier for the TargetVariablesType_TargetVariables Variable. + + + + + The identifier for the TargetVariablesType_AddTargetVariables_InputArguments Variable. + + + + + The identifier for the TargetVariablesType_AddTargetVariables_OutputArguments Variable. + + + + + The identifier for the TargetVariablesType_RemoveTargetVariables_InputArguments Variable. + + + + + The identifier for the TargetVariablesType_RemoveTargetVariables_OutputArguments Variable. + + + + + The identifier for the PubSubStatusType_State Variable. + + + + + The identifier for the PubSubDiagnosticsType_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalInformation Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalError Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_SubError Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the DiagnosticsLevel_EnumStrings Variable. + + + + + The identifier for the PubSubDiagnosticsCounterType_Active Variable. + + + + + The identifier for the PubSubDiagnosticsCounterType_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsCounterType_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsCounterType_TimeFirstChange Variable. + + + + + The identifier for the PubSubDiagnosticsCounterClassification_EnumStrings Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PubSubDiagnosticsRootType_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_LiveValues_ResolvedAddress Variable. + + + + + The identifier for the PubSubDiagnosticsConnectionType_LiveValues_ResolvedAddress_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_SentNetworkMessages Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_SentNetworkMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_SentNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_SentNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_FailedTransmissions Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_FailedTransmissions_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_FailedTransmissions_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_FailedTransmissions_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_EncryptionErrors Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_EncryptionErrors_Active Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_EncryptionErrors_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_Counters_EncryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_ConfiguredDataSetWriters Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_OperationalDataSetWriters Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_OperationalDataSetWriters_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_SecurityTokenID Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_TimeToNextTokenID Variable. + + + + + The identifier for the PubSubDiagnosticsWriterGroupType_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedNetworkMessages Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedNetworkMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues_ConfiguredDataSetReaders Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues_OperationalDataSetReaders Variable. + + + + + The identifier for the PubSubDiagnosticsReaderGroupType_LiveValues_OperationalDataSetReaders_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MessageSequenceNumber Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_StatusCode Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MajorVersion Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MinorVersion Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetWriterType_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalInformation_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalInformation_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalInformation_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_TotalError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateError Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByParent Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalFromError Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalFromError_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalFromError_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateOperationalFromError_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StatePausedByParent Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StatePausedByParent_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StatePausedByParent_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StatePausedByParent_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateDisabledByMethod Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateDisabledByMethod_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateDisabledByMethod_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_StateDisabledByMethod_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_FailedDataSetMessages Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_FailedDataSetMessages_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_FailedDataSetMessages_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_FailedDataSetMessages_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_DecryptionErrors Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_DecryptionErrors_Active Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_DecryptionErrors_Classification Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_Counters_DecryptionErrors_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MessageSequenceNumber Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MessageSequenceNumber_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_StatusCode Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_StatusCode_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MajorVersion Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MajorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MinorVersion Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_MinorVersion_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_SecurityTokenID Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_SecurityTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_TimeToNextTokenID Variable. + + + + + The identifier for the PubSubDiagnosticsDataSetReaderType_LiveValues_TimeToNextTokenID_DiagnosticsLevel Variable. + + + + + The identifier for the PubSubStatusEventType_ConnectionId Variable. + + + + + The identifier for the PubSubStatusEventType_GroupId Variable. + + + + + The identifier for the PubSubStatusEventType_State Variable. + + + + + The identifier for the PubSubTransportLimitsExceedEventType_Actual Variable. + + + + + The identifier for the PubSubTransportLimitsExceedEventType_Maximum Variable. + + + + + The identifier for the PubSubCommunicationFailureEventType_Error Variable. + + + + + The identifier for the UadpWriterGroupMessageType_GroupVersion Variable. + + + + + The identifier for the UadpWriterGroupMessageType_DataSetOrdering Variable. + + + + + The identifier for the UadpWriterGroupMessageType_NetworkMessageContentMask Variable. + + + + + The identifier for the UadpWriterGroupMessageType_SamplingOffset Variable. + + + + + The identifier for the UadpWriterGroupMessageType_PublishingOffset Variable. + + + + + The identifier for the UadpDataSetWriterMessageType_DataSetMessageContentMask Variable. + + + + + The identifier for the UadpDataSetWriterMessageType_ConfiguredSize Variable. + + + + + The identifier for the UadpDataSetWriterMessageType_NetworkMessageNumber Variable. + + + + + The identifier for the UadpDataSetWriterMessageType_DataSetOffset Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_GroupVersion Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_NetworkMessageNumber Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_DataSetOffset Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_DataSetClassId Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_NetworkMessageContentMask Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_DataSetMessageContentMask Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_PublishingInterval Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_ProcessingOffset Variable. + + + + + The identifier for the UadpDataSetReaderMessageType_ReceiveOffset Variable. + + + + + The identifier for the JsonWriterGroupMessageType_NetworkMessageContentMask Variable. + + + + + The identifier for the JsonDataSetWriterMessageType_DataSetMessageContentMask Variable. + + + + + The identifier for the JsonDataSetReaderMessageType_NetworkMessageContentMask Variable. + + + + + The identifier for the JsonDataSetReaderMessageType_DataSetMessageContentMask Variable. + + + + + The identifier for the DatagramConnectionTransportType_DiscoveryAddress_NetworkInterface Variable. + + + + + The identifier for the DatagramConnectionTransportType_DiscoveryAddress_NetworkInterface_Selections Variable. + + + + + The identifier for the DatagramWriterGroupTransportType_MessageRepeatCount Variable. + + + + + The identifier for the DatagramWriterGroupTransportType_MessageRepeatDelay Variable. + + + + + The identifier for the BrokerConnectionTransportType_ResourceUri Variable. + + + + + The identifier for the BrokerConnectionTransportType_AuthenticationProfileUri Variable. + + + + + The identifier for the BrokerWriterGroupTransportType_QueueName Variable. + + + + + The identifier for the BrokerWriterGroupTransportType_ResourceUri Variable. + + + + + The identifier for the BrokerWriterGroupTransportType_AuthenticationProfileUri Variable. + + + + + The identifier for the BrokerWriterGroupTransportType_RequestedDeliveryGuarantee Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_QueueName Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_MetaDataQueueName Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_ResourceUri Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_AuthenticationProfileUri Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_RequestedDeliveryGuarantee Variable. + + + + + The identifier for the BrokerDataSetWriterTransportType_MetaDataUpdateTime Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_QueueName Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_ResourceUri Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_AuthenticationProfileUri Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_RequestedDeliveryGuarantee Variable. + + + + + The identifier for the BrokerDataSetReaderTransportType_MetaDataQueueName Variable. + + + + + The identifier for the NetworkAddressType_NetworkInterface Variable. + + + + + The identifier for the NetworkAddressType_NetworkInterface_Selections Variable. + + + + + The identifier for the NetworkAddressUrlType_NetworkInterface_Selections Variable. + + + + + The identifier for the NetworkAddressUrlType_Url Variable. + + + + + The identifier for the AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias_InputArguments Variable. + + + + + The identifier for the AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments Variable. + + + + + The identifier for the AliasNameCategoryType_FindAlias_InputArguments Variable. + + + + + The identifier for the AliasNameCategoryType_FindAlias_OutputArguments Variable. + + + + + The identifier for the Aliases_SubAliasNameCategories_Placeholder_FindAlias_InputArguments Variable. + + + + + The identifier for the Aliases_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments Variable. + + + + + The identifier for the Aliases_FindAlias_InputArguments Variable. + + + + + The identifier for the Aliases_FindAlias_OutputArguments Variable. + + + + + The identifier for the TagVariables_SubAliasNameCategories_Placeholder_FindAlias_InputArguments Variable. + + + + + The identifier for the TagVariables_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments Variable. + + + + + The identifier for the TagVariables_FindAlias_InputArguments Variable. + + + + + The identifier for the TagVariables_FindAlias_OutputArguments Variable. + + + + + The identifier for the Topics_SubAliasNameCategories_Placeholder_FindAlias_InputArguments Variable. + + + + + The identifier for the Topics_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments Variable. + + + + + The identifier for the Topics_FindAlias_InputArguments Variable. + + + + + The identifier for the Topics_FindAlias_OutputArguments Variable. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteBaseType_EnumDictionaryEntries Variable. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteBaseType_ValueAsDictionaryEntries Variable. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteType_ValueAsDictionaryEntries Variable. + + + + + The identifier for the IdType_EnumStrings Variable. + + + + + The identifier for the NodeClass_EnumValues Variable. + + + + + The identifier for the PermissionType_OptionSetValues Variable. + + + + + The identifier for the AccessLevelType_OptionSetValues Variable. + + + + + The identifier for the AccessLevelExType_OptionSetValues Variable. + + + + + The identifier for the EventNotifierType_OptionSetValues Variable. + + + + + The identifier for the AccessRestrictionType_OptionSetValues Variable. + + + + + The identifier for the StructureType_EnumStrings Variable. + + + + + The identifier for the ApplicationType_EnumStrings Variable. + + + + + The identifier for the MessageSecurityMode_EnumStrings Variable. + + + + + The identifier for the UserTokenType_EnumStrings Variable. + + + + + The identifier for the SecurityTokenRequestType_EnumStrings Variable. + + + + + The identifier for the NodeAttributesMask_EnumValues Variable. + + + + + The identifier for the AttributeWriteMask_OptionSetValues Variable. + + + + + The identifier for the BrowseDirection_EnumStrings Variable. + + + + + The identifier for the BrowseResultMask_EnumValues Variable. + + + + + The identifier for the FilterOperator_EnumStrings Variable. + + + + + The identifier for the TimestampsToReturn_EnumStrings Variable. + + + + + The identifier for the HistoryUpdateType_EnumValues Variable. + + + + + The identifier for the PerformUpdateType_EnumValues Variable. + + + + + The identifier for the MonitoringMode_EnumStrings Variable. + + + + + The identifier for the DataChangeTrigger_EnumStrings Variable. + + + + + The identifier for the DeadbandType_EnumStrings Variable. + + + + + The identifier for the RedundancySupport_EnumStrings Variable. + + + + + The identifier for the ServerState_EnumStrings Variable. + + + + + The identifier for the ModelChangeStructureVerbMask_EnumValues Variable. + + + + + The identifier for the AxisScaleEnumeration_EnumStrings Variable. + + + + + The identifier for the ExceptionDeviationFormat_EnumStrings Variable. + + + + + The identifier for the OpcUa_BinarySchema Variable. + + + + + The identifier for the OpcUa_BinarySchema_NamespaceUri Variable. + + + + + The identifier for the OpcUa_BinarySchema_Deprecated Variable. + + + + + The identifier for the OpcUa_BinarySchema_KeyValuePair Variable. + + + + + The identifier for the OpcUa_BinarySchema_EndpointType Variable. + + + + + The identifier for the OpcUa_BinarySchema_RationalNumber Variable. + + + + + The identifier for the OpcUa_BinarySchema_Vector Variable. + + + + + The identifier for the OpcUa_BinarySchema_ThreeDVector Variable. + + + + + The identifier for the OpcUa_BinarySchema_CartesianCoordinates Variable. + + + + + The identifier for the OpcUa_BinarySchema_ThreeDCartesianCoordinates Variable. + + + + + The identifier for the OpcUa_BinarySchema_Orientation Variable. + + + + + The identifier for the OpcUa_BinarySchema_ThreeDOrientation Variable. + + + + + The identifier for the OpcUa_BinarySchema_Frame Variable. + + + + + The identifier for the OpcUa_BinarySchema_ThreeDFrame Variable. + + + + + The identifier for the OpcUa_BinarySchema_IdentityMappingRuleType Variable. + + + + + The identifier for the OpcUa_BinarySchema_CurrencyUnitType Variable. + + + + + The identifier for the OpcUa_BinarySchema_TrustListDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataTypeSchemaHeader Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataTypeDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_StructureDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_EnumDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_SimpleTypeDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_UABinaryFileDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetMetaDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_FieldMetaData Variable. + + + + + The identifier for the OpcUa_BinarySchema_ConfigurationVersionDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedDataSetDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedDataSetSourceDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedVariableDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedDataItemsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PublishedEventsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetWriterDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetWriterTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PubSubGroupDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_WriterGroupDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_WriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_WriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PubSubConnectionDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_NetworkAddressDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_NetworkAddressUrlDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ReaderGroupDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ReaderGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ReaderGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetReaderDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetReaderTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SubscribedDataSetDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_TargetVariablesDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_FieldTargetDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SubscribedDataSetMirrorDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_PubSubConfigurationDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_UadpWriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_UadpDataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_UadpDataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_JsonWriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_JsonDataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_JsonDataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DatagramConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DatagramWriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_BrokerConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_BrokerWriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_BrokerDataSetWriterTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_BrokerDataSetReaderTransportDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_AliasNameDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_RolePermissionType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DataTypeDefinition Variable. + + + + + The identifier for the OpcUa_BinarySchema_StructureField Variable. + + + + + The identifier for the OpcUa_BinarySchema_StructureDefinition Variable. + + + + + The identifier for the OpcUa_BinarySchema_EnumDefinition Variable. + + + + + The identifier for the OpcUa_BinarySchema_Argument Variable. + + + + + The identifier for the OpcUa_BinarySchema_EnumValueType Variable. + + + + + The identifier for the OpcUa_BinarySchema_EnumField Variable. + + + + + The identifier for the OpcUa_BinarySchema_OptionSet Variable. + + + + + The identifier for the OpcUa_BinarySchema_Union Variable. + + + + + The identifier for the OpcUa_BinarySchema_TimeZoneDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ApplicationDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_ServerOnNetwork Variable. + + + + + The identifier for the OpcUa_BinarySchema_UserTokenPolicy Variable. + + + + + The identifier for the OpcUa_BinarySchema_EndpointDescription Variable. + + + + + The identifier for the OpcUa_BinarySchema_RegisteredServer Variable. + + + + + The identifier for the OpcUa_BinarySchema_DiscoveryConfiguration Variable. + + + + + The identifier for the OpcUa_BinarySchema_MdnsDiscoveryConfiguration Variable. + + + + + The identifier for the OpcUa_BinarySchema_SignedSoftwareCertificate Variable. + + + + + The identifier for the OpcUa_BinarySchema_UserIdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_AnonymousIdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_UserNameIdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_X509IdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_IssuedIdentityToken Variable. + + + + + The identifier for the OpcUa_BinarySchema_AddNodesItem Variable. + + + + + The identifier for the OpcUa_BinarySchema_AddReferencesItem Variable. + + + + + The identifier for the OpcUa_BinarySchema_DeleteNodesItem Variable. + + + + + The identifier for the OpcUa_BinarySchema_DeleteReferencesItem Variable. + + + + + The identifier for the OpcUa_BinarySchema_RelativePathElement Variable. + + + + + The identifier for the OpcUa_BinarySchema_RelativePath Variable. + + + + + The identifier for the OpcUa_BinarySchema_EndpointConfiguration Variable. + + + + + The identifier for the OpcUa_BinarySchema_ContentFilterElement Variable. + + + + + The identifier for the OpcUa_BinarySchema_ContentFilter Variable. + + + + + The identifier for the OpcUa_BinarySchema_FilterOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_ElementOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_LiteralOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_AttributeOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_SimpleAttributeOperand Variable. + + + + + The identifier for the OpcUa_BinarySchema_HistoryEvent Variable. + + + + + The identifier for the OpcUa_BinarySchema_MonitoringFilter Variable. + + + + + The identifier for the OpcUa_BinarySchema_EventFilter Variable. + + + + + The identifier for the OpcUa_BinarySchema_AggregateConfiguration Variable. + + + + + The identifier for the OpcUa_BinarySchema_HistoryEventFieldList Variable. + + + + + The identifier for the OpcUa_BinarySchema_BuildInfo Variable. + + + + + The identifier for the OpcUa_BinarySchema_RedundantServerDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_EndpointUrlListDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_NetworkGroupDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SamplingIntervalDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ServerDiagnosticsSummaryDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ServerStatusDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SessionDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SessionSecurityDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ServiceCounterDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_StatusResult Variable. + + + + + The identifier for the OpcUa_BinarySchema_SubscriptionDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ModelChangeStructureDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_SemanticChangeStructureDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_Range Variable. + + + + + The identifier for the OpcUa_BinarySchema_EUInformation Variable. + + + + + The identifier for the OpcUa_BinarySchema_ComplexNumberType Variable. + + + + + The identifier for the OpcUa_BinarySchema_DoubleComplexNumberType Variable. + + + + + The identifier for the OpcUa_BinarySchema_AxisInformation Variable. + + + + + The identifier for the OpcUa_BinarySchema_XVType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ProgramDiagnosticDataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_ProgramDiagnostic2DataType Variable. + + + + + The identifier for the OpcUa_BinarySchema_Annotation Variable. + + + + + The identifier for the OpcUa_XmlSchema Variable. + + + + + The identifier for the OpcUa_XmlSchema_NamespaceUri Variable. + + + + + The identifier for the OpcUa_XmlSchema_Deprecated Variable. + + + + + The identifier for the OpcUa_XmlSchema_KeyValuePair Variable. + + + + + The identifier for the OpcUa_XmlSchema_EndpointType Variable. + + + + + The identifier for the OpcUa_XmlSchema_RationalNumber Variable. + + + + + The identifier for the OpcUa_XmlSchema_Vector Variable. + + + + + The identifier for the OpcUa_XmlSchema_ThreeDVector Variable. + + + + + The identifier for the OpcUa_XmlSchema_CartesianCoordinates Variable. + + + + + The identifier for the OpcUa_XmlSchema_ThreeDCartesianCoordinates Variable. + + + + + The identifier for the OpcUa_XmlSchema_Orientation Variable. + + + + + The identifier for the OpcUa_XmlSchema_ThreeDOrientation Variable. + + + + + The identifier for the OpcUa_XmlSchema_Frame Variable. + + + + + The identifier for the OpcUa_XmlSchema_ThreeDFrame Variable. + + + + + The identifier for the OpcUa_XmlSchema_IdentityMappingRuleType Variable. + + + + + The identifier for the OpcUa_XmlSchema_CurrencyUnitType Variable. + + + + + The identifier for the OpcUa_XmlSchema_TrustListDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataTypeSchemaHeader Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataTypeDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_StructureDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_EnumDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_SimpleTypeDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_UABinaryFileDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetMetaDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_FieldMetaData Variable. + + + + + The identifier for the OpcUa_XmlSchema_ConfigurationVersionDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedDataSetDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedDataSetSourceDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedVariableDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedDataItemsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PublishedEventsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetWriterDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetWriterTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PubSubGroupDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_WriterGroupDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_WriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_WriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PubSubConnectionDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_NetworkAddressDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_NetworkAddressUrlDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ReaderGroupDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ReaderGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ReaderGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetReaderDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetReaderTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SubscribedDataSetDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_TargetVariablesDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_FieldTargetDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SubscribedDataSetMirrorDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_PubSubConfigurationDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_UadpWriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_UadpDataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_UadpDataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_JsonWriterGroupMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_JsonDataSetWriterMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_JsonDataSetReaderMessageDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DatagramConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DatagramWriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_BrokerConnectionTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_BrokerWriterGroupTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_BrokerDataSetWriterTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_BrokerDataSetReaderTransportDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_AliasNameDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_RolePermissionType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DataTypeDefinition Variable. + + + + + The identifier for the OpcUa_XmlSchema_StructureField Variable. + + + + + The identifier for the OpcUa_XmlSchema_StructureDefinition Variable. + + + + + The identifier for the OpcUa_XmlSchema_EnumDefinition Variable. + + + + + The identifier for the OpcUa_XmlSchema_Argument Variable. + + + + + The identifier for the OpcUa_XmlSchema_EnumValueType Variable. + + + + + The identifier for the OpcUa_XmlSchema_EnumField Variable. + + + + + The identifier for the OpcUa_XmlSchema_OptionSet Variable. + + + + + The identifier for the OpcUa_XmlSchema_Union Variable. + + + + + The identifier for the OpcUa_XmlSchema_TimeZoneDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ApplicationDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_ServerOnNetwork Variable. + + + + + The identifier for the OpcUa_XmlSchema_UserTokenPolicy Variable. + + + + + The identifier for the OpcUa_XmlSchema_EndpointDescription Variable. + + + + + The identifier for the OpcUa_XmlSchema_RegisteredServer Variable. + + + + + The identifier for the OpcUa_XmlSchema_DiscoveryConfiguration Variable. + + + + + The identifier for the OpcUa_XmlSchema_MdnsDiscoveryConfiguration Variable. + + + + + The identifier for the OpcUa_XmlSchema_SignedSoftwareCertificate Variable. + + + + + The identifier for the OpcUa_XmlSchema_UserIdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_AnonymousIdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_UserNameIdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_X509IdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_IssuedIdentityToken Variable. + + + + + The identifier for the OpcUa_XmlSchema_AddNodesItem Variable. + + + + + The identifier for the OpcUa_XmlSchema_AddReferencesItem Variable. + + + + + The identifier for the OpcUa_XmlSchema_DeleteNodesItem Variable. + + + + + The identifier for the OpcUa_XmlSchema_DeleteReferencesItem Variable. + + + + + The identifier for the OpcUa_XmlSchema_RelativePathElement Variable. + + + + + The identifier for the OpcUa_XmlSchema_RelativePath Variable. + + + + + The identifier for the OpcUa_XmlSchema_EndpointConfiguration Variable. + + + + + The identifier for the OpcUa_XmlSchema_ContentFilterElement Variable. + + + + + The identifier for the OpcUa_XmlSchema_ContentFilter Variable. + + + + + The identifier for the OpcUa_XmlSchema_FilterOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_ElementOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_LiteralOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_AttributeOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_SimpleAttributeOperand Variable. + + + + + The identifier for the OpcUa_XmlSchema_HistoryEvent Variable. + + + + + The identifier for the OpcUa_XmlSchema_MonitoringFilter Variable. + + + + + The identifier for the OpcUa_XmlSchema_EventFilter Variable. + + + + + The identifier for the OpcUa_XmlSchema_AggregateConfiguration Variable. + + + + + The identifier for the OpcUa_XmlSchema_HistoryEventFieldList Variable. + + + + + The identifier for the OpcUa_XmlSchema_BuildInfo Variable. + + + + + The identifier for the OpcUa_XmlSchema_RedundantServerDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_EndpointUrlListDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_NetworkGroupDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SamplingIntervalDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ServerDiagnosticsSummaryDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ServerStatusDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SessionDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SessionSecurityDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ServiceCounterDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_StatusResult Variable. + + + + + The identifier for the OpcUa_XmlSchema_SubscriptionDiagnosticsDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ModelChangeStructureDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_SemanticChangeStructureDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_Range Variable. + + + + + The identifier for the OpcUa_XmlSchema_EUInformation Variable. + + + + + The identifier for the OpcUa_XmlSchema_ComplexNumberType Variable. + + + + + The identifier for the OpcUa_XmlSchema_DoubleComplexNumberType Variable. + + + + + The identifier for the OpcUa_XmlSchema_AxisInformation Variable. + + + + + The identifier for the OpcUa_XmlSchema_XVType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ProgramDiagnosticDataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_ProgramDiagnostic2DataType Variable. + + + + + The identifier for the OpcUa_XmlSchema_Annotation Variable. + + + + + A class that declares constants for all VariableTypes in the Model Design. + + + + + + The identifier for the BaseVariableType VariableType. + + + + + The identifier for the BaseDataVariableType VariableType. + + + + + The identifier for the PropertyType VariableType. + + + + + The identifier for the DataTypeDescriptionType VariableType. + + + + + The identifier for the DataTypeDictionaryType VariableType. + + + + + The identifier for the ServerVendorCapabilityType VariableType. + + + + + The identifier for the ServerStatusType VariableType. + + + + + The identifier for the BuildInfoType VariableType. + + + + + The identifier for the ServerDiagnosticsSummaryType VariableType. + + + + + The identifier for the SamplingIntervalDiagnosticsArrayType VariableType. + + + + + The identifier for the SamplingIntervalDiagnosticsType VariableType. + + + + + The identifier for the SubscriptionDiagnosticsArrayType VariableType. + + + + + The identifier for the SubscriptionDiagnosticsType VariableType. + + + + + The identifier for the SessionDiagnosticsArrayType VariableType. + + + + + The identifier for the SessionDiagnosticsVariableType VariableType. + + + + + The identifier for the SessionSecurityDiagnosticsArrayType VariableType. + + + + + The identifier for the SessionSecurityDiagnosticsType VariableType. + + + + + The identifier for the OptionSetType VariableType. + + + + + The identifier for the SelectionListType VariableType. + + + + + The identifier for the AudioVariableType VariableType. + + + + + The identifier for the StateVariableType VariableType. + + + + + The identifier for the TransitionVariableType VariableType. + + + + + The identifier for the FiniteStateVariableType VariableType. + + + + + The identifier for the FiniteTransitionVariableType VariableType. + + + + + The identifier for the GuardVariableType VariableType. + + + + + The identifier for the ExpressionGuardVariableType VariableType. + + + + + The identifier for the ElseGuardVariableType VariableType. + + + + + The identifier for the RationalNumberType VariableType. + + + + + The identifier for the VectorType VariableType. + + + + + The identifier for the ThreeDVectorType VariableType. + + + + + The identifier for the CartesianCoordinatesType VariableType. + + + + + The identifier for the ThreeDCartesianCoordinatesType VariableType. + + + + + The identifier for the OrientationType VariableType. + + + + + The identifier for the ThreeDOrientationType VariableType. + + + + + The identifier for the FrameType VariableType. + + + + + The identifier for the ThreeDFrameType VariableType. + + + + + The identifier for the DataItemType VariableType. + + + + + The identifier for the BaseAnalogType VariableType. + + + + + The identifier for the AnalogItemType VariableType. + + + + + The identifier for the AnalogUnitType VariableType. + + + + + The identifier for the AnalogUnitRangeType VariableType. + + + + + The identifier for the DiscreteItemType VariableType. + + + + + The identifier for the TwoStateDiscreteType VariableType. + + + + + The identifier for the MultiStateDiscreteType VariableType. + + + + + The identifier for the MultiStateValueDiscreteType VariableType. + + + + + The identifier for the ArrayItemType VariableType. + + + + + The identifier for the YArrayItemType VariableType. + + + + + The identifier for the XYArrayItemType VariableType. + + + + + The identifier for the ImageItemType VariableType. + + + + + The identifier for the CubeItemType VariableType. + + + + + The identifier for the NDimensionArrayItemType VariableType. + + + + + The identifier for the TwoStateVariableType VariableType. + + + + + The identifier for the ConditionVariableType VariableType. + + + + + The identifier for the AlarmRateVariableType VariableType. + + + + + The identifier for the ProgramDiagnosticType VariableType. + + + + + The identifier for the ProgramDiagnostic2Type VariableType. + + + + + The identifier for the PubSubDiagnosticsCounterType VariableType. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteBaseType VariableType. + + + + + The identifier for the MultiStateDictionaryEntryDiscreteType VariableType. + + + + + Declares all of the BrowseNames used in the Model Design. + + + + + The BrowseName for the A component. + + + + + The BrowseName for the AccessHistoryDataCapability component. + + + + + The BrowseName for the AccessHistoryEventsCapability component. + + + + + The BrowseName for the AccessLevelExType component. + + + + + The BrowseName for the AccessLevelType component. + + + + + The BrowseName for the AccessRestrictionType component. + + + + + The BrowseName for the AckedState component. + + + + + The BrowseName for the Acknowledge component. + + + + + The BrowseName for the AcknowledgeableConditionType component. + + + + + The BrowseName for the ActionTimeStamp component. + + + + + The BrowseName for the ActivateSessionRequest component. + + + + + The BrowseName for the ActivateSessionResponse component. + + + + + The BrowseName for the Active component. + + + + + The BrowseName for the ActiveState component. + + + + + The BrowseName for the Actual component. + + + + + The BrowseName for the ActualSessionTimeout component. + + + + + The BrowseName for the AddApplication component. + + + + + The BrowseName for the AddCertificate component. + + + + + The BrowseName for the AddComment component. + + + + + The BrowseName for the AddConnection component. + + + + + The BrowseName for the AddDataSetFolder component. + + + + + The BrowseName for the AddDataSetReader component. + + + + + The BrowseName for the AddDataSetWriter component. + + + + + The BrowseName for the AddEndpoint component. + + + + + The BrowseName for the AddExtensionField component. + + + + + The BrowseName for the AddIdentity component. + + + + + The BrowseName for the AdditionalGroup_Placeholder component. + + + + + The BrowseName for the AddNodesCount component. + + + + + The BrowseName for the AddNodesItem component. + + + + + The BrowseName for the AddNodesRequest component. + + + + + The BrowseName for the AddNodesResponse component. + + + + + The BrowseName for the AddNodesResult component. + + + + + The BrowseName for the AddPublishedDataItems component. + + + + + The BrowseName for the AddPublishedDataItemsTemplate component. + + + + + The BrowseName for the AddPublishedEvents component. + + + + + The BrowseName for the AddPublishedEventsTemplate component. + + + + + The BrowseName for the AddReaderGroup component. + + + + + The BrowseName for the AddReferencesCount component. + + + + + The BrowseName for the AddReferencesItem component. + + + + + The BrowseName for the AddReferencesRequest component. + + + + + The BrowseName for the AddReferencesResponse component. + + + + + The BrowseName for the Address component. + + + + + The BrowseName for the AddressSpaceFileType component. + + + + + The BrowseName for the AddRole component. + + + + + The BrowseName for the AddSecurityGroup component. + + + + + The BrowseName for the AddTargetVariables component. + + + + + The BrowseName for the AddVariables component. + + + + + The BrowseName for the AddWriterGroup component. + + + + + The BrowseName for the AgencyId component. + + + + + The BrowseName for the AggregateConfiguration component. + + + + + The BrowseName for the AggregateConfigurationType component. + + + + + The BrowseName for the AggregateFilter component. + + + + + The BrowseName for the AggregateFilterResult component. + + + + + The BrowseName for the AggregateFunction_AnnotationCount component. + + + + + The BrowseName for the AggregateFunction_Average component. + + + + + The BrowseName for the AggregateFunction_Count component. + + + + + The BrowseName for the AggregateFunction_Delta component. + + + + + The BrowseName for the AggregateFunction_DeltaBounds component. + + + + + The BrowseName for the AggregateFunction_DurationBad component. + + + + + The BrowseName for the AggregateFunction_DurationGood component. + + + + + The BrowseName for the AggregateFunction_DurationInStateNonZero component. + + + + + The BrowseName for the AggregateFunction_DurationInStateZero component. + + + + + The BrowseName for the AggregateFunction_End component. + + + + + The BrowseName for the AggregateFunction_EndBound component. + + + + + The BrowseName for the AggregateFunction_Interpolative component. + + + + + The BrowseName for the AggregateFunction_Maximum component. + + + + + The BrowseName for the AggregateFunction_Maximum2 component. + + + + + The BrowseName for the AggregateFunction_MaximumActualTime component. + + + + + The BrowseName for the AggregateFunction_MaximumActualTime2 component. + + + + + The BrowseName for the AggregateFunction_Minimum component. + + + + + The BrowseName for the AggregateFunction_Minimum2 component. + + + + + The BrowseName for the AggregateFunction_MinimumActualTime component. + + + + + The BrowseName for the AggregateFunction_MinimumActualTime2 component. + + + + + The BrowseName for the AggregateFunction_NumberOfTransitions component. + + + + + The BrowseName for the AggregateFunction_PercentBad component. + + + + + The BrowseName for the AggregateFunction_PercentGood component. + + + + + The BrowseName for the AggregateFunction_Range component. + + + + + The BrowseName for the AggregateFunction_Range2 component. + + + + + The BrowseName for the AggregateFunction_StandardDeviationPopulation component. + + + + + The BrowseName for the AggregateFunction_StandardDeviationSample component. + + + + + The BrowseName for the AggregateFunction_Start component. + + + + + The BrowseName for the AggregateFunction_StartBound component. + + + + + The BrowseName for the AggregateFunction_TimeAverage component. + + + + + The BrowseName for the AggregateFunction_TimeAverage2 component. + + + + + The BrowseName for the AggregateFunction_Total component. + + + + + The BrowseName for the AggregateFunction_Total2 component. + + + + + The BrowseName for the AggregateFunction_VariancePopulation component. + + + + + The BrowseName for the AggregateFunction_VarianceSample component. + + + + + The BrowseName for the AggregateFunction_WorstQuality component. + + + + + The BrowseName for the AggregateFunction_WorstQuality2 component. + + + + + The BrowseName for the AggregateFunctions component. + + + + + The BrowseName for the AggregateFunctionType component. + + + + + The BrowseName for the Aggregates component. + + + + + The BrowseName for the AlarmConditionInstance_Placeholder component. + + + + + The BrowseName for the AlarmConditionType component. + + + + + The BrowseName for the AlarmCount component. + + + + + The BrowseName for the AlarmGroup_Placeholder component. + + + + + The BrowseName for the AlarmGroupMember component. + + + + + The BrowseName for the AlarmGroupType component. + + + + + The BrowseName for the AlarmMetricsType component. + + + + + The BrowseName for the AlarmRateVariableType component. + + + + + The BrowseName for the Alias_Placeholder component. + + + + + The BrowseName for the Aliases component. + + + + + The BrowseName for the AliasFor component. + + + + + The BrowseName for the AliasNameCategoryType component. + + + + + The BrowseName for the AliasNameDataType component. + + + + + The BrowseName for the AliasNameType component. + + + + + The BrowseName for the AllowNulls component. + + + + + The BrowseName for the AlwaysGeneratesEvent component. + + + + + The BrowseName for the AnalogItemType component. + + + + + The BrowseName for the AnalogUnitRangeType component. + + + + + The BrowseName for the AnalogUnitType component. + + + + + The BrowseName for the AngleUnit component. + + + + + The BrowseName for the Annotation component. + + + + + The BrowseName for the Annotations component. + + + + + The BrowseName for the AnonymousIdentityToken component. + + + + + The BrowseName for the ApplicationCertificateType component. + + + + + The BrowseName for the ApplicationDescription component. + + + + + The BrowseName for the ApplicationInstanceCertificate component. + + + + + The BrowseName for the Applications component. + + + + + The BrowseName for the ApplicationsExclude component. + + + + + The BrowseName for the ApplicationType component. + + + + + The BrowseName for the ApplyChanges component. + + + + + The BrowseName for the ApplyWrite component. + + + + + The BrowseName for the ApplyWriteToError component. + + + + + The BrowseName for the ApplyWriteToIdle component. + + + + + The BrowseName for the Argument component. + + + + + The BrowseName for the ArrayItemType component. + + + + + The BrowseName for the AttributeId component. + + + + + The BrowseName for the AttributeOperand component. + + + + + The BrowseName for the AttributeWriteMask component. + + + + + The BrowseName for the AudibleEnabled component. + + + + + The BrowseName for the AudibleSound component. + + + + + The BrowseName for the AudioDataType component. + + + + + The BrowseName for the AudioVariableType component. + + + + + The BrowseName for the AuditActivateSessionEventType component. + + + + + The BrowseName for the AuditAddNodesEventType component. + + + + + The BrowseName for the AuditAddReferencesEventType component. + + + + + The BrowseName for the AuditCancelEventType component. + + + + + The BrowseName for the AuditCertificateDataMismatchEventType component. + + + + + The BrowseName for the AuditCertificateEventType component. + + + + + The BrowseName for the AuditCertificateExpiredEventType component. + + + + + The BrowseName for the AuditCertificateInvalidEventType component. + + + + + The BrowseName for the AuditCertificateMismatchEventType component. + + + + + The BrowseName for the AuditCertificateRevokedEventType component. + + + + + The BrowseName for the AuditCertificateUntrustedEventType component. + + + + + The BrowseName for the AuditChannelEventType component. + + + + + The BrowseName for the AuditConditionAcknowledgeEventType component. + + + + + The BrowseName for the AuditConditionCommentEventType component. + + + + + The BrowseName for the AuditConditionConfirmEventType component. + + + + + The BrowseName for the AuditConditionEnableEventType component. + + + + + The BrowseName for the AuditConditionEventType component. + + + + + The BrowseName for the AuditConditionOutOfServiceEventType component. + + + + + The BrowseName for the AuditConditionResetEventType component. + + + + + The BrowseName for the AuditConditionRespondEventType component. + + + + + The BrowseName for the AuditConditionShelvingEventType component. + + + + + The BrowseName for the AuditConditionSilenceEventType component. + + + + + The BrowseName for the AuditConditionSuppressionEventType component. + + + + + The BrowseName for the AuditCreateSessionEventType component. + + + + + The BrowseName for the AuditDeleteNodesEventType component. + + + + + The BrowseName for the AuditDeleteReferencesEventType component. + + + + + The BrowseName for the AuditEventType component. + + + + + The BrowseName for the AuditHistoryAnnotationUpdateEventType component. + + + + + The BrowseName for the AuditHistoryAtTimeDeleteEventType component. + + + + + The BrowseName for the AuditHistoryDeleteEventType component. + + + + + The BrowseName for the AuditHistoryEventDeleteEventType component. + + + + + The BrowseName for the AuditHistoryEventUpdateEventType component. + + + + + The BrowseName for the AuditHistoryRawModifyDeleteEventType component. + + + + + The BrowseName for the AuditHistoryUpdateEventType component. + + + + + The BrowseName for the AuditHistoryValueUpdateEventType component. + + + + + The BrowseName for the Auditing component. + + + + + The BrowseName for the AuditNodeManagementEventType component. + + + + + The BrowseName for the AuditOpenSecureChannelEventType component. + + + + + The BrowseName for the AuditProgramTransitionEventType component. + + + + + The BrowseName for the AuditSecurityEventType component. + + + + + The BrowseName for the AuditSessionEventType component. + + + + + The BrowseName for the AuditUpdateEventType component. + + + + + The BrowseName for the AuditUpdateMethodEventType component. + + + + + The BrowseName for the AuditUpdateStateEventType component. + + + + + The BrowseName for the AuditUrlMismatchEventType component. + + + + + The BrowseName for the AuditWriteUpdateEventType component. + + + + + The BrowseName for the AuthenticationMechanism component. + + + + + The BrowseName for the AuthenticationProfileUri component. + + + + + The BrowseName for the AuthorizationServiceConfigurationType component. + + + + + The BrowseName for the AuthorizationServices component. + + + + + The BrowseName for the AutoDelete component. + + + + + The BrowseName for the AvailableStates component. + + + + + The BrowseName for the AvailableTransitions component. + + + + + The BrowseName for the AverageAlarmRate component. + + + + + The BrowseName for the AxisDefinition component. + + + + + The BrowseName for the AxisInformation component. + + + + + The BrowseName for the AxisScaleEnumeration component. + + + + + The BrowseName for the AxisScaleType component. + + + + + The BrowseName for the B component. + + + + + The BrowseName for the BaseAnalogType component. + + + + + The BrowseName for the BaseConditionClassType component. + + + + + The BrowseName for the BaseDataType component. + + + + + The BrowseName for the BaseDataVariableType component. + + + + + The BrowseName for the BaseEventType component. + + + + + The BrowseName for the BaseFrame component. + + + + + The BrowseName for the BaseHighHighLimit component. + + + + + The BrowseName for the BaseHighLimit component. + + + + + The BrowseName for the BaseInterfaceType component. + + + + + The BrowseName for the BaseLowLimit component. + + + + + The BrowseName for the BaseLowLowLimit component. + + + + + The BrowseName for the BaseModelChangeEventType component. + + + + + The BrowseName for the BaseObjectType component. + + + + + The BrowseName for the BaseSetpointNode component. + + + + + The BrowseName for the BaseVariableType component. + + + + + The BrowseName for the BitFieldMaskDataType component. + + + + + The BrowseName for the BitMask component. + + + + + The BrowseName for the Boolean component. + + + + + The BrowseName for the BranchId component. + + + + + The BrowseName for the BrokerConnectionTransportDataType component. + + + + + The BrowseName for the BrokerConnectionTransportType component. + + + + + The BrowseName for the BrokerDataSetReaderTransportDataType component. + + + + + The BrowseName for the BrokerDataSetReaderTransportType component. + + + + + The BrowseName for the BrokerDataSetWriterTransportDataType component. + + + + + The BrowseName for the BrokerDataSetWriterTransportType component. + + + + + The BrowseName for the BrokerTransportQualityOfService component. + + + + + The BrowseName for the BrokerWriterGroupTransportDataType component. + + + + + The BrowseName for the BrokerWriterGroupTransportType component. + + + + + The BrowseName for the BrowseCount component. + + + + + The BrowseName for the BrowseDescription component. + + + + + The BrowseName for the BrowseDirection component. + + + + + The BrowseName for the BrowseNextCount component. + + + + + The BrowseName for the BrowseNextRequest component. + + + + + The BrowseName for the BrowseNextResponse component. + + + + + The BrowseName for the BrowsePath component. + + + + + The BrowseName for the BrowsePathResult component. + + + + + The BrowseName for the BrowsePathTarget component. + + + + + The BrowseName for the BrowseRequest component. + + + + + The BrowseName for the BrowseResponse component. + + + + + The BrowseName for the BrowseResult component. + + + + + The BrowseName for the BrowseResultMask component. + + + + + The BrowseName for the BuildDate component. + + + + + The BrowseName for the BuildInfo component. + + + + + The BrowseName for the BuildInfoType component. + + + + + The BrowseName for the BuildNumber component. + + + + + The BrowseName for the Byte component. + + + + + The BrowseName for the ByteString component. + + + + + The BrowseName for the C component. + + + + + The BrowseName for the CallCount component. + + + + + The BrowseName for the CallMethodRequest component. + + + + + The BrowseName for the CallMethodResult component. + + + + + The BrowseName for the CallRequest component. + + + + + The BrowseName for the CallResponse component. + + + + + The BrowseName for the CancelRequest component. + + + + + The BrowseName for the CancelResponse component. + + + + + The BrowseName for the CartesianCoordinates component. + + + + + The BrowseName for the CartesianCoordinatesType component. + + + + + The BrowseName for the Certificate component. + + + + + The BrowseName for the CertificateExpirationAlarmType component. + + + + + The BrowseName for the CertificateExpired component. + + + + + The BrowseName for the CertificateGroup component. + + + + + The BrowseName for the CertificateGroupFolderType component. + + + + + The BrowseName for the CertificateGroups component. + + + + + The BrowseName for the CertificateGroupType component. + + + + + The BrowseName for the CertificateType component. + + + + + The BrowseName for the CertificateTypes component. + + + + + The BrowseName for the CertificateUpdatedAuditEventType component. + + + + + The BrowseName for the Changes component. + + + + + The BrowseName for the ChannelSecurityToken component. + + + + + The BrowseName for the ChoiceStateType component. + + + + + The BrowseName for the Classification component. + + + + + The BrowseName for the ClientAuditEntryId component. + + + + + The BrowseName for the ClientCertificate component. + + + + + The BrowseName for the ClientCertificateThumbprint component. + + + + + The BrowseName for the ClientConnectionTime component. + + + + + The BrowseName for the ClientDescription component. + + + + + The BrowseName for the ClientLastContactTime component. + + + + + The BrowseName for the ClientName_Placeholder component. + + + + + The BrowseName for the ClientProcessingTimeout component. + + + + + The BrowseName for the ClientSoftwareCertificates component. + + + + + The BrowseName for the ClientUserId component. + + + + + The BrowseName for the ClientUserIdHistory component. + + + + + The BrowseName for the ClientUserIdOfSession component. + + + + + The BrowseName for the Close component. + + + + + The BrowseName for the CloseAndCommit component. + + + + + The BrowseName for the CloseAndUpdate component. + + + + + The BrowseName for the CloseSecureChannelRequest component. + + + + + The BrowseName for the CloseSecureChannelResponse component. + + + + + The BrowseName for the CloseSessionRequest component. + + + + + The BrowseName for the CloseSessionResponse component. + + + + + The BrowseName for the Comment component. + + + + + The BrowseName for the ComplexNumberType component. + + + + + The BrowseName for the ConditionClassId component. + + + + + The BrowseName for the ConditionClassName component. + + + + + The BrowseName for the ConditionEventId component. + + + + + The BrowseName for the ConditionName component. + + + + + The BrowseName for the ConditionRefresh component. + + + + + The BrowseName for the ConditionRefresh2 component. + + + + + The BrowseName for the ConditionSubClassId component. + + + + + The BrowseName for the ConditionSubClassName component. + + + + + The BrowseName for the ConditionType component. + + + + + The BrowseName for the ConditionVariableType component. + + + + + The BrowseName for the ConfigurationVersion component. + + + + + The BrowseName for the ConfigurationVersionDataType component. + + + + + The BrowseName for the ConfiguredSize component. + + + + + The BrowseName for the Confirm component. + + + + + The BrowseName for the ConfirmedState component. + + + + + The BrowseName for the ConnectionId component. + + + + + The BrowseName for the ConnectionName_Placeholder component. + + + + + The BrowseName for the ConnectionProperties component. + + + + + The BrowseName for the ConnectionTransportDataType component. + + + + + The BrowseName for the ConnectionTransportType component. + + + + + The BrowseName for the Constant component. + + + + + The BrowseName for the ContentFilter component. + + + + + The BrowseName for the ContentFilterElement component. + + + + + The BrowseName for the ContentFilterElementResult component. + + + + + The BrowseName for the ContentFilterResult component. + + + + + The BrowseName for the Context component. + + + + + The BrowseName for the ContinuationPoint component. + + + + + The BrowseName for the Counter component. + + + + + The BrowseName for the Counters component. + + + + + The BrowseName for the Creatable component. + + + + + The BrowseName for the CreateClientName component. + + + + + The BrowseName for the CreateCredential component. + + + + + The BrowseName for the CreateDataSetMirror component. + + + + + The BrowseName for the CreateDirectory component. + + + + + The BrowseName for the CreateFile component. + + + + + The BrowseName for the CreateMonitoredItemsCount component. + + + + + The BrowseName for the CreateMonitoredItemsRequest component. + + + + + The BrowseName for the CreateMonitoredItemsResponse component. + + + + + The BrowseName for the CreateSessionId component. + + + + + The BrowseName for the CreateSessionRequest component. + + + + + The BrowseName for the CreateSessionResponse component. + + + + + The BrowseName for the CreateSigningRequest component. + + + + + The BrowseName for the CreateSubscriptionCount component. + + + + + The BrowseName for the CreateSubscriptionRequest component. + + + + + The BrowseName for the CreateSubscriptionResponse component. + + + + + The BrowseName for the CreateTargetVariables component. + + + + + The BrowseName for the CubeItemType component. + + + + + The BrowseName for the CumulatedSessionCount component. + + + + + The BrowseName for the CumulatedSubscriptionCount component. + + + + + The BrowseName for the CurrencyUnit component. + + + + + The BrowseName for the CurrencyUnitType component. + + + + + The BrowseName for the CurrentAlarmRate component. + + + + + The BrowseName for the CurrentKeepAliveCount component. + + + + + The BrowseName for the CurrentLifetimeCount component. + + + + + The BrowseName for the CurrentMonitoredItemsCount component. + + + + + The BrowseName for the CurrentPublishRequestsInQueue component. + + + + + The BrowseName for the CurrentServerId component. + + + + + The BrowseName for the CurrentSessionCount component. + + + + + The BrowseName for the CurrentState component. + + + + + The BrowseName for the CurrentSubscriptionCount component. + + + + + The BrowseName for the CurrentSubscriptionsCount component. + + + + + The BrowseName for the CurrentTime component. + + + + + The BrowseName for the DataChangeFilter component. + + + + + The BrowseName for the DataChangeNotification component. + + + + + The BrowseName for the DataChangeNotificationsCount component. + + + + + The BrowseName for the DataChangeTrigger component. + + + + + The BrowseName for the DatagramConnectionTransportDataType component. + + + + + The BrowseName for the DatagramConnectionTransportType component. + + + + + The BrowseName for the DatagramWriterGroupTransportDataType component. + + + + + The BrowseName for the DatagramWriterGroupTransportType component. + + + + + The BrowseName for the DataItemType component. + + + + + The BrowseName for the DataSetClassId component. + + + + + The BrowseName for the DataSetFieldContentMask component. + + + + + The BrowseName for the DataSetFieldFlags component. + + + + + The BrowseName for the DataSetFolderName_Placeholder component. + + + + + The BrowseName for the DataSetFolderType component. + + + + + The BrowseName for the DataSetMessageContentMask component. + + + + + The BrowseName for the DataSetMetaData component. + + + + + The BrowseName for the DataSetMetaDataType component. + + + + + The BrowseName for the DataSetOffset component. + + + + + The BrowseName for the DataSetOrdering component. + + + + + The BrowseName for the DataSetOrderingType component. + + + + + The BrowseName for the DataSetReaderDataType component. + + + + + The BrowseName for the DataSetReaderMessageDataType component. + + + + + The BrowseName for the DataSetReaderMessageType component. + + + + + The BrowseName for the DataSetReaderName_Placeholder component. + + + + + The BrowseName for the DataSetReaderProperties component. + + + + + The BrowseName for the DataSetReaderTransportDataType component. + + + + + The BrowseName for the DataSetReaderTransportType component. + + + + + The BrowseName for the DataSetReaderType component. + + + + + The BrowseName for the DataSetToWriter component. + + + + + The BrowseName for the DataSetWriterDataType component. + + + + + The BrowseName for the DataSetWriterId component. + + + + + The BrowseName for the DataSetWriterMessageDataType component. + + + + + The BrowseName for the DataSetWriterMessageType component. + + + + + The BrowseName for the DataSetWriterName_Placeholder component. + + + + + The BrowseName for the DataSetWriterProperties component. + + + + + The BrowseName for the DataSetWriterTransportDataType component. + + + + + The BrowseName for the DataSetWriterTransportType component. + + + + + The BrowseName for the DataSetWriterType component. + + + + + The BrowseName for the DataTypeAttributes component. + + + + + The BrowseName for the DataTypeDefinition component. + + + + + The BrowseName for the DataTypeDescription component. + + + + + The BrowseName for the DataTypeDescriptionType component. + + + + + The BrowseName for the DataTypeDictionaryType component. + + + + + The BrowseName for the DataTypeEncodingType component. + + + + + The BrowseName for the DataTypeNode component. + + + + + The BrowseName for the DataTypeSchemaHeader component. + + + + + The BrowseName for the DataTypesFolder component. + + + + + The BrowseName for the DataTypeSystemType component. + + + + + The BrowseName for the DataTypeVersion component. + + + + + The BrowseName for the DataValue component. + + + + + The BrowseName for the Date component. + + + + + The BrowseName for the DateString component. + + + + + The BrowseName for the DateTime component. + + + + + The BrowseName for the DeadbandType component. + + + + + The BrowseName for the Decimal component. + + + + + The BrowseName for the DecimalDataType component. + + + + + The BrowseName for the DecimalString component. + + + + + The BrowseName for the DefaultAccessRestrictions component. + + + + + The BrowseName for the DefaultApplicationGroup component. + + + + + The BrowseName for the DefaultBinary component. + + + + + The BrowseName for the DefaultHttpsGroup component. + + + + + The BrowseName for the DefaultInputValues component. + + + + + The BrowseName for the DefaultInstanceBrowseName component. + + + + + The BrowseName for the DefaultJson component. + + + + + The BrowseName for the DefaultResponse component. + + + + + The BrowseName for the DefaultRolePermissions component. + + + + + The BrowseName for the DefaultUserRolePermissions component. + + + + + The BrowseName for the DefaultUserTokenGroup component. + + + + + The BrowseName for the DefaultXml component. + + + + + The BrowseName for the Definition component. + + + + + The BrowseName for the Deletable component. + + + + + The BrowseName for the DeleteAtTimeCapability component. + + + + + The BrowseName for the DeleteAtTimeDetails component. + + + + + The BrowseName for the DeleteCredential component. + + + + + The BrowseName for the DeleteEventCapability component. + + + + + The BrowseName for the DeleteEventDetails component. + + + + + The BrowseName for the DeleteFileSystemObject component. + + + + + The BrowseName for the DeleteMonitoredItemsCount component. + + + + + The BrowseName for the DeleteMonitoredItemsRequest component. + + + + + The BrowseName for the DeleteMonitoredItemsResponse component. + + + + + The BrowseName for the DeleteNodesCount component. + + + + + The BrowseName for the DeleteNodesItem component. + + + + + The BrowseName for the DeleteNodesRequest component. + + + + + The BrowseName for the DeleteNodesResponse component. + + + + + The BrowseName for the DeleteRawCapability component. + + + + + The BrowseName for the DeleteRawModifiedDetails component. + + + + + The BrowseName for the DeleteReferencesCount component. + + + + + The BrowseName for the DeleteReferencesItem component. + + + + + The BrowseName for the DeleteReferencesRequest component. + + + + + The BrowseName for the DeleteReferencesResponse component. + + + + + The BrowseName for the DeleteSubscriptionsCount component. + + + + + The BrowseName for the DeleteSubscriptionsRequest component. + + + + + The BrowseName for the DeleteSubscriptionsResponse component. + + + + + The BrowseName for the Denominator component. + + + + + The BrowseName for the Deprecated component. + + + + + The BrowseName for the DeviceFailureEventType component. + + + + + The BrowseName for the DiagnosticInfo component. + + + + + The BrowseName for the Diagnostics component. + + + + + The BrowseName for the DiagnosticsLevel component. + + + + + The BrowseName for the DialogConditionType component. + + + + + The BrowseName for the DialogState component. + + + + + The BrowseName for the Dictionaries component. + + + + + The BrowseName for the DictionaryEntryName_Placeholder component. + + + + + The BrowseName for the DictionaryEntryType component. + + + + + The BrowseName for the DictionaryFolderName_Placeholder component. + + + + + The BrowseName for the DictionaryFolderType component. + + + + + The BrowseName for the DictionaryFragment component. + + + + + The BrowseName for the Disable component. + + + + + The BrowseName for the DisableCount component. + + + + + The BrowseName for the DisabledMonitoredItemCount component. + + + + + The BrowseName for the DisabledMonitoredItemsSamplingCount component. + + + + + The BrowseName for the DiscardedMessageCount component. + + + + + The BrowseName for the DiscoveryAddress component. + + + + + The BrowseName for the DiscoveryConfiguration component. + + + + + The BrowseName for the DiscrepancyAlarmType component. + + + + + The BrowseName for the DiscreteAlarmType component. + + + + + The BrowseName for the DiscreteItemType component. + + + + + The BrowseName for the Double component. + + + + + The BrowseName for the DoubleComplexNumberType component. + + + + + The BrowseName for the Duration component. + + + + + The BrowseName for the DurationString component. + + + + + The BrowseName for the EffectiveDisplayName component. + + + + + The BrowseName for the EffectiveTransitionTime component. + + + + + The BrowseName for the ElementOperand component. + + + + + The BrowseName for the ElseGuardVariableType component. + + + + + The BrowseName for the Enable component. + + + + + The BrowseName for the EnableCount component. + + + + + The BrowseName for the EnabledFlag component. + + + + + The BrowseName for the EnabledState component. + + + + + The BrowseName for the Encoding component. + + + + + The BrowseName for the EndpointConfiguration component. + + + + + The BrowseName for the EndpointDescription component. + + + + + The BrowseName for the Endpoints component. + + + + + The BrowseName for the EndpointsExclude component. + + + + + The BrowseName for the EndpointType component. + + + + + The BrowseName for the EndpointUrl component. + + + + + The BrowseName for the EndpointUrlListDataType component. + + + + + The BrowseName for the EndpointUrls component. + + + + + The BrowseName for the EndTime component. + + + + + The BrowseName for the EngineeringUnits component. + + + + + The BrowseName for the EnumDefinition component. + + + + + The BrowseName for the EnumDescription component. + + + + + The BrowseName for the EnumDictionaryEntries component. + + + + + The BrowseName for the Enumeration component. + + + + + The BrowseName for the EnumField component. + + + + + The BrowseName for the EnumStrings component. + + + + + The BrowseName for the EnumValues component. + + + + + The BrowseName for the EnumValueType component. + + + + + The BrowseName for the Error component. + + + + + The BrowseName for the ErrorToIdle component. + + + + + The BrowseName for the EstimatedReturnTime component. + + + + + The BrowseName for the EUInformation component. + + + + + The BrowseName for the EURange component. + + + + + The BrowseName for the EventFieldList component. + + + + + The BrowseName for the EventFilter component. + + + + + The BrowseName for the EventFilterResult component. + + + + + The BrowseName for the EventId component. + + + + + The BrowseName for the EventIds component. + + + + + The BrowseName for the EventNotificationList component. + + + + + The BrowseName for the EventNotificationsCount component. + + + + + The BrowseName for the EventNotifierType component. + + + + + The BrowseName for the EventQueueOverflowCount component. + + + + + The BrowseName for the EventQueueOverflowEventType component. + + + + + The BrowseName for the EventType component. + + + + + The BrowseName for the EventTypesFolder component. + + + + + The BrowseName for the ExceptionDeviation component. + + + + + The BrowseName for the ExceptionDeviationFormat component. + + + + + The BrowseName for the ExclusiveDeviationAlarmType component. + + + + + The BrowseName for the ExclusiveLevelAlarmType component. + + + + + The BrowseName for the ExclusiveLimitAlarmType component. + + + + + The BrowseName for the ExclusiveLimitStateMachineType component. + + + + + The BrowseName for the ExclusiveRateOfChangeAlarmType component. + + + + + The BrowseName for the ExpandedNodeId component. + + + + + The BrowseName for the ExpectedTime component. + + + + + The BrowseName for the ExpirationDate component. + + + + + The BrowseName for the ExpirationLimit component. + + + + + The BrowseName for the ExportNamespace component. + + + + + The BrowseName for the Expression component. + + + + + The BrowseName for the ExpressionGuardVariableType component. + + + + + The BrowseName for the ExtensionFieldName_Placeholder component. + + + + + The BrowseName for the ExtensionFields component. + + + + + The BrowseName for the ExtensionFieldsType component. + + + + + The BrowseName for the FalseState component. + + + + + The BrowseName for the FieldMetaData component. + + + + + The BrowseName for the FieldTargetDataType component. + + + + + The BrowseName for the FileDirectoryName_Placeholder component. + + + + + The BrowseName for the FileDirectoryType component. + + + + + The BrowseName for the FileName_Placeholder component. + + + + + The BrowseName for the FileSystem component. + + + + + The BrowseName for the FileTransferStateMachineType component. + + + + + The BrowseName for the FileType component. + + + + + The BrowseName for the Filter component. + + + + + The BrowseName for the FilterOperand component. + + + + + The BrowseName for the FilterOperator component. + + + + + The BrowseName for the FinalResultData component. + + + + + The BrowseName for the FindAlias component. + + + + + The BrowseName for the FindServersOnNetworkRequest component. + + + + + The BrowseName for the FindServersOnNetworkResponse component. + + + + + The BrowseName for the FindServersRequest component. + + + + + The BrowseName for the FindServersResponse component. + + + + + The BrowseName for the FiniteStateMachineType component. + + + + + The BrowseName for the FiniteStateVariableType component. + + + + + The BrowseName for the FiniteTransitionVariableType component. + + + + + The BrowseName for the FirstInGroup component. + + + + + The BrowseName for the FirstInGroupFlag component. + + + + + The BrowseName for the FixedBase component. + + + + + The BrowseName for the Float component. + + + + + The BrowseName for the FolderType component. + + + + + The BrowseName for the Frame component. + + + + + The BrowseName for the FrameType component. + + + + + The BrowseName for the FromState component. + + + + + The BrowseName for the GeneralModelChangeEventType component. + + + + + The BrowseName for the GenerateFileForRead component. + + + + + The BrowseName for the GenerateFileForWrite component. + + + + + The BrowseName for the GeneratesEvent component. + + + + + The BrowseName for the GenericAttributes component. + + + + + The BrowseName for the GenericAttributeValue component. + + + + + The BrowseName for the GetEncryptingKey component. + + + + + The BrowseName for the GetEndpointsRequest component. + + + + + The BrowseName for the GetEndpointsResponse component. + + + + + The BrowseName for the GetMonitoredItems component. + + + + + The BrowseName for the GetPosition component. + + + + + The BrowseName for the GetRejectedList component. + + + + + The BrowseName for the GetSecurityGroup component. + + + + + The BrowseName for the GetSecurityKeys component. + + + + + The BrowseName for the GroupId component. + + + + + The BrowseName for the GroupProperties component. + + + + + The BrowseName for the GroupVersion component. + + + + + The BrowseName for the GuardVariableType component. + + + + + The BrowseName for the Guid component. + + + + + The BrowseName for the HAConfiguration component. + + + + + The BrowseName for the Halt component. + + + + + The BrowseName for the Halted component. + + + + + The BrowseName for the HaltedToReady component. + + + + + The BrowseName for the HasAddIn component. + + + + + The BrowseName for the HasAlarmSuppressionGroup component. + + + + + The BrowseName for the HasArgumentDescription component. + + + + + The BrowseName for the HasCause component. + + + + + The BrowseName for the HasChild component. + + + + + The BrowseName for the HasComponent component. + + + + + The BrowseName for the HasCondition component. + + + + + The BrowseName for the HasDataSetReader component. + + + + + The BrowseName for the HasDataSetWriter component. + + + + + The BrowseName for the HasDescription component. + + + + + The BrowseName for the HasDictionaryEntry component. + + + + + The BrowseName for the HasEffect component. + + + + + The BrowseName for the HasEffectDisable component. + + + + + The BrowseName for the HasEffectEnable component. + + + + + The BrowseName for the HasEffectSuppressed component. + + + + + The BrowseName for the HasEffectUnsuppressed component. + + + + + The BrowseName for the HasEncoding component. + + + + + The BrowseName for the HasEventSource component. + + + + + The BrowseName for the HasFalseSubState component. + + + + + The BrowseName for the HasGuard component. + + + + + The BrowseName for the HasHistoricalConfiguration component. + + + + + The BrowseName for the HasInterface component. + + + + + The BrowseName for the HasModellingRule component. + + + + + The BrowseName for the HasNotifier component. + + + + + The BrowseName for the HasOptionalInputArgumentDescription component. + + + + + The BrowseName for the HasOrderedComponent component. + + + + + The BrowseName for the HasProperty component. + + + + + The BrowseName for the HasPubSubConnection component. + + + + + The BrowseName for the HasReaderGroup component. + + + + + The BrowseName for the HasSubStateMachine component. + + + + + The BrowseName for the HasSubtype component. + + + + + The BrowseName for the HasTrueSubState component. + + + + + The BrowseName for the HasTypeDefinition component. + + + + + The BrowseName for the HasWriterGroup component. + + + + + The BrowseName for the HeaderLayoutUri component. + + + + + The BrowseName for the HierarchicalReferences component. + + + + + The BrowseName for the High component. + + + + + The BrowseName for the HighHigh component. + + + + + The BrowseName for the HighHighLimit component. + + + + + The BrowseName for the HighHighState component. + + + + + The BrowseName for the HighHighToHigh component. + + + + + The BrowseName for the HighLimit component. + + + + + The BrowseName for the HighlyManagedAlarmConditionClassType component. + + + + + The BrowseName for the HighState component. + + + + + The BrowseName for the HighToHighHigh component. + + + + + The BrowseName for the HistoricalDataConfigurationType component. + + + + + The BrowseName for the HistoricalEventFilter component. + + + + + The BrowseName for the HistoryData component. + + + + + The BrowseName for the HistoryEvent component. + + + + + The BrowseName for the HistoryEventFieldList component. + + + + + The BrowseName for the HistoryModifiedData component. + + + + + The BrowseName for the HistoryReadCount component. + + + + + The BrowseName for the HistoryReadDetails component. + + + + + The BrowseName for the HistoryReadRequest component. + + + + + The BrowseName for the HistoryReadResponse component. + + + + + The BrowseName for the HistoryReadResult component. + + + + + The BrowseName for the HistoryReadValueId component. + + + + + The BrowseName for the HistoryServerCapabilities component. + + + + + The BrowseName for the HistoryServerCapabilitiesType component. + + + + + The BrowseName for the HistoryUpdateCount component. + + + + + The BrowseName for the HistoryUpdateDetails component. + + + + + The BrowseName for the HistoryUpdateRequest component. + + + + + The BrowseName for the HistoryUpdateResponse component. + + + + + The BrowseName for the HistoryUpdateResult component. + + + + + The BrowseName for the HistoryUpdateType component. + + + + + The BrowseName for the HttpsCertificateType component. + + + + + The BrowseName for the Icon component. + + + + + The BrowseName for the Id component. + + + + + The BrowseName for the Identities component. + + + + + The BrowseName for the IdentityCriteriaType component. + + + + + The BrowseName for the IdentityMappingRuleType component. + + + + + The BrowseName for the Idle component. + + + + + The BrowseName for the IdleToApplyWrite component. + + + + + The BrowseName for the IdleToReadPrepare component. + + + + + The BrowseName for the IdType component. + + + + + The BrowseName for the Image component. + + + + + The BrowseName for the ImageBMP component. + + + + + The BrowseName for the ImageGIF component. + + + + + The BrowseName for the ImageItemType component. + + + + + The BrowseName for the ImageJPG component. + + + + + The BrowseName for the ImagePNG component. + + + + + The BrowseName for the Index component. + + + + + The BrowseName for the IndexRange component. + + + + + The BrowseName for the InitialStateType component. + + + + + The BrowseName for the InputArguments component. + + + + + The BrowseName for the InputNode component. + + + + + The BrowseName for the InsertAnnotationCapability component. + + + + + The BrowseName for the InsertDataCapability component. + + + + + The BrowseName for the InsertEventCapability component. + + + + + The BrowseName for the InstanceCount component. + + + + + The BrowseName for the InstanceNode component. + + + + + The BrowseName for the InstrumentDiagnosticAlarmType component. + + + + + The BrowseName for the InstrumentRange component. + + + + + The BrowseName for the Int16 component. + + + + + The BrowseName for the Int32 component. + + + + + The BrowseName for the Int64 component. + + + + + The BrowseName for the Integer component. + + + + + The BrowseName for the IntegerId component. + + + + + The BrowseName for the InterfaceTypes component. + + + + + The BrowseName for the IntermediateResult component. + + + + + The BrowseName for the InvalidHostname component. + + + + + The BrowseName for the InvalidUri component. + + + + + The BrowseName for the InvocationCreationTime component. + + + + + The BrowseName for the IOrderedObjectType component. + + + + + The BrowseName for the IrdiDictionaryEntryType component. + + + + + The BrowseName for the IsDeleteModified component. + + + + + The BrowseName for the IsNamespaceSubset component. + + + + + The BrowseName for the IssuedIdentityToken component. + + + + + The BrowseName for the IssuerEndpointUrl component. + + + + + The BrowseName for the JsonDataSetMessageContentMask component. + + + + + The BrowseName for the JsonDataSetReaderMessageDataType component. + + + + + The BrowseName for the JsonDataSetReaderMessageType component. + + + + + The BrowseName for the JsonDataSetWriterMessageDataType component. + + + + + The BrowseName for the JsonDataSetWriterMessageType component. + + + + + The BrowseName for the JsonNetworkMessageContentMask component. + + + + + The BrowseName for the JsonWriterGroupMessageDataType component. + + + + + The BrowseName for the JsonWriterGroupMessageType component. + + + + + The BrowseName for the KeepAliveTime component. + + + + + The BrowseName for the KeyCredentialAuditEventType component. + + + + + The BrowseName for the KeyCredentialConfiguration component. + + + + + The BrowseName for the KeyCredentialConfigurationFolderType component. + + + + + The BrowseName for the KeyCredentialConfigurationType component. + + + + + The BrowseName for the KeyCredentialDeletedAuditEventType component. + + + + + The BrowseName for the KeyCredentialUpdatedAuditEventType component. + + + + + The BrowseName for the KeyFrameCount component. + + + + + The BrowseName for the KeyLifetime component. + + + + + The BrowseName for the KeyValuePair component. + + + + + The BrowseName for the LastMethodCall component. + + + + + The BrowseName for the LastMethodCallTime component. + + + + + The BrowseName for the LastMethodInputArguments component. + + + + + The BrowseName for the LastMethodInputValues component. + + + + + The BrowseName for the LastMethodOutputArguments component. + + + + + The BrowseName for the LastMethodOutputValues component. + + + + + The BrowseName for the LastMethodReturnStatus component. + + + + + The BrowseName for the LastMethodSessionId component. + + + + + The BrowseName for the LastResponse component. + + + + + The BrowseName for the LastSeverity component. + + + + + The BrowseName for the LastTransition component. + + + + + The BrowseName for the LastTransitionTime component. + + + + + The BrowseName for the LastUpdateTime component. + + + + + The BrowseName for the LatchedState component. + + + + + The BrowseName for the LatePublishRequestCount component. + + + + + The BrowseName for the LengthUnit component. + + + + + The BrowseName for the LimitAlarmType component. + + + + + The BrowseName for the LimitState component. + + + + + The BrowseName for the ListId component. + + + + + The BrowseName for the LiteralOperand component. + + + + + The BrowseName for the LiveValues component. + + + + + The BrowseName for the LocaleId component. + + + + + The BrowseName for the LocaleIdArray component. + + + + + The BrowseName for the LocaleIds component. + + + + + The BrowseName for the LocalizedText component. + + + + + The BrowseName for the LocalTime component. + + + + + The BrowseName for the Low component. + + + + + The BrowseName for the LowLimit component. + + + + + The BrowseName for the LowLow component. + + + + + The BrowseName for the LowLowLimit component. + + + + + The BrowseName for the LowLowState component. + + + + + The BrowseName for the LowLowToLow component. + + + + + The BrowseName for the LowState component. + + + + + The BrowseName for the LowToLowLow component. + + + + + The BrowseName for the MaintenanceConditionClassType component. + + + + + The BrowseName for the ManufacturerName component. + + + + + The BrowseName for the MaxArrayLength component. + + + + + The BrowseName for the MaxBrowseContinuationPoints component. + + + + + The BrowseName for the MaxByteStringLength component. + + + + + The BrowseName for the MaxCharacters component. + + + + + The BrowseName for the MaxFutureKeyCount component. + + + + + The BrowseName for the MaxHistoryContinuationPoints component. + + + + + The BrowseName for the Maximum component. + + + + + The BrowseName for the MaximumActiveState component. + + + + + The BrowseName for the MaximumAlarmRate component. + + + + + The BrowseName for the MaximumReAlarmCount component. + + + + + The BrowseName for the MaximumUnAck component. + + + + + The BrowseName for the MaxInstanceCount component. + + + + + The BrowseName for the MaxKeepAliveCount component. + + + + + The BrowseName for the MaxLifetimeCount component. + + + + + The BrowseName for the MaxMonitoredItemsPerCall component. + + + + + The BrowseName for the MaxNetworkMessageSize component. + + + + + The BrowseName for the MaxNodesPerBrowse component. + + + + + The BrowseName for the MaxNodesPerHistoryReadData component. + + + + + The BrowseName for the MaxNodesPerHistoryReadEvents component. + + + + + The BrowseName for the MaxNodesPerHistoryUpdateData component. + + + + + The BrowseName for the MaxNodesPerHistoryUpdateEvents component. + + + + + The BrowseName for the MaxNodesPerMethodCall component. + + + + + The BrowseName for the MaxNodesPerNodeManagement component. + + + + + The BrowseName for the MaxNodesPerRead component. + + + + + The BrowseName for the MaxNodesPerRegisterNodes component. + + + + + The BrowseName for the MaxNodesPerTranslateBrowsePathsToNodeIds component. + + + + + The BrowseName for the MaxNodesPerWrite component. + + + + + The BrowseName for the MaxNotificationsPerPublish component. + + + + + The BrowseName for the MaxPastKeyCount component. + + + + + The BrowseName for the MaxQueryContinuationPoints component. + + + + + The BrowseName for the MaxRecycleCount component. + + + + + The BrowseName for the MaxResponseMessageSize component. + + + + + The BrowseName for the MaxReturnDataValues component. + + + + + The BrowseName for the MaxReturnEventValues component. + + + + + The BrowseName for the MaxSampledMonitoredItemsCount component. + + + + + The BrowseName for the MaxStringLength component. + + + + + The BrowseName for the MaxTimeInterval component. + + + + + The BrowseName for the MaxTimeShelved component. + + + + + The BrowseName for the MaxTrustListSize component. + + + + + The BrowseName for the MdnsDiscoveryConfiguration component. + + + + + The BrowseName for the Message component. + + + + + The BrowseName for the MessageReceiveTimeout component. + + + + + The BrowseName for the MessageRepeatCount component. + + + + + The BrowseName for the MessageRepeatDelay component. + + + + + The BrowseName for the MessageSecurityMode component. + + + + + The BrowseName for the MessageSettings component. + + + + + The BrowseName for the MetaDataQueueName component. + + + + + The BrowseName for the MetaDataUpdateTime component. + + + + + The BrowseName for the MethodAttributes component. + + + + + The BrowseName for the MethodId component. + + + + + The BrowseName for the MethodNode component. + + + + + The BrowseName for the MimeType component. + + + + + The BrowseName for the MinSupportedSampleRate component. + + + + + The BrowseName for the MinTimeInterval component. + + + + + The BrowseName for the ModelChangeStructureDataType component. + + + + + The BrowseName for the ModelChangeStructureVerbMask component. + + + + + The BrowseName for the ModellingRule_ExposesItsArray component. + + + + + The BrowseName for the ModellingRule_Mandatory component. + + + + + The BrowseName for the ModellingRule_MandatoryPlaceholder component. + + + + + The BrowseName for the ModellingRule_Optional component. + + + + + The BrowseName for the ModellingRule_OptionalPlaceholder component. + + + + + The BrowseName for the ModellingRules component. + + + + + The BrowseName for the ModellingRuleType component. + + + + + The BrowseName for the ModificationInfo component. + + + + + The BrowseName for the ModifyCount component. + + + + + The BrowseName for the ModifyFieldSelection component. + + + + + The BrowseName for the ModifyMonitoredItemsCount component. + + + + + The BrowseName for the ModifyMonitoredItemsRequest component. + + + + + The BrowseName for the ModifyMonitoredItemsResponse component. + + + + + The BrowseName for the ModifySubscriptionCount component. + + + + + The BrowseName for the ModifySubscriptionRequest component. + + + + + The BrowseName for the ModifySubscriptionResponse component. + + + + + The BrowseName for the MonitoredItemCount component. + + + + + The BrowseName for the MonitoredItemCreateRequest component. + + + + + The BrowseName for the MonitoredItemCreateResult component. + + + + + The BrowseName for the MonitoredItemModifyRequest component. + + + + + The BrowseName for the MonitoredItemModifyResult component. + + + + + The BrowseName for the MonitoredItemNotification component. + + + + + The BrowseName for the MonitoringFilter component. + + + + + The BrowseName for the MonitoringFilterResult component. + + + + + The BrowseName for the MonitoringMode component. + + + + + The BrowseName for the MonitoringParameters component. + + + + + The BrowseName for the MonitoringQueueOverflowCount component. + + + + + The BrowseName for the MoveOrCopy component. + + + + + The BrowseName for the MulticastDnsEnabled component. + + + + + The BrowseName for the MultiStateDictionaryEntryDiscreteBaseType component. + + + + + The BrowseName for the MultiStateDictionaryEntryDiscreteType component. + + + + + The BrowseName for the MultiStateDiscreteType component. + + + + + The BrowseName for the MultiStateValueDiscreteType component. + + + + + The BrowseName for the Name component. + + + + + The BrowseName for the NamespaceArray component. + + + + + The BrowseName for the NamespaceFile component. + + + + + The BrowseName for the NamespaceIdentifier_Placeholder component. + + + + + The BrowseName for the NamespaceMetadataType component. + + + + + The BrowseName for the NamespacePublicationDate component. + + + + + The BrowseName for the Namespaces component. + + + + + The BrowseName for the NamespacesType component. + + + + + The BrowseName for the NamespaceUri component. + + + + + The BrowseName for the NamespaceVersion component. + + + + + The BrowseName for the NamingRule component. + + + + + The BrowseName for the NamingRuleType component. + + + + + The BrowseName for the NDimensionArrayItemType component. + + + + + The BrowseName for the NetworkAddressDataType component. + + + + + The BrowseName for the NetworkAddressType component. + + + + + The BrowseName for the NetworkAddressUrlDataType component. + + + + + The BrowseName for the NetworkAddressUrlType component. + + + + + The BrowseName for the NetworkGroupDataType component. + + + + + The BrowseName for the NetworkInterface component. + + + + + The BrowseName for the NetworkMessageContentMask component. + + + + + The BrowseName for the NetworkMessageNumber component. + + + + + The BrowseName for the NewStateId component. + + + + + The BrowseName for the NewValue component. + + + + + The BrowseName for the NewValues component. + + + + + The BrowseName for the NextSequenceNumber component. + + + + + The BrowseName for the Node component. + + + + + The BrowseName for the NodeAttributes component. + + + + + The BrowseName for the NodeAttributesMask component. + + + + + The BrowseName for the NodeClass component. + + + + + The BrowseName for the NodeId component. + + + + + The BrowseName for the NodeReference component. + + + + + The BrowseName for the NodesToAdd component. + + + + + The BrowseName for the NodesToDelete component. + + + + + The BrowseName for the NodeTypeDescription component. + + + + + The BrowseName for the NodeVersion component. + + + + + The BrowseName for the NonExclusiveDeviationAlarmType component. + + + + + The BrowseName for the NonExclusiveLevelAlarmType component. + + + + + The BrowseName for the NonExclusiveLimitAlarmType component. + + + + + The BrowseName for the NonExclusiveRateOfChangeAlarmType component. + + + + + The BrowseName for the NonHierarchicalReferences component. + + + + + The BrowseName for the NonTransparentNetworkRedundancyType component. + + + + + The BrowseName for the NonTransparentRedundancyType component. + + + + + The BrowseName for the NormalizedString component. + + + + + The BrowseName for the NormalState component. + + + + + The BrowseName for the NotificationData component. + + + + + The BrowseName for the NotificationMessage component. + + + + + The BrowseName for the NotificationsCount component. + + + + + The BrowseName for the Number component. + + + + + The BrowseName for the NumberInList component. + + + + + The BrowseName for the Numerator component. + + + + + The BrowseName for the NumericRange component. + + + + + The BrowseName for the ObjectAttributes component. + + + + + The BrowseName for the ObjectNode component. + + + + + The BrowseName for the ObjectsFolder component. + + + + + The BrowseName for the ObjectTypeAttributes component. + + + + + The BrowseName for the ObjectTypeNode component. + + + + + The BrowseName for the ObjectTypesFolder component. + + + + + The BrowseName for the OffDelay component. + + + + + The BrowseName for the OffNormalAlarmType component. + + + + + The BrowseName for the OkResponse component. + + + + + The BrowseName for the OldStateId component. + + + + + The BrowseName for the OldValue component. + + + + + The BrowseName for the OldValues component. + + + + + The BrowseName for the OnDelay component. + + + + + The BrowseName for the OneShotShelve component. + + + + + The BrowseName for the OneShotShelved component. + + + + + The BrowseName for the OneShotShelvedToTimedShelved component. + + + + + The BrowseName for the OneShotShelvedToUnshelved component. + + + + + The BrowseName for the OPCBinarySchema_TypeSystem component. + + + + + The BrowseName for the OpcUa_BinarySchema component. + + + + + The BrowseName for the OpcUa_XmlSchema component. + + + + + The BrowseName for the OPCUANamespaceMetadata component. + + + + + The BrowseName for the Open component. + + + + + The BrowseName for the OpenCount component. + + + + + The BrowseName for the OpenFileMode component. + + + + + The BrowseName for the OpenSecureChannelRequest component. + + + + + The BrowseName for the OpenSecureChannelResponse component. + + + + + The BrowseName for the OpenWithMasks component. + + + + + The BrowseName for the OperationLimits component. + + + + + The BrowseName for the OperationLimitsType component. + + + + + The BrowseName for the OptionSet component. + + + + + The BrowseName for the OptionSetType component. + + + + + The BrowseName for the OptionSetValues component. + + + + + The BrowseName for the OrderedListType component. + + + + + The BrowseName for the OrderedObject_Placeholder component. + + + + + The BrowseName for the Organizes component. + + + + + The BrowseName for the Orientation component. + + + + + The BrowseName for the OrientationType component. + + + + + The BrowseName for the OutOfServiceState component. + + + + + The BrowseName for the OutputArguments component. + + + + + The BrowseName for the OverrideValueHandling component. + + + + + The BrowseName for the ParameterDataTypeId component. + + + + + The BrowseName for the ParsingResult component. + + + + + The BrowseName for the PercentDataBad component. + + + + + The BrowseName for the PercentDataGood component. + + + + + The BrowseName for the PerformInsertReplace component. + + + + + The BrowseName for the PerformUpdateType component. + + + + + The BrowseName for the PermissionType component. + + + + + The BrowseName for the PlaceInService component. + + + + + The BrowseName for the Priority component. + + + + + The BrowseName for the ProcessConditionClassType component. + + + + + The BrowseName for the ProcessingOffset component. + + + + + The BrowseName for the ProductName component. + + + + + The BrowseName for the ProductUri component. + + + + + The BrowseName for the ProfileUri component. + + + + + The BrowseName for the ProgramDiagnostic component. + + + + + The BrowseName for the ProgramDiagnostic2DataType component. + + + + + The BrowseName for the ProgramDiagnostic2Type component. + + + + + The BrowseName for the ProgramDiagnosticDataType component. + + + + + The BrowseName for the ProgramDiagnosticType component. + + + + + The BrowseName for the ProgramStateMachineType component. + + + + + The BrowseName for the ProgramTransitionAuditEventType component. + + + + + The BrowseName for the ProgramTransitionEventType component. + + + + + The BrowseName for the Progress component. + + + + + The BrowseName for the ProgressEventType component. + + + + + The BrowseName for the Prompt component. + + + + + The BrowseName for the PropertyType component. + + + + + The BrowseName for the PublishCount component. + + + + + The BrowseName for the PublishedData component. + + + + + The BrowseName for the PublishedDataItemsDataType component. + + + + + The BrowseName for the PublishedDataItemsType component. + + + + + The BrowseName for the PublishedDataSetDataType component. + + + + + The BrowseName for the PublishedDataSetName_Placeholder component. + + + + + The BrowseName for the PublishedDataSets component. + + + + + The BrowseName for the PublishedDataSetSourceDataType component. + + + + + The BrowseName for the PublishedDataSetType component. + + + + + The BrowseName for the PublishedEventsDataType component. + + + + + The BrowseName for the PublishedEventsType component. + + + + + The BrowseName for the PublishedVariableDataType component. + + + + + The BrowseName for the PublisherId component. + + + + + The BrowseName for the PublishingEnabled component. + + + + + The BrowseName for the PublishingInterval component. + + + + + The BrowseName for the PublishingIntervalCount component. + + + + + The BrowseName for the PublishingOffset component. + + + + + The BrowseName for the PublishRequest component. + + + + + The BrowseName for the PublishRequestCount component. + + + + + The BrowseName for the PublishResponse component. + + + + + The BrowseName for the PublishSubscribe component. + + + + + The BrowseName for the PublishSubscribeType component. + + + + + The BrowseName for the PubSubCommunicationFailureEventType component. + + + + + The BrowseName for the PubSubConfigurationDataType component. + + + + + The BrowseName for the PubSubConnectionDataType component. + + + + + The BrowseName for the PubSubConnectionType component. + + + + + The BrowseName for the PubSubDiagnosticsConnectionType component. + + + + + The BrowseName for the PubSubDiagnosticsCounterClassification component. + + + + + The BrowseName for the PubSubDiagnosticsCounterType component. + + + + + The BrowseName for the PubSubDiagnosticsDataSetReaderType component. + + + + + The BrowseName for the PubSubDiagnosticsDataSetWriterType component. + + + + + The BrowseName for the PubSubDiagnosticsReaderGroupType component. + + + + + The BrowseName for the PubSubDiagnosticsRootType component. + + + + + The BrowseName for the PubSubDiagnosticsType component. + + + + + The BrowseName for the PubSubDiagnosticsWriterGroupType component. + + + + + The BrowseName for the PubSubEventNotifier component. + + + + + The BrowseName for the PubSubGroupDataType component. + + + + + The BrowseName for the PubSubGroupType component. + + + + + The BrowseName for the PubSubKeyServiceType component. + + + + + The BrowseName for the PubSubState component. + + + + + The BrowseName for the PubSubStatusEventType component. + + + + + The BrowseName for the PubSubStatusType component. + + + + + The BrowseName for the PubSubTransportLimitsExceedEventType component. + + + + + The BrowseName for the QualifiedName component. + + + + + The BrowseName for the Quality component. + + + + + The BrowseName for the QueryDataDescription component. + + + + + The BrowseName for the QueryDataSet component. + + + + + The BrowseName for the QueryFirstCount component. + + + + + The BrowseName for the QueryFirstRequest component. + + + + + The BrowseName for the QueryFirstResponse component. + + + + + The BrowseName for the QueryNextCount component. + + + + + The BrowseName for the QueryNextRequest component. + + + + + The BrowseName for the QueryNextResponse component. + + + + + The BrowseName for the QueueName component. + + + + + The BrowseName for the Range component. + + + + + The BrowseName for the Rate component. + + + + + The BrowseName for the RationalNumber component. + + + + + The BrowseName for the RationalNumberType component. + + + + + The BrowseName for the Read component. + + + + + The BrowseName for the ReadAnnotationDataDetails component. + + + + + The BrowseName for the ReadAtTimeDetails component. + + + + + The BrowseName for the ReadCount component. + + + + + The BrowseName for the ReaderGroupDataType component. + + + + + The BrowseName for the ReaderGroupMessageDataType component. + + + + + The BrowseName for the ReaderGroupMessageType component. + + + + + The BrowseName for the ReaderGroupName_Placeholder component. + + + + + The BrowseName for the ReaderGroupTransportDataType component. + + + + + The BrowseName for the ReaderGroupTransportType component. + + + + + The BrowseName for the ReaderGroupType component. + + + + + The BrowseName for the ReadEventDetails component. + + + + + The BrowseName for the ReadPrepare component. + + + + + The BrowseName for the ReadPrepareToError component. + + + + + The BrowseName for the ReadPrepareToReadTransfer component. + + + + + The BrowseName for the ReadProcessedDetails component. + + + + + The BrowseName for the ReadRawModifiedDetails component. + + + + + The BrowseName for the ReadRequest component. + + + + + The BrowseName for the ReadResponse component. + + + + + The BrowseName for the ReadTransfer component. + + + + + The BrowseName for the ReadTransferToError component. + + + + + The BrowseName for the ReadTransferToIdle component. + + + + + The BrowseName for the ReadValueId component. + + + + + The BrowseName for the Ready component. + + + + + The BrowseName for the ReadyToHalted component. + + + + + The BrowseName for the ReadyToRunning component. + + + + + The BrowseName for the ReAlarmRepeatCount component. + + + + + The BrowseName for the ReAlarmTime component. + + + + + The BrowseName for the ReceiveOffset component. + + + + + The BrowseName for the ReceiveTime component. + + + + + The BrowseName for the RecycleCount component. + + + + + The BrowseName for the RedundancySupport component. + + + + + The BrowseName for the RedundantServerArray component. + + + + + The BrowseName for the RedundantServerDataType component. + + + + + The BrowseName for the ReferenceDescription component. + + + + + The BrowseName for the ReferenceNode component. + + + + + The BrowseName for the References component. + + + + + The BrowseName for the ReferencesToAdd component. + + + + + The BrowseName for the ReferencesToDelete component. + + + + + The BrowseName for the ReferenceTypeAttributes component. + + + + + The BrowseName for the ReferenceTypeNode component. + + + + + The BrowseName for the ReferenceTypesFolder component. + + + + + The BrowseName for the RefreshEndEventType component. + + + + + The BrowseName for the RefreshRequiredEventType component. + + + + + The BrowseName for the RefreshStartEventType component. + + + + + The BrowseName for the RegisteredServer component. + + + + + The BrowseName for the RegisterNodesCount component. + + + + + The BrowseName for the RegisterNodesRequest component. + + + + + The BrowseName for the RegisterNodesResponse component. + + + + + The BrowseName for the RegisterServer2Request component. + + + + + The BrowseName for the RegisterServer2Response component. + + + + + The BrowseName for the RegisterServerRequest component. + + + + + The BrowseName for the RegisterServerResponse component. + + + + + The BrowseName for the RejectedRequestsCount component. + + + + + The BrowseName for the RejectedSessionCount component. + + + + + The BrowseName for the RelativePath component. + + + + + The BrowseName for the RelativePathElement component. + + + + + The BrowseName for the RemoveApplication component. + + + + + The BrowseName for the RemoveCertificate component. + + + + + The BrowseName for the RemoveConnection component. + + + + + The BrowseName for the RemoveDataSetFolder component. + + + + + The BrowseName for the RemoveDataSetReader component. + + + + + The BrowseName for the RemoveDataSetWriter component. + + + + + The BrowseName for the RemoveEndpoint component. + + + + + The BrowseName for the RemoveExtensionField component. + + + + + The BrowseName for the RemoveFromService component. + + + + + The BrowseName for the RemoveGroup component. + + + + + The BrowseName for the RemoveIdentity component. + + + + + The BrowseName for the RemovePublishedDataSet component. + + + + + The BrowseName for the RemoveRole component. + + + + + The BrowseName for the RemoveSecurityGroup component. + + + + + The BrowseName for the RemoveTargetVariables component. + + + + + The BrowseName for the RemoveVariables component. + + + + + The BrowseName for the ReplaceDataCapability component. + + + + + The BrowseName for the ReplaceEventCapability component. + + + + + The BrowseName for the RepublishCount component. + + + + + The BrowseName for the RepublishMessageCount component. + + + + + The BrowseName for the RepublishMessageRequestCount component. + + + + + The BrowseName for the RepublishRequest component. + + + + + The BrowseName for the RepublishRequestCount component. + + + + + The BrowseName for the RepublishResponse component. + + + + + The BrowseName for the ReqTimes component. + + + + + The BrowseName for the RequestedDeliveryGuarantee component. + + + + + The BrowseName for the RequestedLifetime component. + + + + + The BrowseName for the RequestHandle component. + + + + + The BrowseName for the RequestHeader component. + + + + + The BrowseName for the RequestServerStateChange component. + + + + + The BrowseName for the RequestType component. + + + + + The BrowseName for the ResendData component. + + + + + The BrowseName for the Reset component. + + + + + The BrowseName for the ResourceUri component. + + + + + The BrowseName for the Respond component. + + + + + The BrowseName for the ResponseHeader component. + + + + + The BrowseName for the ResponseOptionSet component. + + + + + The BrowseName for the RestrictToList component. + + + + + The BrowseName for the Resume component. + + + + + The BrowseName for the Retain component. + + + + + The BrowseName for the RevisedSessionTimeout component. + + + + + The BrowseName for the RoleMappingRuleChangedAuditEventType component. + + + + + The BrowseName for the RoleName_Placeholder component. + + + + + The BrowseName for the RolePermissionType component. + + + + + The BrowseName for the RoleSet component. + + + + + The BrowseName for the RoleSetType component. + + + + + The BrowseName for the RoleType component. + + + + + The BrowseName for the RootFolder component. + + + + + The BrowseName for the RsaEncryptedSecret component. + + + + + The BrowseName for the RsaMinApplicationCertificateType component. + + + + + The BrowseName for the RsaSha256ApplicationCertificateType component. + + + + + The BrowseName for the Running component. + + + + + The BrowseName for the RunningToHalted component. + + + + + The BrowseName for the RunningToReady component. + + + + + The BrowseName for the RunningToSuspended component. + + + + + The BrowseName for the SafetyConditionClassType component. + + + + + The BrowseName for the SampledMonitoredItemsCount component. + + + + + The BrowseName for the SamplingInterval component. + + + + + The BrowseName for the SamplingIntervalDiagnostics component. + + + + + The BrowseName for the SamplingIntervalDiagnosticsArray component. + + + + + The BrowseName for the SamplingIntervalDiagnosticsArrayType component. + + + + + The BrowseName for the SamplingIntervalDiagnosticsDataType component. + + + + + The BrowseName for the SamplingIntervalDiagnosticsType component. + + + + + The BrowseName for the SamplingOffset component. + + + + + The BrowseName for the SByte component. + + + + + The BrowseName for the SecondsTillShutdown component. + + + + + The BrowseName for the SecureChannelId component. + + + + + The BrowseName for the SecurityGroupFolderName_Placeholder component. + + + + + The BrowseName for the SecurityGroupFolderType component. + + + + + The BrowseName for the SecurityGroupId component. + + + + + The BrowseName for the SecurityGroupName_Placeholder component. + + + + + The BrowseName for the SecurityGroups component. + + + + + The BrowseName for the SecurityGroupType component. + + + + + The BrowseName for the SecurityKeyServices component. + + + + + The BrowseName for the SecurityMode component. + + + + + The BrowseName for the SecurityPolicyUri component. + + + + + The BrowseName for the SecurityRejectedRequestsCount component. + + + + + The BrowseName for the SecurityRejectedSessionCount component. + + + + + The BrowseName for the SecurityTokenRequestType component. + + + + + The BrowseName for the SelectedFields component. + + + + + The BrowseName for the SelectedResponse component. + + + + + The BrowseName for the SelectionDescriptions component. + + + + + The BrowseName for the SelectionListType component. + + + + + The BrowseName for the Selections component. + + + + + The BrowseName for the SemanticChangeEventType component. + + + + + The BrowseName for the SemanticChangeStructureDataType component. + + + + + The BrowseName for the Server component. + + + + + The BrowseName for the ServerArray component. + + + + + The BrowseName for the ServerCapabilities component. + + + + + The BrowseName for the ServerCapabilitiesType component. + + + + + The BrowseName for the ServerConfiguration component. + + + + + The BrowseName for the ServerConfigurationType component. + + + + + The BrowseName for the ServerDiagnostics component. + + + + + The BrowseName for the ServerDiagnosticsSummary component. + + + + + The BrowseName for the ServerDiagnosticsSummaryDataType component. + + + + + The BrowseName for the ServerDiagnosticsSummaryType component. + + + + + The BrowseName for the ServerDiagnosticsType component. + + + + + The BrowseName for the ServerId component. + + + + + The BrowseName for the ServerNetworkGroups component. + + + + + The BrowseName for the ServerOnNetwork component. + + + + + The BrowseName for the ServerProfileArray component. + + + + + The BrowseName for the ServerRedundancy component. + + + + + The BrowseName for the ServerRedundancyType component. + + + + + The BrowseName for the ServerState component. + + + + + The BrowseName for the ServerStatus component. + + + + + The BrowseName for the ServerStatusDataType component. + + + + + The BrowseName for the ServerStatusType component. + + + + + The BrowseName for the ServerTimestampSupported component. + + + + + The BrowseName for the ServerType component. + + + + + The BrowseName for the ServerUri component. + + + + + The BrowseName for the ServerUriArray component. + + + + + The BrowseName for the ServerVendorCapabilityType component. + + + + + The BrowseName for the ServerViewCount component. + + + + + The BrowseName for the ServiceCertificate component. + + + + + The BrowseName for the ServiceCounterDataType component. + + + + + The BrowseName for the ServiceFault component. + + + + + The BrowseName for the ServiceLevel component. + + + + + The BrowseName for the ServiceName_Placeholder component. + + + + + The BrowseName for the ServiceStatus component. + + + + + The BrowseName for the ServiceUri component. + + + + + The BrowseName for the SessionAbortCount component. + + + + + The BrowseName for the SessionAuthenticationToken component. + + + + + The BrowseName for the SessionDiagnostics component. + + + + + The BrowseName for the SessionDiagnosticsArray component. + + + + + The BrowseName for the SessionDiagnosticsArrayType component. + + + + + The BrowseName for the SessionDiagnosticsDataType component. + + + + + The BrowseName for the SessionDiagnosticsObjectType component. + + + + + The BrowseName for the SessionDiagnosticsVariableType component. + + + + + The BrowseName for the SessionId component. + + + + + The BrowseName for the SessionlessInvokeRequestType component. + + + + + The BrowseName for the SessionlessInvokeResponseType component. + + + + + The BrowseName for the SessionName component. + + + + + The BrowseName for the SessionsDiagnosticsSummary component. + + + + + The BrowseName for the SessionsDiagnosticsSummaryType component. + + + + + The BrowseName for the SessionSecurityDiagnostics component. + + + + + The BrowseName for the SessionSecurityDiagnosticsArray component. + + + + + The BrowseName for the SessionSecurityDiagnosticsArrayType component. + + + + + The BrowseName for the SessionSecurityDiagnosticsDataType component. + + + + + The BrowseName for the SessionSecurityDiagnosticsType component. + + + + + The BrowseName for the SessionTimeoutCount component. + + + + + The BrowseName for the SetMonitoringModeCount component. + + + + + The BrowseName for the SetMonitoringModeRequest component. + + + + + The BrowseName for the SetMonitoringModeResponse component. + + + + + The BrowseName for the SetpointNode component. + + + + + The BrowseName for the SetPosition component. + + + + + The BrowseName for the SetPublishingModeCount component. + + + + + The BrowseName for the SetPublishingModeRequest component. + + + + + The BrowseName for the SetPublishingModeResponse component. + + + + + The BrowseName for the SetSecurityKeys component. + + + + + The BrowseName for the SetSubscriptionDurable component. + + + + + The BrowseName for the SetTriggeringCount component. + + + + + The BrowseName for the SetTriggeringRequest component. + + + + + The BrowseName for the SetTriggeringResponse component. + + + + + The BrowseName for the Severity component. + + + + + The BrowseName for the ShelvedStateMachineType component. + + + + + The BrowseName for the ShelvingState component. + + + + + The BrowseName for the ShelvingTime component. + + + + + The BrowseName for the ShutdownReason component. + + + + + The BrowseName for the SignatureData component. + + + + + The BrowseName for the SignedSoftwareCertificate component. + + + + + The BrowseName for the Silence component. + + + + + The BrowseName for the SilenceState component. + + + + + The BrowseName for the SimpleAttributeOperand component. + + + + + The BrowseName for the SimpleTypeDescription component. + + + + + The BrowseName for the Size component. + + + + + The BrowseName for the SoftwareCertificates component. + + + + + The BrowseName for the SoftwareVersion component. + + + + + The BrowseName for the SourceName component. + + + + + The BrowseName for the SourceNode component. + + + + + The BrowseName for the SourceTimestamp component. + + + + + The BrowseName for the Start component. + + + + + The BrowseName for the StartOfArchive component. + + + + + The BrowseName for the StartOfOnlineArchive component. + + + + + The BrowseName for the StartTime component. + + + + + The BrowseName for the State component. + + + + + The BrowseName for the StateMachineType component. + + + + + The BrowseName for the StateNumber component. + + + + + The BrowseName for the StateType component. + + + + + The BrowseName for the StateVariableType component. + + + + + The BrowseName for the StaticNodeIdTypes component. + + + + + The BrowseName for the StaticNumericNodeIdRange component. + + + + + The BrowseName for the StaticStringNodeIdPattern component. + + + + + The BrowseName for the StatisticalConditionClassType component. + + + + + The BrowseName for the Status component. + + + + + The BrowseName for the StatusChangeNotification component. + + + + + The BrowseName for the StatusCode component. + + + + + The BrowseName for the StatusCodeId component. + + + + + The BrowseName for the StatusResult component. + + + + + The BrowseName for the Stepped component. + + + + + The BrowseName for the String component. + + + + + The BrowseName for the Structure component. + + + + + The BrowseName for the StructureDefinition component. + + + + + The BrowseName for the StructureDescription component. + + + + + The BrowseName for the StructureField component. + + + + + The BrowseName for the StructureType component. + + + + + The BrowseName for the SubAliasNameCategories_Placeholder component. + + + + + The BrowseName for the SubError component. + + + + + The BrowseName for the SubscribedDataSet component. + + + + + The BrowseName for the SubscribedDataSetDataType component. + + + + + The BrowseName for the SubscribedDataSetMirrorDataType component. + + + + + The BrowseName for the SubscribedDataSetMirrorType component. + + + + + The BrowseName for the SubscribedDataSetType component. + + + + + The BrowseName for the SubscriptionAcknowledgement component. + + + + + The BrowseName for the SubscriptionDiagnostics component. + + + + + The BrowseName for the SubscriptionDiagnosticsArray component. + + + + + The BrowseName for the SubscriptionDiagnosticsArrayType component. + + + + + The BrowseName for the SubscriptionDiagnosticsDataType component. + + + + + The BrowseName for the SubscriptionDiagnosticsType component. + + + + + The BrowseName for the SubscriptionId component. + + + + + The BrowseName for the SupportedPrivateKeyFormats component. + + + + + The BrowseName for the SupportedTransportProfiles component. + + + + + The BrowseName for the Suppress component. + + + + + The BrowseName for the SuppressedOrShelved component. + + + + + The BrowseName for the SuppressedState component. + + + + + The BrowseName for the Suspend component. + + + + + The BrowseName for the Suspended component. + + + + + The BrowseName for the SuspendedToHalted component. + + + + + The BrowseName for the SuspendedToReady component. + + + + + The BrowseName for the SuspendedToRunning component. + + + + + The BrowseName for the SystemConditionClassType component. + + + + + The BrowseName for the SystemDiagnosticAlarmType component. + + + + + The BrowseName for the SystemEventType component. + + + + + The BrowseName for the SystemOffNormalAlarmType component. + + + + + The BrowseName for the SystemState component. + + + + + The BrowseName for the SystemStatusChangeEventType component. + + + + + The BrowseName for the TagVariables component. + + + + + The BrowseName for the TargetValueNode component. + + + + + The BrowseName for the TargetVariables component. + + + + + The BrowseName for the TargetVariablesDataType component. + + + + + The BrowseName for the TargetVariablesType component. + + + + + The BrowseName for the TemporaryFileTransferType component. + + + + + The BrowseName for the TestingConditionSubClassType component. + + + + + The BrowseName for the ThreeDCartesianCoordinates component. + + + + + The BrowseName for the ThreeDCartesianCoordinatesType component. + + + + + The BrowseName for the ThreeDFrame component. + + + + + The BrowseName for the ThreeDFrameType component. + + + + + The BrowseName for the ThreeDOrientation component. + + + + + The BrowseName for the ThreeDOrientationType component. + + + + + The BrowseName for the ThreeDVector component. + + + + + The BrowseName for the ThreeDVectorType component. + + + + + The BrowseName for the Time component. + + + + + The BrowseName for the TimedShelve component. + + + + + The BrowseName for the TimedShelved component. + + + + + The BrowseName for the TimedShelvedToOneShotShelved component. + + + + + The BrowseName for the TimedShelvedToUnshelved component. + + + + + The BrowseName for the TimeFirstChange component. + + + + + The BrowseName for the TimestampsToReturn component. + + + + + The BrowseName for the TimeString component. + + + + + The BrowseName for the TimeZoneDataType component. + + + + + The BrowseName for the Title component. + + + + + The BrowseName for the Tolerance component. + + + + + The BrowseName for the Topics component. + + + + + The BrowseName for the ToState component. + + + + + The BrowseName for the TotalError component. + + + + + The BrowseName for the TotalInformation component. + + + + + The BrowseName for the TotalRequestCount component. + + + + + The BrowseName for the TrainingConditionClassType component. + + + + + The BrowseName for the TransferredToAltClientCount component. + + + + + The BrowseName for the TransferredToSameClientCount component. + + + + + The BrowseName for the TransferRequestCount component. + + + + + The BrowseName for the TransferResult component. + + + + + The BrowseName for the TransferState_Placeholder component. + + + + + The BrowseName for the TransferSubscriptionsCount component. + + + + + The BrowseName for the TransferSubscriptionsRequest component. + + + + + The BrowseName for the TransferSubscriptionsResponse component. + + + + + The BrowseName for the Transition component. + + + + + The BrowseName for the TransitionEventType component. + + + + + The BrowseName for the TransitionNumber component. + + + + + The BrowseName for the TransitionTime component. + + + + + The BrowseName for the TransitionType component. + + + + + The BrowseName for the TransitionVariableType component. + + + + + The BrowseName for the TranslateBrowsePathsToNodeIdsCount component. + + + + + The BrowseName for the TranslateBrowsePathsToNodeIdsRequest component. + + + + + The BrowseName for the TranslateBrowsePathsToNodeIdsResponse component. + + + + + The BrowseName for the TransparentRedundancyType component. + + + + + The BrowseName for the TransportProfileUri component. + + + + + The BrowseName for the TransportProtocol component. + + + + + The BrowseName for the TransportSettings component. + + + + + The BrowseName for the TreatUncertainAsBad component. + + + + + The BrowseName for the TripAlarmType component. + + + + + The BrowseName for the TrueState component. + + + + + The BrowseName for the TrustList component. + + + + + The BrowseName for the TrustListDataType component. + + + + + The BrowseName for the TrustListId component. + + + + + The BrowseName for the TrustListMasks component. + + + + + The BrowseName for the TrustListOutOfDate component. + + + + + The BrowseName for the TrustListOutOfDateAlarmType component. + + + + + The BrowseName for the TrustListType component. + + + + + The BrowseName for the TrustListUpdatedAuditEventType component. + + + + + The BrowseName for the TwoStateDiscreteType component. + + + + + The BrowseName for the TwoStateVariableType component. + + + + + The BrowseName for the TypeNode component. + + + + + The BrowseName for the TypesFolder component. + + + + + The BrowseName for the UABinaryFileDataType component. + + + + + The BrowseName for the UadpDataSetMessageContentMask component. + + + + + The BrowseName for the UadpDataSetReaderMessageDataType component. + + + + + The BrowseName for the UadpDataSetReaderMessageType component. + + + + + The BrowseName for the UadpDataSetWriterMessageDataType component. + + + + + The BrowseName for the UadpDataSetWriterMessageType component. + + + + + The BrowseName for the UadpNetworkMessageContentMask component. + + + + + The BrowseName for the UadpWriterGroupMessageDataType component. + + + + + The BrowseName for the UadpWriterGroupMessageType component. + + + + + The BrowseName for the UInt16 component. + + + + + The BrowseName for the UInt32 component. + + + + + The BrowseName for the UInt64 component. + + + + + The BrowseName for the UInteger component. + + + + + The BrowseName for the UnacknowledgedMessageCount component. + + + + + The BrowseName for the UnauthorizedRequestCount component. + + + + + The BrowseName for the Union component. + + + + + The BrowseName for the UnregisterNodesCount component. + + + + + The BrowseName for the UnregisterNodesRequest component. + + + + + The BrowseName for the UnregisterNodesResponse component. + + + + + The BrowseName for the Unshelve component. + + + + + The BrowseName for the Unshelved component. + + + + + The BrowseName for the UnshelvedToOneShotShelved component. + + + + + The BrowseName for the UnshelvedToTimedShelved component. + + + + + The BrowseName for the UnshelveTime component. + + + + + The BrowseName for the Unsuppress component. + + + + + The BrowseName for the UpdateCertificate component. + + + + + The BrowseName for the UpdateCredential component. + + + + + The BrowseName for the UpdateDataCapability component. + + + + + The BrowseName for the UpdateDataDetails component. + + + + + The BrowseName for the UpdatedNode component. + + + + + The BrowseName for the UpdateEventCapability component. + + + + + The BrowseName for the UpdateEventDetails component. + + + + + The BrowseName for the UpdateFrequency component. + + + + + The BrowseName for the UpdateStructureDataDetails component. + + + + + The BrowseName for the UriDictionaryEntryType component. + + + + + The BrowseName for the UrisVersion component. + + + + + The BrowseName for the Url component. + + + + + The BrowseName for the UserCredentialCertificateType component. + + + + + The BrowseName for the UserIdentityToken component. + + + + + The BrowseName for the UserNameIdentityToken component. + + + + + The BrowseName for the UserTokenPolicy component. + + + + + The BrowseName for the UserTokenType component. + + + + + The BrowseName for the UserWritable component. + + + + + The BrowseName for the UseSlopedExtrapolation component. + + + + + The BrowseName for the UtcTime component. + + + + + The BrowseName for the ValueAsDictionaryEntries component. + + + + + The BrowseName for the ValueAsText component. + + + + + The BrowseName for the ValuePrecision component. + + + + + The BrowseName for the VariableAttributes component. + + + + + The BrowseName for the VariableNode component. + + + + + The BrowseName for the VariableTypeAttributes component. + + + + + The BrowseName for the VariableTypeNode component. + + + + + The BrowseName for the VariableTypesFolder component. + + + + + The BrowseName for the Vector component. + + + + + The BrowseName for the VectorType component. + + + + + The BrowseName for the VectorUnit component. + + + + + The BrowseName for the VendorCapability_Placeholder component. + + + + + The BrowseName for the VendorServerInfo component. + + + + + The BrowseName for the VendorServerInfoType component. + + + + + The BrowseName for the VersionId component. + + + + + The BrowseName for the VersionTime component. + + + + + The BrowseName for the ViewAttributes component. + + + + + The BrowseName for the ViewDescription component. + + + + + The BrowseName for the ViewNode component. + + + + + The BrowseName for the ViewsFolder component. + + + + + The BrowseName for the ViewVersion component. + + + + + The BrowseName for the WellKnownRole_Anonymous component. + + + + + The BrowseName for the WellKnownRole_AuthenticatedUser component. + + + + + The BrowseName for the WellKnownRole_ConfigureAdmin component. + + + + + The BrowseName for the WellKnownRole_Engineer component. + + + + + The BrowseName for the WellKnownRole_Observer component. + + + + + The BrowseName for the WellKnownRole_Operator component. + + + + + The BrowseName for the WellKnownRole_SecurityAdmin component. + + + + + The BrowseName for the WellKnownRole_Supervisor component. + + + + + The BrowseName for the Writable component. + + + + + The BrowseName for the Write component. + + + + + The BrowseName for the WriteCount component. + + + + + The BrowseName for the WriteRequest component. + + + + + The BrowseName for the WriteResponse component. + + + + + The BrowseName for the WriterGroupDataType component. + + + + + The BrowseName for the WriterGroupId component. + + + + + The BrowseName for the WriterGroupMessageDataType component. + + + + + The BrowseName for the WriterGroupMessageType component. + + + + + The BrowseName for the WriterGroupName_Placeholder component. + + + + + The BrowseName for the WriterGroupTransportDataType component. + + + + + The BrowseName for the WriterGroupTransportType component. + + + + + The BrowseName for the WriterGroupType component. + + + + + The BrowseName for the WriteValue component. + + + + + The BrowseName for the X component. + + + + + The BrowseName for the X509IdentityToken component. + + + + + The BrowseName for the XAxisDefinition component. + + + + + The BrowseName for the XmlElement component. + + + + + The BrowseName for the XmlSchema_TypeSystem component. + + + + + The BrowseName for the XVType component. + + + + + The BrowseName for the XYArrayItemType component. + + + + + The BrowseName for the Y component. + + + + + The BrowseName for the YArrayItemType component. + + + + + The BrowseName for the YAxisDefinition component. + + + + + The BrowseName for the Z component. + + + + + The BrowseName for the ZAxisDefinition component. + + + + + + + + + + + A collection of Enumeration objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + A collection of NamingRuleType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of KeyValuePair objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of EndpointType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of RationalNumber objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of Vector objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ThreeDVector objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of CartesianCoordinates objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ThreeDCartesianCoordinates objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of Orientation objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ThreeDOrientation objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of Frame objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ThreeDFrame objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of OpenFileMode objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of IdentityCriteriaType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of IdentityMappingRuleType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of CurrencyUnitType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of TrustListDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataTypeSchemaHeader objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataTypeDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of StructureDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of EnumDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SimpleTypeDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of UABinaryFileDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PubSubState objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetMetaDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of FieldMetaData objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ConfigurationVersionDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PublishedDataSetDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PublishedDataSetSourceDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PublishedVariableDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PublishedDataItemsDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PublishedEventsDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetFieldContentMask objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetWriterDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetWriterTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetWriterMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PubSubGroupDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of WriterGroupDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of WriterGroupTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of WriterGroupMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PubSubConnectionDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ConnectionTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of NetworkAddressDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of NetworkAddressUrlDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ReaderGroupDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ReaderGroupTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ReaderGroupMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetReaderDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetReaderTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetReaderMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SubscribedDataSetDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of TargetVariablesDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of FieldTargetDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + A collection of OverrideValueHandling objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SubscribedDataSetMirrorDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of PubSubConfigurationDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + A collection of DataSetOrderingType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of UadpNetworkMessageContentMask objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of UadpWriterGroupMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of UadpDataSetMessageContentMask objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of UadpDataSetWriterMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of UadpDataSetReaderMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of JsonNetworkMessageContentMask objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of JsonWriterGroupMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of JsonDataSetMessageContentMask objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of JsonDataSetWriterMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of JsonDataSetReaderMessageDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DatagramConnectionTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DatagramWriterGroupTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of BrokerConnectionTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of BrokerTransportQualityOfService objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of BrokerWriterGroupTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of BrokerDataSetWriterTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of BrokerDataSetReaderTransportDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DiagnosticsLevel objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + A collection of PubSubDiagnosticsCounterClassification objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of AliasNameDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of IdType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of RolePermissionType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DataTypeDefinition objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of StructureField objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The first non-inherited field in the structure definition. + + + + + A collection of StructureDefinition objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of EnumDefinition objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + A node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from a reference desciption. + + The reference. + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + Returns a copy of the node + + The source. + A copy of the source node + + + + An opaque handle that can be assoociated with the node. + + The handle. + + + + Returns the string representation of the object. + + The format. + The provider. + String representation of the object. + + + + Returns the string representation of the object. + + + A that represents the current . + + + + + The node identifier. + + The node identifier. + + + + The identifier for the TypeDefinition node. + + The type definition identifier. + + + + A synchronization object that can be used to safely access the node. + + The data lock. + + + + A mask indicating which attributes are writeable. + + The write mask. + + + + A mask indicating which attributes that are writeable for the current user. + + The user write mask. + + + + The identifier for the ModellingRule node. + + The modelling rule. + + + + The collection of references for the node. + + The references. + + + + Creates a copy of the node. + + The node identifier. + Copy of the node + + + + Returns true if the node supports the attribute. + + The attribute id. + True if the node supports the attribute. + + + + Reads the value of a attribute. + + The context. + The attribute id. + The value. + The result of read operation. + + + + Writes the value of an attribute. + + The attribute id. + The value. + The result of write operation. + + + + A searchable table of references for the node. + + The reference table. + + + + Returns true if the reference exist. + + The reference type id. + if set to true [is inverse]. + The target id. + True if the reference exist. + + + + Returns all targets of the specified reference type. + + The reference type id. + if set to true [is inverse]. + All targets of the specified reference type. + + + + Returns a target of the specified reference type. + + The reference type id. + if set to true [is inverse]. + The index. + A target of the specified reference type. + + + + Returns the supertype for the Node if one exists. + + The type tree. + The supertype for the Node if one exists. + + Includes subtypes of HasSubtype if typeTree != null. + + + + + Reads the value of an attribute. + + The attribute id. + The value of an attribute. + + + + Writes the value of an attribute. + + The attribute id. + The value. + The result of write operation. + + + + A collection of Node objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + An instance node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + + + + + An type node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + + + + + An object node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + Whether the node supports the specified attribute. + + The attribute identifier. + True if the value of an attribute. + + + + Reads the value of an attribute. + + The attribute id. + The value of an attribute. + + + + Writes the value of an attribute. + + The attribute id. + The value. + Result of write operation. + + + + + + + + An object type node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + Whether the node supports the specified attribute. + + The attribute id. + True if the node supports the specified attribute. + + + + Reads the value of an attribute. + + The attribute id. + Tthe node supports the specified attribute. + + + + Writes the value of an attribute. + + The attribute id. + The value. + The result of write operation. + + + + + + + + A variable node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + The value attribute. + + The value. + + + + The number in each dimension of an array value. + + The array dimensions. + + + + Whether the node supports the specified attribute. + + The attribute id. + True if the node supports the specified attribute. + + + + Reads the value of an attribute. + + The attribute id. + The value of an attribute. + + + + Writes the value of an attribute. + + The attribute id. + The value. + The result of write operation. + + + + + + + + A variable type node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + The value attribute. + + The value. + + + + The number in each dimension of an array value. + + The number in each dimension of an array value. + + + + Whether the node supports the specified attribute. + + The attribute id. + True if the node supports the specified attribute. + + + + Reads the value of an attribute. + + The attribute id. + The value of an attribute. + + + + Writes the value of an attribute. + + The attribute id. + The value. + The result of write operation. + + + + + + + + A reference type node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + Whether the node supports the specified attribute. + + The attribute identifier. + True if the node supports the specified attribute. + + + + Reads the value of an attribute. + + The attribute id. + The value of an attribute. + + + + Writes the value of an attribute. + + The attribute id. + The value. + The result of write operation. + + + + + + + + A method node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + Whether the node supports the specified attribute. + + The attribute id. + True if the node supports the specified attribute. + + + + Reads the value of an attribute. + + The attribute id. + The value of an attribute. + + + + Writes the value of an attribute. + + The attribute id. + The value. + The result of write operation. + + + + + + + + A view node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + Whether the node supports the specified attribute. + + The attribute identifier. + True if the node supports the specified attribute. + + + + Reads the value of an attribute. + + The attribute identifier. + The value of an attribute. + + + + Writes the value of an attribute. + + The attribute identifier. + The value. + The write operation result. + + + + + + + + A view node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a node from another node (copies attributes - not references). + + The source. + + + + Whether the node supports the specified attribute. + + The attribute identifier. + True if the node supports the specified attribute. + + + + Reads the value of an attribute. + + The attribute id. + The value of an attribute. + + + + Writes the value of an attribute. + + The attribute id. + The value. + The result of write operation. + + + + + + + + A node in the server address space. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes the reference. + + The reference type id. + if set to true [is inverse]. + The target id. + + + + Returns a string representation of the HierarchyBrowsePath. + + + A that represents the current . + + + + + Returns a string representation of the HierarchyBrowsePath. + + The format. + The provider. + A string representation of the HierarchyBrowsePath. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns true if the objects are equal. + + ReferenceNode A. + The ReferenceNode B. + The result of the operator.Returns true if the objects are equal. + + + + Returns true if the objects are not equal. + + ReferenceNode A. + The ReferenceNode B. + The result of the operator.Returns true if the objects are not equal. + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + A collection of ReferenceNode objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + The Argument class. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes an instance of the argument. + + + + + The value for the argument. + + + + + A collection of Argument objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of EnumValueType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of EnumField objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of OptionSet objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of Union objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of TimeZoneDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ApplicationDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The ServiceFault class. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ServerOnNetwork objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Defines constants for key user token policies. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates an empty token policy with the specified token type. + + + + + Returns the object formatted as a string. + + + + + Returns the string representation of the object. + + + + + A collection of UserTokenPolicy objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + A collection of EndpointDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of RegisteredServer objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SignedSoftwareCertificate objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The UserIdentityToken class. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Encrypts the token (implemented by the subclass). + + + + + Decrypts the token (implemented by the subclass). + + + + + Creates a signature with the token (implemented by the subclass). + + + + + Verifies a signature created with the token (implemented by the subclass). + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The UserIdentityToken class. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The decrypted password associated with the token. + + + + + Encrypts the DecryptedPassword using the EncryptionAlgorithm and places the result in Password + + + + + Decrypts the Password using the EncryptionAlgorithm and places the result in DecryptedPassword + + + + + + + + + The X509IdentityToken class. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The certificate associated with the token. + + + + + Creates a signature with the token. + + + + + Verifies a signature created with the token. + + + + + + + + + The IssuedIdentityToken class. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The type of issued token. + + + + + The decrypted password associated with the token. + + + + + Encrypts the DecryptedTokenData using the EncryptionAlgorithm and places the result in Password + + + + + Decrypts the Password using the EncryptionAlgorithm and places the result in DecryptedPassword + + + + + Creates a signature with the token. + + + + + Verifies a signature created with the token. + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stores information about engineering units. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes the object with the unitName and namespaceUri. + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of GenericAttributeValue objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of AddNodesItem objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of AddNodesResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of AddReferencesItem objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DeleteNodesItem objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of DeleteReferencesItem objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Describes a view to browse or query. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Returns true if the view description represents the default (null) view. + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + A collection of BrowseDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A reference returned in browse operation. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns the string representation of the object. + + + + + Returns the string representation of the object. + + + + + Sets the reference type for the reference. + + + + + Sets the target attributes for the reference. + + + + + True if the reference filter has not been applied. + + + + + A collection of ReferenceDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of BrowseResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of RelativePathElement objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + A class that stores a relative path + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a relative path to follow any hierarchial references to find the specified browse name. + + + + + Creates a relative path to follow the forward reference type to find the specified browse name. + + + + + Creates a relative path to follow the forward reference type to find the specified browse name. + + + + + Formats the relative path as a string. + + + + + Returns true if the relative path does not specify any elements. + + + + + Parses a relative path formatted as a string. + + + + + Parses a relative path formatted as a string. + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + A collection of BrowsePath objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of BrowsePathTarget objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of BrowsePathResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of EndpointConfiguration objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stores the parsed form of the index range parameter. + + + + + A collection of QueryDataDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Whether the value has been processed. + + + + + A collection of NodeTypeDescription objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of QueryDataSet objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of NodeReference objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Formats the value of the current instance using the specified format. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The ContentFilter that this Element is part of. + + The parent. + + + + Validates the content filter element. + + The context. + The index. + The results of the validation. + + + + Returns the operands for the element. + + The list of operands for the element. + + + + Sets the operands for the element. + + The list of the operands. + + + + Converts an ContentFilterElement to a displayable string. + + The node table. + ContentFilterElement as a displayable string. + + + + A collection of ContentFilterElement objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + This class contains functions used to evaluate a ContentFilter and report the + results of the evaluation. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Formats the value of the current instance using the specified format. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Validates the ContentFilter. + + The context. + The result of validation. + + + + Pushes a new element onto the stack. + + The filter operator. + The operands. + + + + + Finds the index of the specified element. + + The targetto be found. + The index of the specified element. + + + + Stores the validation results for a ContentFilterElement. + + + + + Initializes the object with a result code. + + The status. + + + + Casts ServiceResult to an ElementResult. + + The status. + The result of the conversion. + + + + The result for the entire filter. + + The status. + + + + The result for each element. + + The element results. + + + + Converts the object to an ContentFilterResult. + + The diagnostics masks. + The string table. + + + + + Stores the validation results for a ContentFilterElement. + + + + + Initializes the object with a result code. + + The status. + + + + Casts ServiceResult to an ElementResult. + + The status. + The result of the conversion. + + + + The result for the entire element. + + The status. + + + + The result for each operand. + + The operand results. + + + + Converts the object to an ContentFilterElementResult. + + The diagnostics masks. + The string table. + + + + + Evaluates the first element in the ContentFilter. If the first or any + subsequent element has dependent elements, the dependent elements are + evaluated before the root element (recursive descent). Elements which + are not linked (directly or indirectly) to the first element will not + be evaluated (they have no influence on the result). + + The context to use when evaluating the filter. + The target to use when evaluating elements that reference the type model. + Returns true, false or null. + + + + Evaluates element at the specified index. + + + + + Returns the operands for the element. + + + + + Returns the value for the element. + + + + + Returns the BuiltInType type for the value. + + + + + Returns the BuiltInType type for the DataTypeId. + + + + + Returns the data type precedence for the value. + + + + + Implicitly converts the values according to their data type precedence. + + + + + Returns true if the values are equal. + + + + + Returns true if the target string matches the UA pattern string. + The pattern string may include UA wildcards %_\[]! + + String to check for a pattern match. + Pattern to match with the target string. + true if the target string matches the pattern, otherwise false. + + + + Converts a value to a Boolean + + + + + Converts a value to a SByte + + + + + Converts a value to a Byte + + + + + Converts a value to a Int16 + + + + + Converts a value to a UInt16 + + + + + Converts a value to a Int32 + + + + + Converts a value to a UInt32 + + + + + Converts a value to a Int64 + + + + + Converts a value to a UInt64 + + + + + Converts a value to a Float + + + + + Converts a value to a Double + + + + + Converts a value to a String + + + + + Converts a value to a DateTime + + + + + Converts a value to a Guid + + + + + Converts a value to a ByteString + + + + + Converts a value to a NodeId + + + + + Converts a value to a ExpandedNodeId + + + + + Converts a value to a StatusCode + + + + + Converts a value to a QualifiedName + + + + + Converts a value to a LocalizedText + + + + + Casts a value to the specified target type. + + + + + Casts a value to the specified target type. + + + + + And FilterOperator + + + + + Or FilterOperator + + + + + Not FilterOperator + + + + + Equals FilterOperator + + + + + GreaterThan FilterOperator + + + + + GreaterThanOrEqual FilterOperator + + + + + LessThan FilterOperator + + + + + LessThanOrEqual FilterOperator + + + + + Between FilterOperator + + + + + InList FilterOperator + + + + + Like FilterOperator + + + + + IsNull FilterOperator + + + + + Cast FilterOperator + + + + + OfType FilterOperator + + + + + InView FilterOperator + + + + + RelatedTo FilterOperator + + + + + RelatedTo FilterOperator + + + + + A collection of ContentFilter objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + The ContentFilterElement this FilterOperand is contained in. + The ContentFilterElement contains the operator and the operands + so it defines the expression to be evaluated. + + The parent element. + + + + Validates the operand. + + The context. + The index. + the result of the validation + + + + Converts an FilterOperand to a displayable string. + + The node table. + ContentFilterElement as a displayable string. + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Constructs an operand from a value. + + The index. + + + + Formats the value of the current instance using the specified format. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Validates the operand. + + The context. + The index. + The result of the validation + + + + Converts an ElementOperand to a displayable string. + + The table. + ElementOperand as a displayable string. + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Constructs an operand from a value. + + The value. + + + + Formats the value of the current instance using the specified format. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Validates the operand. + + The context. + The index. + The result of the validation + + + + Converts an LiteralOperand to a displayable string. + + The table. + LiteralOperand as a displayable string. + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Constructs an operand from a value. + + The node identifier. + The browse path. + + + + Constructs an operand from a value. + + The node identifier. + The browse paths. + + + + Creates an operand that references a component/property of a type. + + The context. + The node identifier. + The relative path. + + + + Creates an operand that references a component/property of a type. + + The context. + The type definition identifier. + The browse path. + The attribute identifier. + The index range. + + + + Formats the value of the current instance using the specified format. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Whether the operand has been validated. + + true if validated; otherwise, false. + + Set when Validate() is called. + + + + + Stores the parsed form of the IndexRange parameter. + + The parsed index range. + + Set when Validate() is called. + + + + + Validates the operand (sets the ParsedBrowsePath and ParsedIndexRange properties). + + The context. + The index. + The result of the validation. + + + + Converts an AttributeOperand to a displayable string. + + The node table. + AttributeOperand as a displayable string. + + + + + + + + A clause that identifies a field to return with the event. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates an operand that references a component/property of a type. + + + + + Creates an operand that references a component/property of a type. + + + + + Creates an operand that references a component/property of a type. + + + + + Creates an operand that references a component/property of a type. + + + + + Formats the value of the current instance using the specified format. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Whether the operand has been validated. + + + Set when Validate() is called. + + + + + Stores the parsed form of the IndexRange parameter. + + + Set when Validate() is called. + + + + + Validates the operand (sets the ParsedBrowsePath and ParsedIndexRange properties). + + + + + Converts an AttributeOperand to a displayable string. + + + + + Formats a browse path. + + + + + Parses a browse path. + + + + + A collection of SimpleAttributeOperand objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ContentFilterElementResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ParsingResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description of a value to read. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Whether the value has been processed. + + + + + Stores the parsed form of the index range parameter. + + + + + Validates a read value id parameter. + + + + + A collection of ReadValueId objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description of a value to read. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Whether the value has been processed. + + + + + Stores the parsed form of the index range parameter. + + + + + Validates a read value id parameter. + + + + + A collection of HistoryReadValueId objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of HistoryReadResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ModificationInfo objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description of a value to write. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Whether the value has been processed. + + + + + Stores the parsed form of the index range parameter. + + + + + Validates a write value parameter. + + + + + A collection of WriteValue objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description of a value to read. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Whether the value has been processed. + + + + + Validates a HistoryUpdateDetails parameter. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of HistoryUpdateResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description of a value to write. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Whether the value has been processed. + + + + + A collection of CallMethodRequest objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of CallMethodResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A filter to apply when monitoring data changes. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Checks that the filter is valid. + + + + + Returns the AbsoluteDeadband if the filter specifies one. Zero otherwize. + + + + + Returns the PercentageDeadband if the filter specifies one. Zero otherwize. + + + + + + + + + A filter to apply when monitoring event. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Adds the specified property to the event filter. + + + + + Adds the specified browse path to the event filter. + + + + + Stores the validation results for a EventFilter. + + + + + Initializes the object. + + + + + Casts ServiceResult to an ElementResult. + + + + + The result for the entire filter. + + + + + Returns a string containing the errors reported. + + + + + The result for each select clause. + + + + + The results for the where clause. + + + + + Converts the object to an EventFilterResult. + + + + + Validates the object. + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description of a monitored item to create. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Whether the value has been processed. + + + + + A collection of MonitoredItemCreateRequest objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + The description of a monitored item to create. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes the object with an error code. + + + + + A collection of MonitoredItemCreateResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The description of a monitored item to create. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A handle assigned to the item during processing. + + + + + Whether the value has been processed. + + + + + A collection of MonitoredItemModifyRequest objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of MonitoredItemModifyResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A message return in a Publish response. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The string table that was received with the message. + + + + + Gets a value indicating whether this NotificationMessage is empty. + + + true if this instance is empty; otherwise, false. + + + + + Returns the data changes contained in the notification message. + + + + + Returns the events contained in the notification message. + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A datachange returned in a NotificationMessage. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The notification message that the item belongs to. + + + + + The diagnostic info associated with the notification. + + + + + A collection of MonitoredItemNotification objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A list of event field values returned in a NotificationMessage. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The handle cast to a notification message. + + + + + A handle associated withe the event instance. + + + + + A collection of EventFieldList objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of HistoryEventFieldList objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SubscriptionAcknowledgement objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of TransferResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of RedundantServerDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of EndpointUrlListDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of NetworkGroupDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SamplingIntervalDiagnosticsDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SessionDiagnosticsDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SessionSecurityDiagnosticsDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stores a StatusCode/DiagnosticInfo. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes the object with a ServiceResult. + + + + + Applies the diagnostic mask if the object was initialize with a ServiceResult. + + + + + A collection of StatusResult objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SubscriptionDiagnosticsDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ModelChangeStructureDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of SemanticChangeStructureDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + + + + + Stores a range. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes the object with the high and low limits. + + + + + Returns the difference between high and low. + + + + + + + + + Stores information about engineering units. + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Initializes the object with the unitName and namespaceUri. + + + + + Initializes the object with the unitName and namespaceUri. + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A endpoint object used by clients to access a UA service. + + + + + + Initializes the object when it is created by the WCF framework. + + + + + Initializes the when it is created directly. + + + + + Initializes a new instance of the class. + + The server. + + + + The UA server instance that the endpoint is connected to. + + + + + Invokes the FindServers service. + + + + + Asynchronously calls the FindServers service. + + + + + Waits for an asynchronous call to the FindServers service to complete. + + + + + Invokes the FindServersOnNetwork service. + + + + + Asynchronously calls the FindServersOnNetwork service. + + + + + Waits for an asynchronous call to the FindServersOnNetwork service to complete. + + + + + Invokes the GetEndpoints service. + + + + + Asynchronously calls the GetEndpoints service. + + + + + Waits for an asynchronous call to the GetEndpoints service to complete. + + + + + Invokes the CreateSession service. + + + + + Asynchronously calls the CreateSession service. + + + + + Waits for an asynchronous call to the CreateSession service to complete. + + + + + Invokes the ActivateSession service. + + + + + Asynchronously calls the ActivateSession service. + + + + + Waits for an asynchronous call to the ActivateSession service to complete. + + + + + Invokes the CloseSession service. + + + + + Asynchronously calls the CloseSession service. + + + + + Waits for an asynchronous call to the CloseSession service to complete. + + + + + Invokes the Cancel service. + + + + + Asynchronously calls the Cancel service. + + + + + Waits for an asynchronous call to the Cancel service to complete. + + + + + Invokes the AddNodes service. + + + + + Asynchronously calls the AddNodes service. + + + + + Waits for an asynchronous call to the AddNodes service to complete. + + + + + Invokes the AddReferences service. + + + + + Asynchronously calls the AddReferences service. + + + + + Waits for an asynchronous call to the AddReferences service to complete. + + + + + Invokes the DeleteNodes service. + + + + + Asynchronously calls the DeleteNodes service. + + + + + Waits for an asynchronous call to the DeleteNodes service to complete. + + + + + Invokes the DeleteReferences service. + + + + + Asynchronously calls the DeleteReferences service. + + + + + Waits for an asynchronous call to the DeleteReferences service to complete. + + + + + Invokes the Browse service. + + + + + Asynchronously calls the Browse service. + + + + + Waits for an asynchronous call to the Browse service to complete. + + + + + Invokes the BrowseNext service. + + + + + Asynchronously calls the BrowseNext service. + + + + + Waits for an asynchronous call to the BrowseNext service to complete. + + + + + Invokes the TranslateBrowsePathsToNodeIds service. + + + + + Asynchronously calls the TranslateBrowsePathsToNodeIds service. + + + + + Waits for an asynchronous call to the TranslateBrowsePathsToNodeIds service to complete. + + + + + Invokes the RegisterNodes service. + + + + + Asynchronously calls the RegisterNodes service. + + + + + Waits for an asynchronous call to the RegisterNodes service to complete. + + + + + Invokes the UnregisterNodes service. + + + + + Asynchronously calls the UnregisterNodes service. + + + + + Waits for an asynchronous call to the UnregisterNodes service to complete. + + + + + Invokes the QueryFirst service. + + + + + Asynchronously calls the QueryFirst service. + + + + + Waits for an asynchronous call to the QueryFirst service to complete. + + + + + Invokes the QueryNext service. + + + + + Asynchronously calls the QueryNext service. + + + + + Waits for an asynchronous call to the QueryNext service to complete. + + + + + Invokes the Read service. + + + + + Asynchronously calls the Read service. + + + + + Waits for an asynchronous call to the Read service to complete. + + + + + Invokes the HistoryRead service. + + + + + Asynchronously calls the HistoryRead service. + + + + + Waits for an asynchronous call to the HistoryRead service to complete. + + + + + Invokes the Write service. + + + + + Asynchronously calls the Write service. + + + + + Waits for an asynchronous call to the Write service to complete. + + + + + Invokes the HistoryUpdate service. + + + + + Asynchronously calls the HistoryUpdate service. + + + + + Waits for an asynchronous call to the HistoryUpdate service to complete. + + + + + Invokes the Call service. + + + + + Asynchronously calls the Call service. + + + + + Waits for an asynchronous call to the Call service to complete. + + + + + Invokes the CreateMonitoredItems service. + + + + + Asynchronously calls the CreateMonitoredItems service. + + + + + Waits for an asynchronous call to the CreateMonitoredItems service to complete. + + + + + Invokes the ModifyMonitoredItems service. + + + + + Asynchronously calls the ModifyMonitoredItems service. + + + + + Waits for an asynchronous call to the ModifyMonitoredItems service to complete. + + + + + Invokes the SetMonitoringMode service. + + + + + Asynchronously calls the SetMonitoringMode service. + + + + + Waits for an asynchronous call to the SetMonitoringMode service to complete. + + + + + Invokes the SetTriggering service. + + + + + Asynchronously calls the SetTriggering service. + + + + + Waits for an asynchronous call to the SetTriggering service to complete. + + + + + Invokes the DeleteMonitoredItems service. + + + + + Asynchronously calls the DeleteMonitoredItems service. + + + + + Waits for an asynchronous call to the DeleteMonitoredItems service to complete. + + + + + Invokes the CreateSubscription service. + + + + + Asynchronously calls the CreateSubscription service. + + + + + Waits for an asynchronous call to the CreateSubscription service to complete. + + + + + Invokes the ModifySubscription service. + + + + + Asynchronously calls the ModifySubscription service. + + + + + Waits for an asynchronous call to the ModifySubscription service to complete. + + + + + Invokes the SetPublishingMode service. + + + + + Asynchronously calls the SetPublishingMode service. + + + + + Waits for an asynchronous call to the SetPublishingMode service to complete. + + + + + Invokes the Publish service. + + + + + Asynchronously calls the Publish service. + + + + + Waits for an asynchronous call to the Publish service to complete. + + + + + Invokes the Republish service. + + + + + Asynchronously calls the Republish service. + + + + + Waits for an asynchronous call to the Republish service to complete. + + + + + Invokes the TransferSubscriptions service. + + + + + Asynchronously calls the TransferSubscriptions service. + + + + + Waits for an asynchronous call to the TransferSubscriptions service to complete. + + + + + Invokes the DeleteSubscriptions service. + + + + + Asynchronously calls the DeleteSubscriptions service. + + + + + Waits for an asynchronous call to the DeleteSubscriptions service to complete. + + + + + Populates the known types table. + + + + + A endpoint object used by clients to access a UA service. + + + + + + Initializes the object when it is created by the WCF framework. + + + + + Initializes the when it is created directly. + + + + + Initializes a new instance of the class. + + The server. + + + + The UA server instance that the endpoint is connected to. + + + + + Invokes the FindServers service. + + + + + Asynchronously calls the FindServers service. + + + + + Waits for an asynchronous call to the FindServers service to complete. + + + + + Invokes the FindServersOnNetwork service. + + + + + Asynchronously calls the FindServersOnNetwork service. + + + + + Waits for an asynchronous call to the FindServersOnNetwork service to complete. + + + + + Invokes the GetEndpoints service. + + + + + Asynchronously calls the GetEndpoints service. + + + + + Waits for an asynchronous call to the GetEndpoints service to complete. + + + + + Invokes the RegisterServer service. + + + + + Asynchronously calls the RegisterServer service. + + + + + Waits for an asynchronous call to the RegisterServer service to complete. + + + + + Invokes the RegisterServer2 service. + + + + + Asynchronously calls the RegisterServer2 service. + + + + + Waits for an asynchronous call to the RegisterServer2 service to complete. + + + + + Populates the known types table. + + + + + A class that declares constants for all DataTypes in the Model Design. + + + + + + The identifier for the ApplicationRecordDataType DataType. + + + + + A class that declares constants for all Methods in the Model Design. + + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Open Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Close Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Read Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Write Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_GetPosition Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_SetPosition Method. + + + + + The identifier for the DirectoryType_FindApplications Method. + + + + + The identifier for the DirectoryType_RegisterApplication Method. + + + + + The identifier for the DirectoryType_UpdateApplication Method. + + + + + The identifier for the DirectoryType_UnregisterApplication Method. + + + + + The identifier for the DirectoryType_GetApplication Method. + + + + + The identifier for the DirectoryType_QueryApplications Method. + + + + + The identifier for the DirectoryType_QueryServers Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_StartSigningRequest Method. + + + + + The identifier for the CertificateDirectoryType_StartNewKeyPairRequest Method. + + + + + The identifier for the CertificateDirectoryType_FinishRequest Method. + + + + + The identifier for the CertificateDirectoryType_RevokeCertificate Method. + + + + + The identifier for the CertificateDirectoryType_GetCertificateGroups Method. + + + + + The identifier for the CertificateDirectoryType_GetTrustList Method. + + + + + The identifier for the CertificateDirectoryType_GetCertificateStatus Method. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_StartRequest Method. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_FinishRequest Method. + + + + + The identifier for the KeyCredentialServiceType_StartRequest Method. + + + + + The identifier for the KeyCredentialServiceType_FinishRequest Method. + + + + + The identifier for the KeyCredentialServiceType_Revoke Method. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_GetServiceDescription Method. + + + + + The identifier for the AuthorizationServiceType_GetServiceDescription Method. + + + + + The identifier for the AuthorizationServiceType_RequestAccessToken Method. + + + + + The identifier for the Directory_FindApplications Method. + + + + + The identifier for the Directory_RegisterApplication Method. + + + + + The identifier for the Directory_UpdateApplication Method. + + + + + The identifier for the Directory_UnregisterApplication Method. + + + + + The identifier for the Directory_GetApplication Method. + + + + + The identifier for the Directory_QueryApplications Method. + + + + + The identifier for the Directory_QueryServers Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_StartSigningRequest Method. + + + + + The identifier for the Directory_StartNewKeyPairRequest Method. + + + + + The identifier for the Directory_FinishRequest Method. + + + + + The identifier for the Directory_GetCertificateGroups Method. + + + + + The identifier for the Directory_GetTrustList Method. + + + + + The identifier for the Directory_GetCertificateStatus Method. + + + + + A class that declares constants for all Objects in the Model Design. + + + + + + The identifier for the OPCUAGDSNamespaceMetadata Object. + + + + + The identifier for the DirectoryType_Applications Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the KeyCredentialManagement Object. + + + + + The identifier for the AuthorizationServices Object. + + + + + The identifier for the Directory Object. + + + + + The identifier for the Directory_Applications Object. + + + + + The identifier for the Directory_CertificateGroups Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the ApplicationRecordDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ApplicationRecordDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ApplicationRecordDataType_Encoding_DefaultJson Object. + + + + + A class that declares constants for all ObjectTypes in the Model Design. + + + + + + The identifier for the DirectoryType ObjectType. + + + + + The identifier for the ApplicationRegistrationChangedAuditEventType ObjectType. + + + + + The identifier for the CertificateDirectoryType ObjectType. + + + + + The identifier for the CertificateRequestedAuditEventType ObjectType. + + + + + The identifier for the CertificateDeliveredAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialServiceType ObjectType. + + + + + The identifier for the KeyCredentialRequestedAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialDeliveredAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialRevokedAuditEventType ObjectType. + + + + + The identifier for the AuthorizationServiceType ObjectType. + + + + + The identifier for the AccessTokenIssuedAuditEventType ObjectType. + + + + + A class that declares constants for all Variables in the Model Design. + + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceUri Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceVersion Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespacePublicationDate Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_IsNamespaceSubset Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_StaticNodeIdTypes Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_StaticNumericNodeIdRange Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_StaticStringNodeIdPattern Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Size Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Writable Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_UserWritable Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_OpenCount Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Open_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Open_OutputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Close_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Read_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Read_OutputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Write_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_GetPosition_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_GetPosition_OutputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_SetPosition_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_DefaultRolePermissions Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_DefaultUserRolePermissions Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_DefaultAccessRestrictions Variable. + + + + + The identifier for the DirectoryType_FindApplications_InputArguments Variable. + + + + + The identifier for the DirectoryType_FindApplications_OutputArguments Variable. + + + + + The identifier for the DirectoryType_RegisterApplication_InputArguments Variable. + + + + + The identifier for the DirectoryType_RegisterApplication_OutputArguments Variable. + + + + + The identifier for the DirectoryType_UpdateApplication_InputArguments Variable. + + + + + The identifier for the DirectoryType_UnregisterApplication_InputArguments Variable. + + + + + The identifier for the DirectoryType_GetApplication_InputArguments Variable. + + + + + The identifier for the DirectoryType_GetApplication_OutputArguments Variable. + + + + + The identifier for the DirectoryType_QueryApplications_InputArguments Variable. + + + + + The identifier for the DirectoryType_QueryApplications_OutputArguments Variable. + + + + + The identifier for the DirectoryType_QueryServers_InputArguments Variable. + + + + + The identifier for the DirectoryType_QueryServers_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_FindApplications_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_FindApplications_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_RegisterApplication_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_RegisterApplication_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_UpdateApplication_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_UnregisterApplication_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetApplication_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetApplication_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_QueryApplications_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_QueryApplications_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_QueryServers_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_QueryServers_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateDirectoryType_StartSigningRequest_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_StartSigningRequest_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_StartNewKeyPairRequest_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_StartNewKeyPairRequest_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_FinishRequest_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_FinishRequest_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_RevokeCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetCertificateGroups_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetCertificateGroups_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetTrustList_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetTrustList_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetCertificateStatus_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetCertificateStatus_OutputArguments Variable. + + + + + The identifier for the CertificateRequestedAuditEventType_CertificateGroup Variable. + + + + + The identifier for the CertificateRequestedAuditEventType_CertificateType Variable. + + + + + The identifier for the CertificateDeliveredAuditEventType_CertificateGroup Variable. + + + + + The identifier for the CertificateDeliveredAuditEventType_CertificateType Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_ResourceUri Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_ProfileUris Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_StartRequest_InputArguments Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_StartRequest_OutputArguments Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_FinishRequest_InputArguments Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_FinishRequest_OutputArguments Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_Revoke_InputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_ResourceUri Variable. + + + + + The identifier for the KeyCredentialServiceType_ProfileUris Variable. + + + + + The identifier for the KeyCredentialServiceType_StartRequest_InputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_StartRequest_OutputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_FinishRequest_InputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_FinishRequest_OutputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_Revoke_InputArguments Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_ServiceUri Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_ServiceCertificate Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_GetServiceDescription_OutputArguments Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_RequestAccessToken_InputArguments Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_RequestAccessToken_OutputArguments Variable. + + + + + The identifier for the AuthorizationServiceType_ServiceUri Variable. + + + + + The identifier for the AuthorizationServiceType_ServiceCertificate Variable. + + + + + The identifier for the AuthorizationServiceType_UserTokenPolicies Variable. + + + + + The identifier for the AuthorizationServiceType_GetServiceDescription_OutputArguments Variable. + + + + + The identifier for the AuthorizationServiceType_RequestAccessToken_InputArguments Variable. + + + + + The identifier for the AuthorizationServiceType_RequestAccessToken_OutputArguments Variable. + + + + + The identifier for the Directory_FindApplications_InputArguments Variable. + + + + + The identifier for the Directory_FindApplications_OutputArguments Variable. + + + + + The identifier for the Directory_RegisterApplication_InputArguments Variable. + + + + + The identifier for the Directory_RegisterApplication_OutputArguments Variable. + + + + + The identifier for the Directory_UpdateApplication_InputArguments Variable. + + + + + The identifier for the Directory_UnregisterApplication_InputArguments Variable. + + + + + The identifier for the Directory_GetApplication_InputArguments Variable. + + + + + The identifier for the Directory_GetApplication_OutputArguments Variable. + + + + + The identifier for the Directory_QueryApplications_InputArguments Variable. + + + + + The identifier for the Directory_QueryApplications_OutputArguments Variable. + + + + + The identifier for the Directory_QueryServers_InputArguments Variable. + + + + + The identifier for the Directory_QueryServers_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the Directory_StartSigningRequest_InputArguments Variable. + + + + + The identifier for the Directory_StartSigningRequest_OutputArguments Variable. + + + + + The identifier for the Directory_StartNewKeyPairRequest_InputArguments Variable. + + + + + The identifier for the Directory_StartNewKeyPairRequest_OutputArguments Variable. + + + + + The identifier for the Directory_FinishRequest_InputArguments Variable. + + + + + The identifier for the Directory_FinishRequest_OutputArguments Variable. + + + + + The identifier for the Directory_RevokeCertificate_InputArguments Variable. + + + + + The identifier for the Directory_GetCertificateGroups_InputArguments Variable. + + + + + The identifier for the Directory_GetCertificateGroups_OutputArguments Variable. + + + + + The identifier for the Directory_GetTrustList_InputArguments Variable. + + + + + The identifier for the Directory_GetTrustList_OutputArguments Variable. + + + + + The identifier for the Directory_GetCertificateStatus_InputArguments Variable. + + + + + The identifier for the Directory_GetCertificateStatus_OutputArguments Variable. + + + + + The identifier for the OpcUaGds_BinarySchema Variable. + + + + + The identifier for the OpcUaGds_BinarySchema_NamespaceUri Variable. + + + + + The identifier for the OpcUaGds_BinarySchema_Deprecated Variable. + + + + + The identifier for the OpcUaGds_BinarySchema_ApplicationRecordDataType Variable. + + + + + The identifier for the OpcUaGds_XmlSchema Variable. + + + + + The identifier for the OpcUaGds_XmlSchema_NamespaceUri Variable. + + + + + The identifier for the OpcUaGds_XmlSchema_Deprecated Variable. + + + + + The identifier for the OpcUaGds_XmlSchema_ApplicationRecordDataType Variable. + + + + + A class that declares constants for all DataTypes in the Model Design. + + + + + + The identifier for the ApplicationRecordDataType DataType. + + + + + A class that declares constants for all Methods in the Model Design. + + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Open Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Close Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Read Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Write Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_GetPosition Method. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_SetPosition Method. + + + + + The identifier for the DirectoryType_FindApplications Method. + + + + + The identifier for the DirectoryType_RegisterApplication Method. + + + + + The identifier for the DirectoryType_UpdateApplication Method. + + + + + The identifier for the DirectoryType_UnregisterApplication Method. + + + + + The identifier for the DirectoryType_GetApplication Method. + + + + + The identifier for the DirectoryType_QueryApplications Method. + + + + + The identifier for the DirectoryType_QueryServers Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the CertificateDirectoryType_StartSigningRequest Method. + + + + + The identifier for the CertificateDirectoryType_StartNewKeyPairRequest Method. + + + + + The identifier for the CertificateDirectoryType_FinishRequest Method. + + + + + The identifier for the CertificateDirectoryType_RevokeCertificate Method. + + + + + The identifier for the CertificateDirectoryType_GetCertificateGroups Method. + + + + + The identifier for the CertificateDirectoryType_GetTrustList Method. + + + + + The identifier for the CertificateDirectoryType_GetCertificateStatus Method. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_StartRequest Method. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_FinishRequest Method. + + + + + The identifier for the KeyCredentialServiceType_StartRequest Method. + + + + + The identifier for the KeyCredentialServiceType_FinishRequest Method. + + + + + The identifier for the KeyCredentialServiceType_Revoke Method. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_GetServiceDescription Method. + + + + + The identifier for the AuthorizationServiceType_GetServiceDescription Method. + + + + + The identifier for the AuthorizationServiceType_RequestAccessToken Method. + + + + + The identifier for the Directory_FindApplications Method. + + + + + The identifier for the Directory_RegisterApplication Method. + + + + + The identifier for the Directory_UpdateApplication Method. + + + + + The identifier for the Directory_UnregisterApplication Method. + + + + + The identifier for the Directory_GetApplication Method. + + + + + The identifier for the Directory_QueryApplications Method. + + + + + The identifier for the Directory_QueryServers Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Open Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Close Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Read Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Write Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Open Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Close Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Read Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Write Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Open Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Close Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Read Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Write Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve Method. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve Method. + + + + + The identifier for the Directory_StartSigningRequest Method. + + + + + The identifier for the Directory_StartNewKeyPairRequest Method. + + + + + The identifier for the Directory_FinishRequest Method. + + + + + The identifier for the Directory_GetCertificateGroups Method. + + + + + The identifier for the Directory_GetTrustList Method. + + + + + The identifier for the Directory_GetCertificateStatus Method. + + + + + A class that declares constants for all Objects in the Model Design. + + + + + + The identifier for the OPCUAGDSNamespaceMetadata Object. + + + + + The identifier for the DirectoryType_Applications Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the KeyCredentialManagement Object. + + + + + The identifier for the AuthorizationServices Object. + + + + + The identifier for the Directory Object. + + + + + The identifier for the Directory_Applications Object. + + + + + The identifier for the Directory_CertificateGroups Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup Object. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList Object. + + + + + The identifier for the ApplicationRecordDataType_Encoding_DefaultBinary Object. + + + + + The identifier for the ApplicationRecordDataType_Encoding_DefaultXml Object. + + + + + The identifier for the ApplicationRecordDataType_Encoding_DefaultJson Object. + + + + + A class that declares constants for all ObjectTypes in the Model Design. + + + + + + The identifier for the DirectoryType ObjectType. + + + + + The identifier for the ApplicationRegistrationChangedAuditEventType ObjectType. + + + + + The identifier for the CertificateDirectoryType ObjectType. + + + + + The identifier for the CertificateRequestedAuditEventType ObjectType. + + + + + The identifier for the CertificateDeliveredAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialServiceType ObjectType. + + + + + The identifier for the KeyCredentialRequestedAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialDeliveredAuditEventType ObjectType. + + + + + The identifier for the KeyCredentialRevokedAuditEventType ObjectType. + + + + + The identifier for the AuthorizationServiceType ObjectType. + + + + + The identifier for the AccessTokenIssuedAuditEventType ObjectType. + + + + + A class that declares constants for all Variables in the Model Design. + + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceUri Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceVersion Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespacePublicationDate Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_IsNamespaceSubset Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_StaticNodeIdTypes Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_StaticNumericNodeIdRange Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_StaticStringNodeIdPattern Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Size Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Writable Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_UserWritable Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_OpenCount Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Open_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Open_OutputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Close_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Read_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Read_OutputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_Write_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_GetPosition_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_GetPosition_OutputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_NamespaceFile_SetPosition_InputArguments Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_DefaultRolePermissions Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_DefaultUserRolePermissions Variable. + + + + + The identifier for the OPCUAGDSNamespaceMetadata_DefaultAccessRestrictions Variable. + + + + + The identifier for the DirectoryType_FindApplications_InputArguments Variable. + + + + + The identifier for the DirectoryType_FindApplications_OutputArguments Variable. + + + + + The identifier for the DirectoryType_RegisterApplication_InputArguments Variable. + + + + + The identifier for the DirectoryType_RegisterApplication_OutputArguments Variable. + + + + + The identifier for the DirectoryType_UpdateApplication_InputArguments Variable. + + + + + The identifier for the DirectoryType_UnregisterApplication_InputArguments Variable. + + + + + The identifier for the DirectoryType_GetApplication_InputArguments Variable. + + + + + The identifier for the DirectoryType_GetApplication_OutputArguments Variable. + + + + + The identifier for the DirectoryType_QueryApplications_InputArguments Variable. + + + + + The identifier for the DirectoryType_QueryApplications_OutputArguments Variable. + + + + + The identifier for the DirectoryType_QueryServers_InputArguments Variable. + + + + + The identifier for the DirectoryType_QueryServers_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_FindApplications_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_FindApplications_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_RegisterApplication_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_RegisterApplication_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_UpdateApplication_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_UnregisterApplication_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetApplication_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetApplication_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_QueryApplications_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_QueryApplications_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_QueryServers_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_QueryServers_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the CertificateDirectoryType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the CertificateDirectoryType_StartSigningRequest_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_StartSigningRequest_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_StartNewKeyPairRequest_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_StartNewKeyPairRequest_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_FinishRequest_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_FinishRequest_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_RevokeCertificate_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetCertificateGroups_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetCertificateGroups_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetTrustList_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetTrustList_OutputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetCertificateStatus_InputArguments Variable. + + + + + The identifier for the CertificateDirectoryType_GetCertificateStatus_OutputArguments Variable. + + + + + The identifier for the CertificateRequestedAuditEventType_CertificateGroup Variable. + + + + + The identifier for the CertificateRequestedAuditEventType_CertificateType Variable. + + + + + The identifier for the CertificateDeliveredAuditEventType_CertificateGroup Variable. + + + + + The identifier for the CertificateDeliveredAuditEventType_CertificateType Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_ResourceUri Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_ProfileUris Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_StartRequest_InputArguments Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_StartRequest_OutputArguments Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_FinishRequest_InputArguments Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_FinishRequest_OutputArguments Variable. + + + + + The identifier for the KeyCredentialManagement_ServiceName_Placeholder_Revoke_InputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_ResourceUri Variable. + + + + + The identifier for the KeyCredentialServiceType_ProfileUris Variable. + + + + + The identifier for the KeyCredentialServiceType_StartRequest_InputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_StartRequest_OutputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_FinishRequest_InputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_FinishRequest_OutputArguments Variable. + + + + + The identifier for the KeyCredentialServiceType_Revoke_InputArguments Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_ServiceUri Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_ServiceCertificate Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_GetServiceDescription_OutputArguments Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_RequestAccessToken_InputArguments Variable. + + + + + The identifier for the AuthorizationServices_ServiceName_Placeholder_RequestAccessToken_OutputArguments Variable. + + + + + The identifier for the AuthorizationServiceType_ServiceUri Variable. + + + + + The identifier for the AuthorizationServiceType_ServiceCertificate Variable. + + + + + The identifier for the AuthorizationServiceType_UserTokenPolicies Variable. + + + + + The identifier for the AuthorizationServiceType_GetServiceDescription_OutputArguments Variable. + + + + + The identifier for the AuthorizationServiceType_RequestAccessToken_InputArguments Variable. + + + + + The identifier for the AuthorizationServiceType_RequestAccessToken_OutputArguments Variable. + + + + + The identifier for the Directory_FindApplications_InputArguments Variable. + + + + + The identifier for the Directory_FindApplications_OutputArguments Variable. + + + + + The identifier for the Directory_RegisterApplication_InputArguments Variable. + + + + + The identifier for the Directory_RegisterApplication_OutputArguments Variable. + + + + + The identifier for the Directory_UpdateApplication_InputArguments Variable. + + + + + The identifier for the Directory_UnregisterApplication_InputArguments Variable. + + + + + The identifier for the Directory_GetApplication_InputArguments Variable. + + + + + The identifier for the Directory_GetApplication_OutputArguments Variable. + + + + + The identifier for the Directory_QueryApplications_InputArguments Variable. + + + + + The identifier for the Directory_QueryApplications_OutputArguments Variable. + + + + + The identifier for the Directory_QueryServers_InputArguments Variable. + + + + + The identifier for the Directory_QueryServers_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Size Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Writable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateTypes Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Size Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Writable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateTypes Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Size Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateTypes Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime Variable. + + + + + The identifier for the Directory_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency Variable. + + + + + The identifier for the Directory_StartSigningRequest_InputArguments Variable. + + + + + The identifier for the Directory_StartSigningRequest_OutputArguments Variable. + + + + + The identifier for the Directory_StartNewKeyPairRequest_InputArguments Variable. + + + + + The identifier for the Directory_StartNewKeyPairRequest_OutputArguments Variable. + + + + + The identifier for the Directory_FinishRequest_InputArguments Variable. + + + + + The identifier for the Directory_FinishRequest_OutputArguments Variable. + + + + + The identifier for the Directory_RevokeCertificate_InputArguments Variable. + + + + + The identifier for the Directory_GetCertificateGroups_InputArguments Variable. + + + + + The identifier for the Directory_GetCertificateGroups_OutputArguments Variable. + + + + + The identifier for the Directory_GetTrustList_InputArguments Variable. + + + + + The identifier for the Directory_GetTrustList_OutputArguments Variable. + + + + + The identifier for the Directory_GetCertificateStatus_InputArguments Variable. + + + + + The identifier for the Directory_GetCertificateStatus_OutputArguments Variable. + + + + + The identifier for the OpcUaGds_BinarySchema Variable. + + + + + The identifier for the OpcUaGds_BinarySchema_NamespaceUri Variable. + + + + + The identifier for the OpcUaGds_BinarySchema_Deprecated Variable. + + + + + The identifier for the OpcUaGds_BinarySchema_ApplicationRecordDataType Variable. + + + + + The identifier for the OpcUaGds_XmlSchema Variable. + + + + + The identifier for the OpcUaGds_XmlSchema_NamespaceUri Variable. + + + + + The identifier for the OpcUaGds_XmlSchema_Deprecated Variable. + + + + + The identifier for the OpcUaGds_XmlSchema_ApplicationRecordDataType Variable. + + + + + Declares all of the BrowseNames used in the Model Design. + + + + + The BrowseName for the AccessTokenIssuedAuditEventType component. + + + + + The BrowseName for the ApplicationRecordDataType component. + + + + + The BrowseName for the ApplicationRegistrationChangedAuditEventType component. + + + + + The BrowseName for the Applications component. + + + + + The BrowseName for the AuthorizationServices component. + + + + + The BrowseName for the AuthorizationServiceType component. + + + + + The BrowseName for the CertificateDeliveredAuditEventType component. + + + + + The BrowseName for the CertificateDirectoryType component. + + + + + The BrowseName for the CertificateGroup component. + + + + + The BrowseName for the CertificateGroups component. + + + + + The BrowseName for the CertificateRequestedAuditEventType component. + + + + + The BrowseName for the CertificateType component. + + + + + The BrowseName for the Directory component. + + + + + The BrowseName for the DirectoryType component. + + + + + The BrowseName for the FindApplications component. + + + + + The BrowseName for the FinishRequest component. + + + + + The BrowseName for the GetApplication component. + + + + + The BrowseName for the GetCertificateGroups component. + + + + + The BrowseName for the GetCertificateStatus component. + + + + + The BrowseName for the GetServiceDescription component. + + + + + The BrowseName for the GetTrustList component. + + + + + The BrowseName for the KeyCredentialDeliveredAuditEventType component. + + + + + The BrowseName for the KeyCredentialManagement component. + + + + + The BrowseName for the KeyCredentialRequestedAuditEventType component. + + + + + The BrowseName for the KeyCredentialRevokedAuditEventType component. + + + + + The BrowseName for the KeyCredentialServiceType component. + + + + + The BrowseName for the OpcUaGds_BinarySchema component. + + + + + The BrowseName for the OpcUaGds_XmlSchema component. + + + + + The BrowseName for the OPCUAGDSNamespaceMetadata component. + + + + + The BrowseName for the ProfileUris component. + + + + + The BrowseName for the QueryApplications component. + + + + + The BrowseName for the QueryServers component. + + + + + The BrowseName for the RegisterApplication component. + + + + + The BrowseName for the RequestAccessToken component. + + + + + The BrowseName for the ResourceUri component. + + + + + The BrowseName for the Revoke component. + + + + + The BrowseName for the RevokeCertificate component. + + + + + The BrowseName for the ServiceCertificate component. + + + + + The BrowseName for the ServiceName_Placeholder component. + + + + + The BrowseName for the ServiceUri component. + + + + + The BrowseName for the StartNewKeyPairRequest component. + + + + + The BrowseName for the StartRequest component. + + + + + The BrowseName for the StartSigningRequest component. + + + + + The BrowseName for the UnregisterApplication component. + + + + + The BrowseName for the UpdateApplication component. + + + + + The BrowseName for the UserTokenPolicies component. + + + + + Defines constants for all namespaces referenced by the model design. + + + + + The URI for the OpcUaGds namespace (.NET code namespace is 'Opc.Ua.Gds'). + + + + + The URI for the OpcUaGdsXsd namespace (.NET code namespace is 'Opc.Ua.Gds'). + + + + + The URI for the OpcUa namespace (.NET code namespace is 'Opc.Ua'). + + + + + The URI for the OpcUaXsd namespace (.NET code namespace is 'Opc.Ua'). + + + + + + + + + + + The default constructor. + + + + + Called by the .NET framework during deserialization. + + + + + Sets private members to default values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection of ApplicationRecordDataType objects. + + + + + + Initializes the collection with default values. + + + + + Initializes the collection with an initial capacity. + + + + + Initializes the collection with another collection. + + + + + Converts an array to a collection. + + + + + Converts a collection to an array. + + + + + + + + The asynchronous service contract which must be implemented by UA servers. + + + + + + The operation contract for the CreateSession service. + + + + + The method used to retrieve the results of a CreateSession service request. + + + + + The operation contract for the ActivateSession service. + + + + + The method used to retrieve the results of a ActivateSession service request. + + + + + The operation contract for the CloseSession service. + + + + + The method used to retrieve the results of a CloseSession service request. + + + + + The operation contract for the Cancel service. + + + + + The method used to retrieve the results of a Cancel service request. + + + + + The operation contract for the AddNodes service. + + + + + The method used to retrieve the results of a AddNodes service request. + + + + + The operation contract for the AddReferences service. + + + + + The method used to retrieve the results of a AddReferences service request. + + + + + The operation contract for the DeleteNodes service. + + + + + The method used to retrieve the results of a DeleteNodes service request. + + + + + The operation contract for the DeleteReferences service. + + + + + The method used to retrieve the results of a DeleteReferences service request. + + + + + The operation contract for the Browse service. + + + + + The method used to retrieve the results of a Browse service request. + + + + + The operation contract for the BrowseNext service. + + + + + The method used to retrieve the results of a BrowseNext service request. + + + + + The operation contract for the TranslateBrowsePathsToNodeIds service. + + + + + The method used to retrieve the results of a TranslateBrowsePathsToNodeIds service request. + + + + + The operation contract for the RegisterNodes service. + + + + + The method used to retrieve the results of a RegisterNodes service request. + + + + + The operation contract for the UnregisterNodes service. + + + + + The method used to retrieve the results of a UnregisterNodes service request. + + + + + The operation contract for the QueryFirst service. + + + + + The method used to retrieve the results of a QueryFirst service request. + + + + + The operation contract for the QueryNext service. + + + + + The method used to retrieve the results of a QueryNext service request. + + + + + The operation contract for the Read service. + + + + + The method used to retrieve the results of a Read service request. + + + + + The operation contract for the HistoryRead service. + + + + + The method used to retrieve the results of a HistoryRead service request. + + + + + The operation contract for the Write service. + + + + + The method used to retrieve the results of a Write service request. + + + + + The operation contract for the HistoryUpdate service. + + + + + The method used to retrieve the results of a HistoryUpdate service request. + + + + + The operation contract for the Call service. + + + + + The method used to retrieve the results of a Call service request. + + + + + The operation contract for the CreateMonitoredItems service. + + + + + The method used to retrieve the results of a CreateMonitoredItems service request. + + + + + The operation contract for the ModifyMonitoredItems service. + + + + + The method used to retrieve the results of a ModifyMonitoredItems service request. + + + + + The operation contract for the SetMonitoringMode service. + + + + + The method used to retrieve the results of a SetMonitoringMode service request. + + + + + The operation contract for the SetTriggering service. + + + + + The method used to retrieve the results of a SetTriggering service request. + + + + + The operation contract for the DeleteMonitoredItems service. + + + + + The method used to retrieve the results of a DeleteMonitoredItems service request. + + + + + The operation contract for the CreateSubscription service. + + + + + The method used to retrieve the results of a CreateSubscription service request. + + + + + The operation contract for the ModifySubscription service. + + + + + The method used to retrieve the results of a ModifySubscription service request. + + + + + The operation contract for the SetPublishingMode service. + + + + + The method used to retrieve the results of a SetPublishingMode service request. + + + + + The operation contract for the Publish service. + + + + + The method used to retrieve the results of a Publish service request. + + + + + The operation contract for the Republish service. + + + + + The method used to retrieve the results of a Republish service request. + + + + + The operation contract for the TransferSubscriptions service. + + + + + The method used to retrieve the results of a TransferSubscriptions service request. + + + + + The operation contract for the DeleteSubscriptions service. + + + + + The method used to retrieve the results of a DeleteSubscriptions service request. + + + + + An interface used by by clients to access a UA server. + + + + + + The operation contract for the CreateSession service. + + + + + The operation contract for the CreateSession service. + + + + + The method used to retrieve the results of a CreateSession service request. + + + + + The operation contract for the ActivateSession service. + + + + + The operation contract for the ActivateSession service. + + + + + The method used to retrieve the results of a ActivateSession service request. + + + + + The operation contract for the CloseSession service. + + + + + The operation contract for the CloseSession service. + + + + + The method used to retrieve the results of a CloseSession service request. + + + + + The operation contract for the Cancel service. + + + + + The operation contract for the Cancel service. + + + + + The method used to retrieve the results of a Cancel service request. + + + + + The operation contract for the AddNodes service. + + + + + The operation contract for the AddNodes service. + + + + + The method used to retrieve the results of a AddNodes service request. + + + + + The operation contract for the AddReferences service. + + + + + The operation contract for the AddReferences service. + + + + + The method used to retrieve the results of a AddReferences service request. + + + + + The operation contract for the DeleteNodes service. + + + + + The operation contract for the DeleteNodes service. + + + + + The method used to retrieve the results of a DeleteNodes service request. + + + + + The operation contract for the DeleteReferences service. + + + + + The operation contract for the DeleteReferences service. + + + + + The method used to retrieve the results of a DeleteReferences service request. + + + + + The operation contract for the Browse service. + + + + + The operation contract for the Browse service. + + + + + The method used to retrieve the results of a Browse service request. + + + + + The operation contract for the BrowseNext service. + + + + + The operation contract for the BrowseNext service. + + + + + The method used to retrieve the results of a BrowseNext service request. + + + + + The operation contract for the TranslateBrowsePathsToNodeIds service. + + + + + The operation contract for the TranslateBrowsePathsToNodeIds service. + + + + + The method used to retrieve the results of a TranslateBrowsePathsToNodeIds service request. + + + + + The operation contract for the RegisterNodes service. + + + + + The operation contract for the RegisterNodes service. + + + + + The method used to retrieve the results of a RegisterNodes service request. + + + + + The operation contract for the UnregisterNodes service. + + + + + The operation contract for the UnregisterNodes service. + + + + + The method used to retrieve the results of a UnregisterNodes service request. + + + + + The operation contract for the QueryFirst service. + + + + + The operation contract for the QueryFirst service. + + + + + The method used to retrieve the results of a QueryFirst service request. + + + + + The operation contract for the QueryNext service. + + + + + The operation contract for the QueryNext service. + + + + + The method used to retrieve the results of a QueryNext service request. + + + + + The operation contract for the Read service. + + + + + The operation contract for the Read service. + + + + + The method used to retrieve the results of a Read service request. + + + + + The operation contract for the HistoryRead service. + + + + + The operation contract for the HistoryRead service. + + + + + The method used to retrieve the results of a HistoryRead service request. + + + + + The operation contract for the Write service. + + + + + The operation contract for the Write service. + + + + + The method used to retrieve the results of a Write service request. + + + + + The operation contract for the HistoryUpdate service. + + + + + The operation contract for the HistoryUpdate service. + + + + + The method used to retrieve the results of a HistoryUpdate service request. + + + + + The operation contract for the Call service. + + + + + The operation contract for the Call service. + + + + + The method used to retrieve the results of a Call service request. + + + + + The operation contract for the CreateMonitoredItems service. + + + + + The operation contract for the CreateMonitoredItems service. + + + + + The method used to retrieve the results of a CreateMonitoredItems service request. + + + + + The operation contract for the ModifyMonitoredItems service. + + + + + The operation contract for the ModifyMonitoredItems service. + + + + + The method used to retrieve the results of a ModifyMonitoredItems service request. + + + + + The operation contract for the SetMonitoringMode service. + + + + + The operation contract for the SetMonitoringMode service. + + + + + The method used to retrieve the results of a SetMonitoringMode service request. + + + + + The operation contract for the SetTriggering service. + + + + + The operation contract for the SetTriggering service. + + + + + The method used to retrieve the results of a SetTriggering service request. + + + + + The operation contract for the DeleteMonitoredItems service. + + + + + The operation contract for the DeleteMonitoredItems service. + + + + + The method used to retrieve the results of a DeleteMonitoredItems service request. + + + + + The operation contract for the CreateSubscription service. + + + + + The operation contract for the CreateSubscription service. + + + + + The method used to retrieve the results of a CreateSubscription service request. + + + + + The operation contract for the ModifySubscription service. + + + + + The operation contract for the ModifySubscription service. + + + + + The method used to retrieve the results of a ModifySubscription service request. + + + + + The operation contract for the SetPublishingMode service. + + + + + The operation contract for the SetPublishingMode service. + + + + + The method used to retrieve the results of a SetPublishingMode service request. + + + + + The operation contract for the Publish service. + + + + + The operation contract for the Publish service. + + + + + The method used to retrieve the results of a Publish service request. + + + + + The operation contract for the Republish service. + + + + + The operation contract for the Republish service. + + + + + The method used to retrieve the results of a Republish service request. + + + + + The operation contract for the TransferSubscriptions service. + + + + + The operation contract for the TransferSubscriptions service. + + + + + The method used to retrieve the results of a TransferSubscriptions service request. + + + + + The operation contract for the DeleteSubscriptions service. + + + + + The operation contract for the DeleteSubscriptions service. + + + + + The method used to retrieve the results of a DeleteSubscriptions service request. + + + + + The asynchronous service contract which must be implemented by UA servers. + + + + + + The operation contract for the FindServers service. + + + + + The method used to retrieve the results of a FindServers service request. + + + + + The operation contract for the FindServersOnNetwork service. + + + + + The method used to retrieve the results of a FindServersOnNetwork service request. + + + + + The operation contract for the GetEndpoints service. + + + + + The method used to retrieve the results of a GetEndpoints service request. + + + + + An interface used by by clients to access a UA server. + + + + + + The operation contract for the FindServers service. + + + + + The operation contract for the FindServers service. + + + + + The method used to retrieve the results of a FindServers service request. + + + + + The operation contract for the FindServersOnNetwork service. + + + + + The operation contract for the FindServersOnNetwork service. + + + + + The method used to retrieve the results of a FindServersOnNetwork service request. + + + + + The operation contract for the GetEndpoints service. + + + + + The operation contract for the GetEndpoints service. + + + + + The method used to retrieve the results of a GetEndpoints service request. + + + + + The asynchronous service contract which must be implemented by UA servers. + + + + + + The operation contract for the RegisterServer service. + + + + + The method used to retrieve the results of a RegisterServer service request. + + + + + The operation contract for the RegisterServer2 service. + + + + + The method used to retrieve the results of a RegisterServer2 service request. + + + + + An interface used by by clients to access a UA server. + + + + + + The operation contract for the RegisterServer service. + + + + + The operation contract for the RegisterServer service. + + + + + The method used to retrieve the results of a RegisterServer service request. + + + + + The operation contract for the RegisterServer2 service. + + + + + The operation contract for the RegisterServer2 service. + + + + + The method used to retrieve the results of a RegisterServer2 service request. + + + + + The message contract for the FindServers service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the FindServers service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the FindServersOnNetwork service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the FindServersOnNetwork service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the GetEndpoints service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the GetEndpoints service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the RegisterServer service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the RegisterServer service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the RegisterServer2 service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the RegisterServer2 service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the OpenSecureChannel service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the OpenSecureChannel service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the CloseSecureChannel service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the CloseSecureChannel service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the CreateSession service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the CreateSession service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the ActivateSession service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the ActivateSession service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the CloseSession service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the CloseSession service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the Cancel service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the Cancel service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the AddNodes service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the AddNodes service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the AddReferences service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the AddReferences service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the DeleteNodes service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the DeleteNodes service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the DeleteReferences service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the DeleteReferences service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the Browse service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the Browse service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the BrowseNext service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the BrowseNext service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the TranslateBrowsePathsToNodeIds service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the TranslateBrowsePathsToNodeIds service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the RegisterNodes service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the RegisterNodes service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the UnregisterNodes service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the UnregisterNodes service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the QueryFirst service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the QueryFirst service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the QueryNext service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the QueryNext service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the Read service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the Read service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the HistoryRead service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the HistoryRead service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the Write service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the Write service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the HistoryUpdate service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the HistoryUpdate service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the Call service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the Call service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the CreateMonitoredItems service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the CreateMonitoredItems service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the ModifyMonitoredItems service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the ModifyMonitoredItems service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the SetMonitoringMode service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the SetMonitoringMode service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the SetTriggering service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the SetTriggering service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the DeleteMonitoredItems service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the DeleteMonitoredItems service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the CreateSubscription service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the CreateSubscription service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the ModifySubscription service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the ModifySubscription service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the SetPublishingMode service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the SetPublishingMode service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the Publish service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the Publish service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the Republish service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the Republish service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the TransferSubscriptions service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the TransferSubscriptions service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + The message contract for the DeleteSubscriptions service. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + + + + + + + The message contract for the DeleteSubscriptions service response. + + + + + + The body of the message. + + + + + Initializes an empty message. + + + + + Initializes the message with the body. + + + + + Initializes the message with a service fault. + + + + + An interface to a UA server implementation. + + + + + + Invokes the FindServers service. + + + + + Invokes the FindServersOnNetwork service. + + + + + Invokes the GetEndpoints service. + + + + + Invokes the CreateSession service. + + + + + Invokes the ActivateSession service. + + + + + Invokes the CloseSession service. + + + + + Invokes the Cancel service. + + + + + Invokes the AddNodes service. + + + + + Invokes the AddReferences service. + + + + + Invokes the DeleteNodes service. + + + + + Invokes the DeleteReferences service. + + + + + Invokes the Browse service. + + + + + Invokes the BrowseNext service. + + + + + Invokes the TranslateBrowsePathsToNodeIds service. + + + + + Invokes the RegisterNodes service. + + + + + Invokes the UnregisterNodes service. + + + + + Invokes the QueryFirst service. + + + + + Invokes the QueryNext service. + + + + + Invokes the Read service. + + + + + Invokes the HistoryRead service. + + + + + Invokes the Write service. + + + + + Invokes the HistoryUpdate service. + + + + + Invokes the Call service. + + + + + Invokes the CreateMonitoredItems service. + + + + + Invokes the ModifyMonitoredItems service. + + + + + Invokes the SetMonitoringMode service. + + + + + Invokes the SetTriggering service. + + + + + Invokes the DeleteMonitoredItems service. + + + + + Invokes the CreateSubscription service. + + + + + Invokes the ModifySubscription service. + + + + + Invokes the SetPublishingMode service. + + + + + Invokes the Publish service. + + + + + Invokes the Republish service. + + + + + Invokes the TransferSubscriptions service. + + + + + Invokes the DeleteSubscriptions service. + + + + + A basic implementation of the UA server. + + + + + + Invokes the FindServers service. + + + + + Invokes the FindServersOnNetwork service. + + + + + Invokes the GetEndpoints service. + + + + + Invokes the CreateSession service. + + + + + Invokes the ActivateSession service. + + + + + Invokes the CloseSession service. + + + + + Invokes the Cancel service. + + + + + Invokes the AddNodes service. + + + + + Invokes the AddReferences service. + + + + + Invokes the DeleteNodes service. + + + + + Invokes the DeleteReferences service. + + + + + Invokes the Browse service. + + + + + Invokes the BrowseNext service. + + + + + Invokes the TranslateBrowsePathsToNodeIds service. + + + + + Invokes the RegisterNodes service. + + + + + Invokes the UnregisterNodes service. + + + + + Invokes the QueryFirst service. + + + + + Invokes the QueryNext service. + + + + + Invokes the Read service. + + + + + Invokes the HistoryRead service. + + + + + Invokes the Write service. + + + + + Invokes the HistoryUpdate service. + + + + + Invokes the Call service. + + + + + Invokes the CreateMonitoredItems service. + + + + + Invokes the ModifyMonitoredItems service. + + + + + Invokes the SetMonitoringMode service. + + + + + Invokes the SetTriggering service. + + + + + Invokes the DeleteMonitoredItems service. + + + + + Invokes the CreateSubscription service. + + + + + Invokes the ModifySubscription service. + + + + + Invokes the SetPublishingMode service. + + + + + Invokes the Publish service. + + + + + Invokes the Republish service. + + + + + Invokes the TransferSubscriptions service. + + + + + Invokes the DeleteSubscriptions service. + + + + + An interface to a UA server implementation. + + + + + + Invokes the FindServers service. + + + + + Invokes the FindServersOnNetwork service. + + + + + Invokes the GetEndpoints service. + + + + + Invokes the RegisterServer service. + + + + + Invokes the RegisterServer2 service. + + + + + A basic implementation of the UA server. + + + + + + Invokes the FindServers service. + + + + + Invokes the FindServersOnNetwork service. + + + + + Invokes the GetEndpoints service. + + + + + Invokes the RegisterServer service. + + + + + Invokes the RegisterServer2 service. + + + + + This interface is used by ContentFilterOperation to get values from the + NodeSet for use by the various filter operators. All NodeSets used in a + ContentFilter must implement this interface. + + + + + Checks whether the target is an instance of the specified type. + + The context to use when checking the type definition. + The type of the instance. + + True if the object is an instance of the specified type. + + + + + Returns the value of an attribute identified by the operand. + + The context to use when evaluating the operand. + The type of the instance. + The path from the instance to the node which defines the attribute. + The attribute to return. + The sub-set of an array value to return. + + The attribute value. Returns null if the attribute does not exist. + + + + + This interface is used by ContentFilterOperation to get values from the + NodeSet for use by the various filter operators. All NodeSets used in a + ContentFilter must implement this interface. + + + + + Checks whether the target is an instance is in the specified view. + + The context to use when checking the biew. + The identifier for the view. + True if the instance is in the view. + + + + Returns TRUE if the node is related to the current target. + + + + + Returns the list of nodes related to the current target. + + + + + Returns the value of attributes for nodes which are related to the current node. + + The context to use when evaluating the operand. + The type of the instance. + The relative path to the attribute. + The attribute to return. + The sub-set of an array value to return. + + The attribute value. Returns null if the attribute does not exist. + + + + + Provides context information to used when searching the address space. + + + + + Initializes the context. + + The namespace URIs. + The type tree. + The context. + + + + Initializes the context. + + The namespace URIs. + The type tree. + + + + Initializes the context. + + The namespace URIs. + The type tree. + The preferred locales. + + + + The namespace table to use when evaluating filters. + + The namespace URIs. + + + + The type tree to use when evaluating filters. + + The type tree. + + + + The identifier for the session (null if multiple sessions are associated with the operation). + + The session identifier. + + + + The identity of the user. + + The user identity. + + + + The locales to use if available. + + The preferred locales. + + + + The mask to use when collecting any diagnostic information. + + The diagnostics mask. + + + + The table of strings which is used to store diagnostic string data. + + The string table. + + + + When the operation times out. + + The operation deadline. + + + + The current status of the the operation (bad if the operation has been aborted). + + The operation status. + + + + The audit identifier associated with the operation. + + The audit entry identifier. + + + + An interface to an object that describes a node. + + + + + The node identifier. + + The node identifier. + + + + The node class. + + The node class. + + + + The locale independent browse name. + + The name of the browse. + + + + The localized display name. + + The display name. + + + + The identifier for the TypeDefinition node. + + The type definition identifier. + + + + An interface to an object that describes a node local to the server. + + + + + A synchronization object that can be used to safely access the node. + + The data lock. + + + + A handle assigned to the node. + + The handle. + + + + The node identifier. + + The node identifier. + + + + The locale independent browse name. + + The name of the browse. + + + + The localized display name. + + The display name. + + + + The localized description + + The description. + + + + A mask indicating which attributes are writeable. + + The write mask. + + + + A mask indicating which attributes that are writeable for the current user. + + The user write mask. + + + + The identifier for the ModellingRule node. + + The modelling rule. + + + + The collection of references for the node. + + The references. + + + + Creates a copy of the node. + + The node identifier. + Copy of the node. + + + + Returns true if the node supports the attribute. + + The attribute identifier. + True if the node supports the attribute. + + + + Reads the value of a attribute. + + The context. + The attribute identifier. + The value. + The result of read operation. + + + + Writes the value of an attribute. + + The attribute identifier. + The value. + The result of Write operation + + + + An interface to an object that describes an ObjectType node. + + + + + Whether the type is an abstract type. + + + + + An interface to an object that describes an Object node. + + + + + Whether the object supports events. + + + + + An interface to an object that describes either a Variable or a VariableType node. + + + + + The value attribute. + + The value. + + + + The data type for the value attribute. + + The type of the data. + + + + Specifies whether the the value is an array or scalar. + + The value rank. + + + + The number in each dimension of an array value. + + The array dimensions. + + + + An interface to an object that describes a VariableType node. + + + + + Whether the type is an abstract type. + + + + + An interface to an object that describes a Variable node. + + + + + The type of access supported by variable. + + The access level. + + + + The type of access supported by variable for the current user. + + The user access level. + + + + The minimum sampling interval supported by the variable. + + The minimum sampling interval. + + + + Whether historical data is being archived for the variable. + + true if historizing; otherwise, false. + + + + An interface to an object that describes a DataType node. + + + + + Whether the method is currently executable. + + true if executable; otherwise, false. + + + + Whether the method is currently executable by the current user. + + true if executable by user; otherwise, false. + + + + An interface to an object that describes a DataType node. + + + + + Whether the type is an abstract type. + + + true if this instance is abstract; otherwise, false. + + + + + An interface to an object that describes a ReferenceType node. + + + + + Whether the type is an abstract type. + + + true if this instance is abstract; otherwise, false. + + + + + Whether the reference type has the same meaning in both directions. + + true if symmetric; otherwise, false. + + + + Whether the reference type has the same meaning in both directions. + + The name of the inverse. + + + + An interface to an object that describes a View node. + + + + + Whether the view supports events. + + The event notifier. + + + + Whether the view contains no loops. + + true if contains no loops; otherwise, false. + + + + An interface to an object that describes a node local to the server. + + + + + The identifier for the session (null if multiple sessions are associated with the operation). + + The session identifier. + + + + The identity of the user. + + The user identity. + + + + The locales to use if available. + + The preferred locales. + + + + The mask to use when collecting any diagnostic information. + + The diagnostics mask. + + + + The table of strings which is used to store diagnostic string data. + + The string table. + + + + When the operation times out. + + The operation deadline. + + + + The current status of the the operation (bad if the operation has been aborted). + + The operation status. + + + + The audit identifier associated with the operation. + + The audit entry identifier. + + + + A set of nodes in an address space. + + + + + Creates an empty nodeset. + + + + + Loads a nodeset from a stream. + + The input stream. + The set of nodes + + + + Write a nodeset to a stream. + + The input stream. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Adds a node to the set. + + The node. + + The NodeId must reference the strings for the node set. + + + + + Translates all elements in an array value. + + The array. + Type of the element. + The namespace URIs. + The server URIs. + + + + Translates a value. + + The value. + The namespace URIs. + The server URIs. + Translated value. + + + + Adds a node to the set after translating all namespace/server indexes in attributes or references. + + The node to export. + The namespace URIs. + The server URIs. + The node. + + Does not add references. + + + + + Translates a reference and adds it to the specified node. + + The node. + The reference to export. + The namespace URIs. + The server URIs. + + + + Removes a node from the set. + + The node identifier. + The result of the removal. + + The NodeId must reference the strings for the node set. + + + + + Returns true if the node exists in the nodeset. + + The node identifier. + + true if the node exists in the nodeset; otherwise, false. + + + The NodeId must reference the strings for the node set. + + + + + Returns the node in the set. + + The node identifier. + The node in the set. + + The NodeId must reference the strings for the node set. + + + + + Returns the node in the set. + + The node identifier. + The namespace URIs. + The node in the set. + + The NodeId namespace is translated before the node is looked up. + + + + + Translates all namespace/server indexes in attributes or references and returns a copy of the node. + + The node to import. + The namespace URIs. + The server URIs. + Translated copy of the node. + + Only imports references stored in the References collection. + + + + + Recursively imports any NodeIds or ExpandedNodeIds contained in a value. + + The value. + The namespace URIs. + The server URIs. + + + + + Updates the nodeset string tables and returns a NodeId that references those tables. + + The node identifier. + The namespace URIs. + A NodeId that references those tables. + + + + Updates the specified namespace tables and returns a NodeId that references those tables. + + The node identifier. + The namespace URIs. + A NodeId that references those tables. + + + + Updates the nodeset string tables and returns a NodeId that references those tables. + + The node identifier. + The namespace URIs. + The server URIs. + A NodeId that references those tables. + + + + Updates the specified string tables and returns a NodeId that references those tables. + + The node identifier. + The namespace URIs. + The server URIs. + A NodeId that references those tables. + + + + The table of namespaces. + + + + + The table of servers. + + + + + The table of nodes. + + + + + Updates the nodeset string tables and returns a NodeId that references those tables. + + The node identifier. + The target namespace URIs. + The source namespace URIs. + A NodeId that references those tables. + + + + Updates the nodeset string tables and returns a NodeId that references those tables. + + The qualified name. + The target namespace URIs. + The source namespace URIs. + A NodeId that references those tables. + + + + Updates the nodeset string tables and returns a NodeId that references those tables. + + The node identifier. + The target namespace URIs. + The target server URIs. + The source namespace URIs. + The source server URIs. + A NodeId that references those tables. + + + + Provides context information to used when evaluating filters. + + + + + The table of Namespace URIs used by the table. + + The namespace URIs. + + + + The table of Server URIs used by the table. + + The server URIs. + + + + The type model that describes the nodes in the table. + + The type tree. + + + + Returns true if the node is in the table. + + The node identifier. + True if the node is in the table. + + + + Finds a node in the node set. + + The node identifier. + Returns null if the node does not exist. + + + + Follows the reference from the source and returns the first target with the specified browse name. + + The source identifier. + The reference type identifier. + if set to true this is inverse reference. + if set to true subtypes are included. + Name of the browse. + + Returns null if the source does not exist or if there is no matching target. + + + + + Follows the reference from the source and returns all target nodes. + + The source identifier. + The reference type identifier. + if set to true this is inverse reference. + if set to true subtypes are included. + + Returns an empty list if the source does not exist or if there are no matching targets. + + + + + A table of nodes. + + + + + Initializes the object. + + The namespace URIs. + The server URIs. + The type tree. + + + + The table of Namespace URIs used by the table. + + The namespace URIs. + + + + The table of Server URIs used by the table. + + The server URIs. + + + + The type model that describes the nodes in the table. + + The type tree. + + + + Returns true if the node is in the table. + + The node identifier. + + + + + Finds a node in the node set. + + The node identifier. + Returns null if the node does not exist. + + + + Follows the reference from the source and returns the first target with the specified browse name. + + The source identifier. + The reference type identifier. + if set to true this is inverse reference. + if set to true subtypes are included. + Name of the browse. + + Returns null if the source does not exist or if there is no matching target. + + + + + Follows the reference from the source and returns all target nodes. + + The source identifier. + The reference type identifier. + if set to true this is inverse reference. + if set to true subtypes are included. + + Returns an empty list if the source does not exist or if there are no matching targets. + + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + The number of nodes in the table. + + The count. + + + + Adds a set of nodes to the table. + + The node set. + The external references. + + + + + Creates/updates a node from a ReferenceDescription. + + The reference. + Node + + + + Adds a node to the table (takes ownership of the object passed in). + + The node. + + Any existing node is removed. + + + + + Removes node from the table. + + The node identifier. + The result of removal. + + + + Removes all references from the table. + + + + + Adds the node to the table. + + The node. + + + + Removes the node from the table. + + The node. + + + + Adds the remote node to the table. + + The node. + + + + Removes the remote node from the table. + + The node. + + + + Finds the specified node. Returns null if the node does node exist. + + The node identifier. + + + + + Stores information for a node on a remote server. + + + + + Initializes the object. + + The owner. + The node identifier. + + + + Adds a reference to the node. + + The number of references. + + + + Removes a reference to the node. + + The number of references. + + + + The cached type definition id for the remote node. + + The type definition identifier. + + + + The node identifier. + + The node identifier. + + + + The node class. + + The node class. + + + + The locale independent browse name. + + The name of the browse. + + + + The localized display name. + + The display name. + + + + A reference to a node. + + + + + The type of reference. + + The reference type identifier. + + + + True if the reference is an inverse reference. + + + true if this instance is inverse; otherwise, false. + + + + + The identifier for the target node. + + The target identifier. + + + + A reference to a node. + + + + + Adds the reference to the node. + + The reference type identifier. + if set to true this is inverse reference. + The target identifier. + + + + Removes the reference from the node. + + The reference type identifier. + if set to true this is inverse reference. + The target identifier. + The result of removal. + + + + Removes all of the specified references. + + The reference type identifier. + if set to true this is inverse reference. + The result of removal. + + + + Checks whether any references which meet the specified critia exist. + + The reference type identifier. + if set to true this is inverse reference. + The target identifier. + if set to true subtypes are included. + The type tree. + True if reference exists. + + + + Returns a list of references which match the specified criteria. + + The reference type identifier. + if set to true this is inverse reference. + if set to true subtypes are included. + The type tree. + A list of references which match the specified criteria. + + + + Returns a single target that meets the specifed criteria. + + The reference type identifier. + if set to true this is inverse reference. + if set to true subtypes are included. + The type tree. + The index. + A single target that meets the specifed criteria. + + + + Returns a list of references to the specified target. + + The target identifier. + A list of references to the specified target. + + + + A table of references for a node. + + + + + Initializes the object. + + + + + Returns a string representation of the ReferenceCollection. + + + A that represents the current . + + + + + Returns a string representation of the ReferenceCollection. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + Adds the reference to the node. + + The reference type identifier. + if set to true this is inverse reference. + The target identifier. + + + + Removes the reference from the node. + + The reference type identifier. + if set to true this is inverse reference. + The target identifier. + The result of removal. + + + + Removes all of the specified references. + + The reference type identifier. + if set to true this is inverse reference. + The result of removal. + + + + Checks whether any references which meet the specified critia exist. + + The reference type identifier. + if set to true this is inverse reference. + The target identifier. + if set to true subtypes are included. + The type tree. + True if reference exists. + + + + Returns a list of references which match the specified criteria. + + The reference type identifier. + if set to true this is inverse reference. + if set to true subtypes are included. + The type tree. + A list of references which match the specified criteria. + + + + Returns a single target that meets the specifed criteria. + + The reference type identifier. + if set to true this is inverse reference. + if set to true subtypes are included. + The type tree. + The index. + A single target that meets the specifed criteria. + + + + Returns a list of references to the specified target. + + The target identifier. + A list of references to the specified target. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A dictionary designed to provide efficient lookups for references. + + + + + Creates an empty dictionary. + + + + + Returns true if the dictionary contains a reference that matches any subtype of the reference type. + + The reference. + The type tree. + + true if the dictionary contains key; otherwise, false. + + + + + Returns a list of references that match the direction and reference type. + + The reference type identifier. + if set to true this is inverse reference. + A list of references that match the direction and reference type. + + + + Returns a list of references that match the direction and are subtypes of the reference type. + + The reference type identifier. + if set to true this is inverse reference. + The type tree. + A list of references that match the direction and are subtypes of the reference type. + + + + Returns a list of references to the specified target. + + The target identifier. + A list of references to the specified target. + + + + Removes all of the references of the specified type and direction. + + The reference type identifier. + if set to true this is inverse reference. + The result of removal. + + + + + + + + + + + + + + + + + + + + + + Gets or sets the value with the specified NodeId. + + The value with the specified NodeId. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stores the references for a particular reference type. + + + + + Whether the entry is empty. + + true if this instance is empty; otherwise, false. + + + + Validates a reference passed as a parameter. + + The key. + if set to true [throw on error]. + The result of the validation. + + + + Returns the target entry associated with the reference. + + The key. + The value. + The target entry associated with the reference. + + + + Adds or replaces a reference. + + The key. + The value. + if set to true reference is replaced. + + + + Checks the isInverse flag are returns true if a specified target exists. + + The entry. + The reference. + + true if the specified entry contains key; otherwise, false. + + + + + Add references to a list that match the criteria. + + The entry. + if set to true this is inverse reference. + The hits. + + + + Stores the type tree for a server. + + + + + Initializes the object with default values. + + The namespace URIs. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Removes all types from the tree. + + + + + Adds a node to the type table if it is a type and does not already exist. If it exists references are updated. + + The node. + + + + Adds type to the table. A browse name is only required if it is a ReferenceType. + + The sub type identifier. + The super type identifier. + + Updates the any existing entry. + + + + + Adds type to the table. A browse name is only required if it is a ReferenceType. + + The sub type identifier. + The super type identifier. + Name of the browse. + + Updates the any existing entry. + + + + + Adds an encoding for an existing data type. + + + + + Adds type to the table. A browse name is only required if it is a ReferenceType. + + The sub type identifier. + The super type identifier. + Name of the browse. + + Updates the any existing entry. + + + + + Removes a subtype. + + The type identifier. + + + + Stores the information about an indexed type. + + + + + Checks if the type is a subtype of the specified node. + + The node identifier. + + true if this node is type of the specified NodeId otherwise, false. + + + + + Adds a subtype to the object. + + The subtype + + + + Remove subtype. + + The subtype identifier. + + + + Adds the subtypes to the list. + + The node identifiers. + + + + The table of all reference types known to the server. + + This class is thread safe. + + + + Initializes the object with default values. + + + + + Determines whether a node id is a valid view id. + + The description. + + true if the specified description is valid; otherwise, false. + + + + + Determines whether a node is in a view. + + The description. + The node id. + + true whether a node is in a view; otherwise, false. + + + + + Determines whether a reference is in a view. + + The description. + The reference. + + true whether a reference is in a view; otherwise, false. + + + + + Adds a view to the table. + + The view. + + + + Removes a view from the table. + + The view identifier. + + + + A base class for UA endpoints. + + + + + Initializes the object when it is created by the WCF framework. + + + + + Initializes the when it is created directly. + + The host. + + + + Initializes the endpoint with a server instead of a host. + + + + + Begins processing a request received via a binary encoded channel. + + A unique identifier for the secure channel which is the source of the request. + The description of the endpoint which the secure channel is using. + The incoming request. + The callback. + The callback data. + + The result which must be passed to the EndProcessRequest method. + + + + + + + Ends processing a request received via a binary encoded channel. + + The result returned by the BeginProcessRequest method. + + The response to return over the secure channel. + + + + + + Dispatches an incoming binary encoded request. + + Incoming request. + + + + Dispatches an incoming binary encoded request. + + + + + Dispatches an incoming binary encoded request. + + The ar. + + + + + Returns the host associated with the current context. + + The host associated with the current context. + + + + Returns the host associated with the current context. + + The host associated with the current context. + + + + Gets the server object from the operation context. + + The server object from the operation context. + + + + Gets the server object from the operation context. + + The server object from the operation context. + + + + Find the endpoint description for the endpoint. + + + + + Finds the service identified by the request type. + + + + + Creates a fault message. + + The request. + The exception. + A fault message. + + + + Creates a fault message. + + The request. + The exception. + A fault message. + + + + Returns the message context used by the server associated with the endpoint. + + The message context. + + + + Returns the description for the endpoint + + The endpoint description. + + + + The types known to the server. + + The server error. + + + + The types known to the server. + + + + + Sets the request context for the thread. + + The encoding. + + + + Called when a new request is received by the endpoint. + + The request. + + + + Called when a response sent via the endpoint. + + The response. + + + + Called when a response fault sent via the endpoint. + + The fault. + + + + Stores the definition of a service supported by the server. + + + + + Initializes the object with its request type and implementation. + + Type of the request. + The invoke method. + + + + The system type of the request object. + + The type of the request. + + + + The system type of the request object. + + The type of the response. + + + + Processes the request. + + The request. + + + + + A delegate used to dispatch incoming service requests. + + + + + An AsyncResult object when handling an asynchronous request. + + + + + Initializes a new instance of the class. + + The endpoint being called. + The callback to use when the operation completes. + The callback data. + The timeout in milliseconds + + + + Gets the request. + + The request. + + + + Gets the secure channel context associated with the request. + + The secure channel context. + + + + Gets or sets the call data associated with the request. + + The call data. + + + + Used to call the default synchronous handler. + + + This method may block the current thread so the caller must not call in the + thread that calls IServerBase.ScheduleIncomingRequest(). + This method always traps any exceptions and reports them to the client as a fault. + + + + + Used to indicate that the asynchronous operation has completed. + + The response. May be null if an error is provided. + + + + + Begins processing an incoming request. + + The security context for the request + The request data. + + The result object that is used to call the EndProcessRequest method. + + + + + Begins processing an incoming request. + + The security context for the request + The request. + The result object that is used to call the EndProcessRequest method. + + + + Checks for a valid IAsyncResult object and waits for the operation to complete. + + The IAsyncResult object for the operation. + if set to true an exception is thrown if an error occurred. + The response. + + + + Checks for a valid IAsyncResult object and returns the original request object. + + The IAsyncResult object for the operation. + The request object if available; otherwise null. + + + + Saves an exception as response. + + The exception. + + + + Processes the request. + + + + + The base asynchronous interface for all services exposed by UA servers. + + + + + The operation contract for the InvokeService service. + + + + + The method used to retrieve the results of a InvokeService service request. + + + + + An interface to a service response message. + + + + + The message context to use with the service. + + + The context information associated with a UA server that is used during message processing. + + + + + An error condition that describes why the server if not running (null if no error exists). + + The object that combines the status code and diagnostic info structures. + + + + Returns the endpoints supported by the server. + + Returns a collection of objects. + + + + Schedules an incoming request. + + The request. + + + + An interface to an object that manages a request received from a client. + + + + + Gets the request. + + The request. + + + + Gets the secure channel context associated with the request. + + The secure channel context. + + + + Gets or sets the call data associated with the request. + + The call data. + + + + Used to call the default synchronous handler. + + + This method may block the current thread so the caller must not call in the + thread that calls IServerBase.ScheduleIncomingRequest(). + This method always traps any exceptions and reports them to the client as a fault. + + + + + Used to indicate that the asynchronous operation has completed. + + The response. May be null if an error is provided. + An error to result as a fault. + + + + An interface which the service host object. + + + + + The UA server instance associated with the service host. + + An object of interface to a service response message. + + + + Stores context information for the current secure channel. + + + + + Initializes a new instance with the specified property values. + + The secure channel identifier. + The endpoint description. + The message encoding. + + + + Initializes a new instance with the context for the current thread. + + + + + TThe unique identifier for the secure channel. + + The secure channel identifier. + + + + The description of the endpoint used with the channel. + + The endpoint description. + + + + The encoding used with the channel. + + The message encoding. + + + + The active secure channel for the thread. + + The current secure channel context. + + + + The message encoding used with a request. + + + + + The request used the UA binary encoding. + + + + + The request used the UA XML encoding. + + + + + A base class for a UA server implementation. + + + + + Initializes object with default values. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + The message context to use with the service. + + The message context that stores context information associated with a UA + server that is used during message processing. + + + + + An error condition that describes why the server if not running (null if no error exists). + + The object that combines the status code and diagnostic info structures. + + + + Returns the endpoints supported by the server. + + Returns a collection of EndpointDescription. + + + + Schedules an incoming request. + + The request. + + + + Raised when the status of a monitored connection changes. + + + + + Raised when a connection arrives and is waiting for a callback. + + + + + Creates a new connection with a client. + + + + + Starts the server (called from a IIS host process). + + The object that stores the configurable configuration information + for a UA application + The array of Uri elements which contains base addresses. + Returns a host for a UA service. + + + + Starts the server (called from a dedicated host process). + + The object that stores the configurable configuration + information for a UA application. + + + + + Initializes the list of base addresses. + + + + + Returns the discovery URLs for the server. + + + + + Initializes the request queue. + + The configuration. + + + + Stops the server and releases all resources. + + + + + Stores information about a base address. + + + + + The URL for the base address. + + + + + Alternate URLs for the base address. + + + + + The profile URL for the address. + + + + + The discovery URL for the address. + + + + + Gets the list of base addresses supported by the server. + + + + + Gets the list of endpoints supported by the server. + + + + + The object used to verify client certificates + + The identifier for an X509 certificate. + + + + The server's application instance certificate. + + The instance X.509 certificate. + + + + Gets the instance certificate chain. + + + + + The non-configurable properties for the server. + + The properties of the current server instance. + + + + The configuration for the server. + + Object that stores the configurable configuration information for a UA application + + + + The application description for the server. + + Object that contains a description for the ApplicationDescription DataType. + + + + Gets or set the capabilities for the server. + + + + + Gets the list of transport listeners used by the server instance. + + The transport listeners. + + + + Returns the service contract to use. + + + + + Returns an instance of the endpoint to use. + + + + + Specifies if the server requires encryption; if so the server needs to send its certificate to the clients and validate the client certificates + + The description. + + + + + Called after the application certificate update. + + + + + Create the transport listener for the service host endpoint. + + The endpoint Uri. + The description of the endpoints. + The configuration of the endpoints. + The transport listener. + The certificate validator for the transport. + + + + Returns the UserTokenPolicies supported by the server. + + The configuration. + The description. + Returns a collection of UserTokenPolicy objects, the return type is . + + + + Checks for IP address or well known hostnames that map to the computer. + + The hostname. + The hostname to use for URL filtering. + + + + Filters the list of addresses by profile. + + + + + Filters the list of addresses by the URL that the client provided. + + + + + Returns the best discovery URL for the base address based on the URL used by the client. + + + + + Translates the discovery URLs based on the client url and returns an updated ApplicationDescription. + + The client URL. + The application description. + The base addresses. + The localized application name. + A copy of the application description + + + + Translates the endpoint descriptions based on the client url and profiles provided. + + The client URL. + The base addresses. + The endpoints. + The application to use with the endpoints. + The translated list of endpoints. + + + + Verifies that the request header is valid. + + The object that contains description for the RequestHeader DataType. + + + + Creates the response header. + + The object that contains description for the RequestHeader DataType. + The status code. + If statusCode is bad. + Returns a description for the ResponseHeader DataType. + + + + Creates the response header. + + The object that contains description for the RequestHeader DataType. + The exception used to create DiagnosticInfo assigned to the ServiceDiagnostics. + Returns a description for the ResponseHeader DataType. + + + + Creates the response header. + + The object that contains description for the RequestHeader DataType. + The thread safe table of string constants. + Returns a description for the ResponseHeader DataType. + + + + Called when the server configuration is changed on disk. + + The object that stores the configurable configuration information for a UA application. + + Servers are free to ignore changes if it is difficult/impossible to apply them without a restart. + + + + + Called before the server starts. + + The object that stores the configurable configuration information for a UA application. + + + + Creates the endpoints and creates the hosts. + + The object that stores the configurable configuration information for a UA application. + The object of the class that contains a description for the ApplicationDescription DataType. + The collection of objects. + Returns list of hosts for a UA service. + + + + Starts the server application. + + The object that stores the configurable configuration information for a UA application. + + + + Called before the server stops + + + + + Returns the properties for associated with the server instance. + + Returns the properties of the current server instance. + + + + Processes the request. + + The request. + + + + Manages a queue of requests. + + + + + Initializes a new instance of the class. + + The server. + The minimum number of threads in the pool. + The maximum number of threads in the pool. + The maximum number of requests that will placed in the queue. + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Schedules an incoming request. + + The request. + + + + Used to recieve notifications when a alarm is shelved or unshelved. + + The current system context. + The alarm that raised the event. + True if the condition is being shelved. + True if the condition is being until it goes inactive (i.e. OneShotShelve). + How long to shelve the condition. + + + + Used to recieve notifications when the timed shelve period elapses for an alarm. + + The current system context. + The alarm that raised the event. + + + + Used to receive notifications when the shelving state is either OneShotShelved or TimedShelved. + Updates the value of the UnshelveTime + + The current system context. + The alarm that raised the event. + + + + The severity for an event. + + + Event severities can have any value between 1 and 1000. This enumeration provides default values. + + + + + The highest possible severity. + + + + + The event has high severity. + + + + + The event has medium high severity. + + + + + The event has medium severity. + + + + + The event has medium-low severity. + + + + + The event has low severity. + + + + + The lowest possible severity. + + + + + The base class for all instance nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance from another instance. + + + + + Returns the id of the default type definition node for the instance. + + The namespace uris. + + + + + The parent node. + + + + + Makes a copy of the node and all children. + + + A new object that is a copy of this instance. + + + + + Returns the id of the default type definition node for the instance. + + The type definition id. + + + + Gets a display path for the node. + + + + + Gets a display text for the node. + + + + + Gets a display path for the node. + + + + + Returns non-null text for the node. + + + + + A numeric identifier for the instance that is unique within the parent. + + + + + The type of reference from the parent node to the instance. + + + + + The identifier for the type definition node. + + + + + The modelling rule assigned to the instance. + + + + + Sets the flag which indicates whether event are being monitored for the instance and its children. + + The system context. + The event to report. + + + + Initializes the instance from an event notification. + + The context. + The fields selected for the event notification. + The event notification. + + This method creates components based on the browse paths in the event field and sets + the NodeId or Value based on values in the event notification. + + + + + Sets the minimum sampling interval for the node an all of its child variables.. + + The context. + The minimum sampling interval. + + + + + + + + + + Exports a copy of the node to a node table. + + The context. + The node to update with the values from the instance. + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context user. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the specified context. + + The context. + The decoder. + The attributes to load. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Populates the browser with references that meet the criteria. + + The context for the system being accessed. + The browser to populate. + + + + A lightweight snapshot of an instance node. + + + + + Gets or sets a handled associated with the snapshot. + + The handle. + + + + Initializes the snapshot from an instance. + + The context. + The state. + + + + Sets the value for a child. Adds it if it does not already exist. + + The BrowseName. + The node class. + The value. + + + + Returns true if the snapshort is an instance of the specified type. + + The context to use when checking the type definition. + The type of the instance. + + True if the object is an instance of the specified type. + + + + + Returns the value of the attribute for the specified child. + + The context to use when evaluating the operand. + The type of the instance. + The path from the instance to the node which defines the attribute. + The attribute to return. + The sub-set of an array value to return. + + The attribute value. Returns null if the attribute does not exist. + + + + + Stores the key attributes of a child node. + + + + + Sets the value for a child. Adds it if it does not already exist. + + The node. + The BrowseName. + The node class. + The value. + + + + Creates a snapshot of a node. + + The context. + The state. + A snapshot of a node. + + + + Recusively stores the the current value for Object and Variable child nodes. + + The context. + The state. + The list of the nodes. + + + + Returns the value of the attribute for the specified child. + + The node. + The relative path. + The index. + The attribute id. + The value of the attribute for the specified child. + + + + The base class for all object nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance with the default values. + + + + + Initializes the instance from another instance. + + + + + Returns the id of the default type definition node for the instance. + + + + + The inverse name for the reference. + + + + + Raised when the EventNotifier attribute is read. + + + + + Raised when the EventNotifier attribute is written. + + + + + Exports a copt of the node to a node table. + + The context. + The node. + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context user. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the specified context. + + The context. + The decoder. + The attributes to load. + + + + Reads the value for any non-value attribute. + + + + + Write the value for any non-value attribute. + + + + + The base class for all folder nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Returns the id of the default type definition node for the instance. + + + + + The base class for all object type nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + The base class for all object type nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + The base class for all type nodes. + + + + + Initializes the type with its defalt attribute values. + + + + + Initializes the instance from another instance. + + + + + Makes a copy of the node and all children. + + + A new object that is a copy of this instance. + + + + + The identifier for the supertype node. + + + + + Whether the type is an abstract type. + + + + + Raised when the IsAbstract attribute is read. + + + + + Raised when the IsAbstract attribute is written. + + + + + Exports a copt of the node to a node table. + + The context. + The node. + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context user. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the specified context. + + The context. + The decoder. + The attributes to load. + + + + Reads the value for any non-value attribute. + + + + + Write the value for any non-value attribute. + + + + + Populates the browser with references that meet the criteria. + + The context for the current operation. + The browser to populate. + + + + The base class for all variable nodes. + + + + + Initializes the instance with its defalt attribute values. + + The parent node. + + + + Initializes the instance from another instance. + + The description how access the system containing the data. + A source node to be copied to this instance. + + + + If overridden returns the id of the default type definition node for the instance. + + The namespace uris. + Returns the id of the default type definition or if not overridden + + + + If overridden returns the id of the default data type node for the instance. + + The namespace uris. + + The id of the default data type node for the instance or if not overridden. + + + + + If overridden returns the id of the default value rank for the instance. + + + The id of the default value rank or if not overridden. + + + + + Converts a values contained in a variant to the value defined for the variable. + + + + + Converts a values contained in a variant to the value defined for the variable. + + The system context. + The value. + if set to true throw an exception on error. + If not overridden returns . + + + + Returns the value after checking if the variable is null. + + The framework type of value contained in the . + The variable. + + The value contained by the or the default value for the datatype if the variable is null. + + + + + Returns the value after checking if the property is null. + + The type of value contained in the property. + The property. + + The value. The default value for the datatype if the property is null. + + + + + Converts a values contained in a variant to the value defined for the variable. + + + + + Converts a values contained in a variant to the value defined for the variable. + + The framework type of value contained in this instance. + The context. + The value. + if set to true throws the on error, otherwise default value for is returned . + + The value of the type. + + + If throwOnError is false the default value for the type is returned if the value is not valid. + + If cannot convert . + + + + Decodes the contents of an extension object. + + The context (uses ServiceMessageContext.GlobalContext if null). + The type that the ExtensionObject must be converted to. + The ExtensionObject to convert. + Whether to throw an exception on error. + The decoded instance. Null on error. + + + + Checks the data type of a value before casting it to the type . + + The framework type of value contained in the variable. + The value. + if set to true is thrown on error. + Returns or default for + if it is impossible to cast the value or the value is null and for the type returns true. + + + + The value of the variable. + + + + + Whether the value can be set to null. + + + + + The value of the variable as a Variant. + + The wrapped value as a Variant. + + + + The timestamp associated with the variable value. + + The timestamp. + + + + The status code associated with the variable value. + + The status code. + + + + The behavior to use when reading or writing all or part of the object. + + The copy policy that specifies the policies to use when handling reads and write to value. + + This value is ignored if the OnReadValue or OnWriteValue event handlers are provided. + + + + + The data type for the variable value. + + The type of the data . + + + + The number of array dimensions permitted for the variable value. + + The value rank. + Indicates whether the DataType is an array and how many dimensions the array has. + + + + The number of dimensions for an array values with one or more fixed dimensions. + + The array dimensions. + + If the Value Rank does not identify an array of a specific dimension (i.e. ValueRank <= 0) + the Array Dimensions attribute can either be set to null or the attribute is missing. This behaviour is vendor-specific. + If the Value Rank attribute specifies an array of a specific dimension (i.e. ValueRank > 0) then the Array Dimensions + attribute shall be specified in the table defining the Variable. + + + + + The type of access available for the variable. + + The access level. + + + + The type of access granted to the current user. + + The user access level. + + + + The minimum sampling interval supported by the variable. + + The minimum sampling interval. + + + + Whether the server is archiving the value of the variable. + + true if historizing; otherwise, false. + + + + A bit mask specifying how the value may be accessed. + + The extended access level. + + + + Raised when the Value attribute is read. + + + + + Raised when the Value attribute is written. + + + + + Raised when the Value attribute is read. + + + + + Raised when the Value attribute is written. + + + + + Raised when the DataType attribute is read. + + + + + Raised when the DataType attribute is written. + + + + + Raised when the ValueRank attribute is read. + + + + + Raised when the ValueRank attribute is written. + + + + + Raised when the ArrayDimensions attribute is read. + + + + + Raised when the ArrayDimensions attribute is written. + + + + + Raised when the AccessLevel attribute is read. + + + + + Raised when the AccessLevel attribute is written. + + + + + Raised when the UserAccessLevel attribute is read. + + + + + Raised when the UserAccessLevel attribute is written. + + + + + Raised when the MinimumSamplingInterval attribute is read. + + + + + Raised when the MinimumSamplingInterval attribute is written. + + + + + Raised when the Historizing attribute is read. + + + + + Raised when the Historizing attribute is written. + + + + + Raised when the AccessLevelEx attribute is read. + + + + + Raised when the AccessLevelEx attribute is written. + + + + + Exports a copy of the node to a node provided the type is compatible with . + + The context that describes how access the system containing the data. + The node to be a copy of this instance. + + + + Saves the attributes from this instance to the . + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the . + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + + A mask that specifies the available attributes. + + + + + Saves object in an binary stream. + + The context that describes how access the system containing the data.. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the attributes of this instance from the . + + The context. + The decoder. + The attributes to load. + + + + Converts the array dimensions to an XML string. + + The array dimensions. + The XML string value. + + + + Returns a list of the array dimensions. + + The XML string value. + The array dimensions list. + + + + Recusively sets the status code and timestamp for the node and all child variables. + + The context. + The status code. + The timestamp. Not updated if set to DateTime.Min + + + + Reads the value for any non-value attribute. + + The context. + The attribute idetifier . + The returned value. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Reads the value for the value attribute. + + The context. + The index range. + The data encoding. + The value to be returned. + The source timestamp. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Applys the index range and the data encoding to the value. + + The context. + The index range. + The data encoding. + The value. + + + + + Write the value for any non-value attribute. + + The context. + The attribute id. + The value. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Write the value for the value attribute. + + The context. + The index range. + The value. + The status code. + The source timestamp. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + A typed base class for all data variable nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance with the default values. + + + + + Returns the id of the default type definition node for the instance. + + + + + A typed base class for all data variable nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Sets the value to its default value if it is not valid. + + + + + The value of the variable. + + + + + A typed base class for all data variable nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance with the default values. + + + + + Returns the id of the default type definition node for the instance. + + + + + The strings that describe the values for an enumeration. + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + A typed base class for all data variable nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance with the default values. + + An object that describes how access the system containing the data. + + + + Extracts a value of the specified type from a value stored in a variant. + + + + + Extracts a value of the specified type from a value stored in a variant. + + The context. + The value. + if set to true throw an exception on error. + + If throwOnError is false the default value for the type is returned if the value is not valid. + + Returns value of the T type + + + + The value of the variable. + + + + + A thread safe object that can be used to access the value of a structure variable. + + + + + Initializes the instance with a synchronization object. + + + + + An object used to synchronize access to the value. + + + + + The behavior to use when reading or writing all or part of the object. + + + + + Gets or sets the current error state. + + + + + Gets or sets the timestamp associated with the value. + + + + + Clears the change masks for all nodes in the update list. + + + + + Raised before the value is read. + + + + + Raised after the value is written. + + + + + Does any processing before a read operation takes place. + + The context. + The node. + + + + Reads the value or a component of the value. + + + + + Reads the current value. + + + + + Writes the current value. + + + + + Sets the list of nodes which are updated when ClearChangeMasks is called. + + + + + Used to receive notifications when the value attribute is read or written. + + + + + Specifies the policies to use when handling reads and write to value. + + + + + The value is copied when is is read. + + + + + The value is copied before it is written. + + + + + The value is never copied (only useful for value types that do not contain reference types). + + + + + Data is copied when it is written and when it is read. + + + + + The base class for all variable type nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Initializes the instance from another instance. + + + + + Sets the value to its default value if it is not valid. + + + + + The value of the variable. + + + + + The value of the variable as a Variant. + + + + + The data type for the variable value. + + + + + The number of array dimensions permitted for the variable value. + + + + + The number of dimensions for an array values with one or more fixed dimensions. + + + + + Raised when the Value attribute is read. + + + + + Raised when the Value attribute is written. + + + + + Raised when the DataType attribute is read. + + + + + Raised when the DataType attribute is written. + + + + + Raised when the ValueRank attribute is read. + + + + + Raised when the ValueRank attribute is written. + + + + + Raised when the ArrayDimensions attribute is read. + + + + + Raised when the ArrayDimensions attribute is written. + + + + + Exports a copy of the node to a node table. + + The context. + The node. + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context user. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the specified context. + + The context. + The decoder. + The attributes to load. + + + + Reads the value for any non-value attribute. + + + + + Reads the value for the value attribute. + + + + + Write the value for any non-value attribute. + + + + + Write the value for the value attribute. + + + + + A base class for all data variable type nodes. + + + + + Initializes the type with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance with the default values. + + + + + A typed base class for all data variable type nodes. + + + + + Initializes the type with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Sets the value to its default value if it is not valid. + + + + + The value of the variable. + + + + + A base class for all property variable type nodes. + + + + + Initializes the type with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance with the default values. + + + + + A typed base class for all property variable type nodes. + + + + + Initializes the type with its defalt attribute values. + + + + + Initializes the instance with the default values. + + + + + Sets the value to its default value if it is not valid. + + + + + The value of the variable. + + + + + Used to recieve notifications when a condition is enabled or disabled. + + The current system context. + The condition that raised the event. + True if the condition is moving/has moved to the Enabled state. + + + + Used to recieve notifications when a comment is added. + + The current system context. + The condition that raised the event. + The identifier for the event which is the target for the comment. + The comment. + + + + The base class for all reference type nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + The abstract definition of the data type. + + + + + A modifier applied to the datatype. + + + + + The purpose of the data type. + + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context for the system being accessed. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the specified context. + + The context. + The decoder. + The attributes to load. + + + + Raised when the DataTypeDefinition attribute is read. + + + + + Raised when the DataTypeDefinition attribute is written. + + + + + Reads the value for DataTypeDefinition attribute. + + + + + Write the value for DataTypeDefinition attribute. + + + + + + + + + + + + + + + + + Used to receive notifications when the dialog receives a response. + + + + + A delegate used to recieve notifications when a state machine transition occurs. + + + + + An interface to an object that describes how access the system containing the data. + + + + + An application defined handle for the system. + + The system handle. + + + + The identifier for the session (null if multiple sessions are associated with the operation). + + The session identifier. + + + + The identity of the user (null if not available). + + The user identity. + + + + The locales to use if available. + + The preferred locales. + + + + The audit log entry associated with the operation (null if not available). + + The audit entry identifier. + + + + The table of namespace uris to use when accessing the system. + + The namespace URIs. + + + + The table of server uris to use when accessing the system. + + The server URIs. + + + + A table containing the types that are to be used when accessing the system. + + The type table. + + + + A factory that can be used to create encodeable types. + + The encodeable factory. + + + + A factory that can be used to create node ids. + + The node identifiers factory. + + + + A factory that can be used to create encodeable types. + + The encodeable factory. + + + + An interface that can be used to create new node ids. + + + + + Creates the NodeId for the specified node. + + The context. + The node. + The new NodeId. + + + + A generic implementation for ISystemContext interface. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The context. + + + + An application defined handle for the system. + + The system handle. + + + + The identifier for the session (null if multiple sessions are associated with the operation). + + The session identifier. + + + + The identity of the user. + + The user identity. + + + + The locales to use if available. + + The preferred locales. + + + + The audit log entry associated with the operation (null if not available). + + The audit entry identifier. + + + + The table of namespace uris to use when accessing the system. + + The namespace URIs. + + + + The table of server uris to use when accessing the system. + + The server URIs. + + + + A table containing the types that are to be used when accessing the system. + + The type table. + + + + A factory that can be used to create encodeable types. + + The encodeable factory. + + + + A factory that can be used to create node instances. + + The node state factory. + + + + A factory that can be used to create node ids. + + The node idetifiers factory. + + + + The operation context associated with the system context. + + The operation context. + + + + Creates a copy of the context that can be used with the specified operation context. + + The operation context to use. + + A copy of the system context that references the new operation context. + + + + + The diagnostics mask associated with the operation. + + The diagnostics mask. + + + + The table of strings associated with the operation. + + The string table. + + + + When the operation will be abandoned if it has not completed. + + The operation deadline. + + + + The current status of the operation. + + The operation status. + + + + The possible states for a limit alarm. + + + + + The alarm ia inactive. + + + + + The alarm is in the HighHigh state. + + + + + The alarm is in the High state. + + + + + The alarm is in the Low state. + + + + + The alarm is in the LowLow state. + + + + + The base class for all method nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance with the default values. + + + + + Initializes the instance from another instance. + + + + + The identifier for the declaration of the method in the type model. + + + + + Whether the method can be called. + + + + + Whether the method can be called by the current user. + + + + + Raised when the Executable attribute is read. + + + + + Raised when the Executable attribute is written. + + + + + Raised when the UserExecutable attribute is read. + + + + + Raised when the UserExecutable attribute is written. + + + + + Raised when the method is called. + + + + + Raised when the method is called. + + + + + Exports a copt of the node to a node table. + + The context. + The node. + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context user. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the specified context. + + The context. + The decoder. + The attributes to load. + + + + Reads the value for any non-value attribute. + + + + + Write the value for any non-value attribute. + + + + + The input arguments for the method. + + + + + The output arguments for the method. + + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + + + Finds the child with the specified browse name. + + + + + Invokes the methods and returns the output parameters. + + The context to use. + The object being called. + The input arguments. + Any errors for the input arguments. + The output arguments. + The result of the method call. + + + + Invokes the method, returns the result and output argument. + + + + + Invokes the method, returns the result and output argument. + + The current context. + The id of the object. + The input arguments which have been already validated. + The output arguments which have initialized with thier default values. + + + + + Validates the input argument. + + The context to use. + The input argument. + The index in the the list of input argument. + Any error. + + + + Returns the default value for the output argument. + + The context to use. + The output argument description. + The default value. + + + + Used to process a method call. + + + + + Used to process a method call. + + + + + The base class for custom nodes. + + + + + The specification that defines the node. + + + + + The documentation for the node that is saved in the NodeSet. + + + + + Creates an empty object. + + The node class. + + + + An overrideable version of the Dispose. + + + + + An overrideable version of the Dispose. + + + + + When overridden in a derived class, iinitializes the instance with the default values. + + The object that describes how access the system containing the data. + + + + When overridden in a derived class, initializes the any option children defined for the instance. + + The object that describes how access the system containing the data. + + + + Initializes the instance with the XML or bnary (array of bytes) representation contained in the string. + + The object that describes how access the system containing the data. + The initialization string that is used to initializes the node. + + + + Initializes the instance with the default values. + + The object that describes how access the system containing the data. + The source node. + + + + Returns a string representation of the node. + + + A that represents the current . + + + + + Returns a string representation of the node. + + The specifying the format to use. + -or- + null to use the default format defined for the type of the implementation. + The to use to format the value. + -or- + null to obtain the numeric format information from the current locale setting of the operating system. + + A containing the value of the current instance in the specified format. + + + + + An arbitrary handle associated with the node. + + + + + What has changed in the node since was last called. + + The change masks that indicates what has changed in a node. + + + + A symbolic name for the node that is not expected to be globally unique. + + The name of the symbolic. + + This string can only contain characters that are valid for an XML element name. + + + + + The identifier for the node. + + An instance that stores an identifier for a node in a server's address space. + + + + The class for the node. + + The node class that is a description of the node. + + + + The browse name of the node. + + The name qualified with a namespace. + + + + The display name for the node. + + Human readable qualified with a locale. + + + + The localized description for the node. + + Human readable qualified with a locale. + + + + Specifies which attributes are writeable. + + A description for the AttributeWriteMask of the node fields. + + + + Specifies which attributes are writeable for the current user. + + A description for the AttributeWriteMask of the node fields. + + + + Specifies a list of permissions for the node assigned to roles. + + The Permissions that apply to the node. + + + + Specifies a list of permissions for the node assigned to roles for the current user. + + The Permissions that apply to the node for the current user. + + + + Specifies a mask indicating any access restrictions that apply to the node. + + The server specific access restrictions of the node. + + + + Gets or sets the extensions of the node set. Property used when importing nodeset2.xml files. + + + The extensions. + + + + + The categories assigned to the node. + + + + + The release status for the node. + + + + + Exports a copy of the node to a node table. + + The object that describes how access the system containing the data. + A table of nodes. + + + + Exports a copy of the node to a node table. + + The object that describes how access the system containing the data. + The node to update with the values from the instance. + + + + Saves the node as XML in a stream. + + The context for the system being accessed. + The stream to write. + + + + Saves the node in a binary stream. + + The context for the system being accessed. + The stream to write. + + + + Saves the object in the binary stream. + + The context for the system being accessed. + The stream to write. + + + + Loads the node from a binary stream. + + The context for the system being accessed. + The stream to read. + + + + Flags which control the serialization of a NodeState in a stream. + + + + + The default value. + + + + + The AccessLevel attribute. + + + + + The ArrayDimensions attribute. + + + + + The BrowseName attribute. + + + + + The ContainsNoLoops attribute. + + + + + The DataType attribute. + + + + + The Description attribute. + + + + + The DisplayName attribute. + + + + + The EventNotifier attribute. + + + + + The Executable attribute. + + + + + The Historizing attribute. + + + + + The InverseName attribute. + + + + + The IsAbstract attribute. + + + + + The MinimumSamplingInterval attribute. + + + + + The NodeClass attribute. + + + + + The NodeId attribute. + + + + + The Symmetric attribute. + + + + + The UserAccessLevel attribute. + + + + + The UserExecutable attribute. + + + + + The UserWriteMask attribute. + + + + + The ValueRank attribute. + + + + + The WriteMask attribute. + + + + + The Value attribute. + + + + + The SymbolicName for the node. + + + + + The target of the TypeDefinitionId reference. + + + + + The target of the HasModellingRule reference. + + + + + The NumericId for the node. + + + + + The type of reference between a child and a parent. + + + + + The source of the HasSubType reference. + + + + + The StatusCode associated with the Value attribute. + + + + + The DataTypeDefinition attribute of a DataType Node. + + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context for the system being accessed. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the object from a binary stream. + + The context for the system being accessed. + The decoder to read from. + The masks indicating what attributes to read. + + + + Saves the children in a binary stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Loads the children from a binary stream. + + The context for the system being accessed. + The decoder to read from. + + + + Reads attributes for the next child found in the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + The updated child. + + The child is created if it does not already exist. + Recursively updates any children of the child. + + + + + Creates a node and initializes it from the stream. + + The context for the system being accessed. + The decoder. + The new node. + + + + Saves the reference table in a binary stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Loads the reference table from a binary stream. + + The context for the system being accessed. + The decoder to read from. + + + + Saves the node as XML in a stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Initializes the node from XML in a stream. + + The context for the system being accessed. + The stream to read. + + + + Initializes the node from XML in a stream. + + The context for the system being accessed. + The stream to read. + + + + Initializes the node from XML in a stream. + + The context for the system being accessed. + The stream to read. + + + + Initializes the node from XML in a stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Saves the children from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Saves a refernce table from an XML stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Reads attributes for the children from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + Any children found in the stream that do not exist are created and initialized from the stream. + + + + + Loads any additional references from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Reads attributes for the next child found in the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + The updated child. + + The child is created if it does not already exist. + Recursively updates any children of the child. + + + + + Creates a node and initializes it from the stream. + + The context for the system being accessed. + The decoder. + The new node. + + + + Updates a child which is not defined by the type definition. + + The context for the system being accessed. + The decoder. + The parent. + The attributes to load. + The node class. + Symbolic name of the node. + A name qualified with a namespace. + An instance of the type that is a base class for all instance nodes. + + + + Reads an unknown node from a stream. + + + + + Reads an unknown node from a stream. + + + + + Updates a child which is not defined by the type definition. + + + + + An event which allows multiple sinks to be notified when the OnStateChanged callback is called. + + + + + Called when the Validate method is called + + + + + Called when ClearChangeMasks is called and the ChangeMask is not None. + + + + + Called when a reference gets added to the node + + + + + Called when a reference gets removed from the node + + + + + Called when a node produces an event that needs to be reported. + + + + + Called when ClearChangeMasks is called and the ChangeMask is not None. + + + + + Called after the CreateBrowser method is called. + + + + + Called after the PopulateBrowser method is called. + + + + + Called when the NodeId attribute is read. + + + + + Called when the NodeId attribute is written. + + + + + Called when the NodeClass attribute is read. + + + + + Called when the NodeClass attribute is written. + + + + + Called when the BrowseName attribute is read. + + + + + Called when the BrowseName attribute is written. + + + + + Called when the DisplayName attribute is read. + + + + + Called when the DisplayName attribute is written. + + + + + Called when the Description attribute is read. + + + + + Called when the Description attribute is written. + + + + + Called when the WriteMask attribute is read. + + + + + Called when the WriteMask attribute is written. + + + + + Called when the UserWriteMask attribute is read. + + + + + Called when the UserWriteMask attribute is written. + + + + + Called when the RolePermissions attribute is read. + + + + + Called when the RolePermissions attribute is written. + + + + + Called when the UserRolePermissions attribute is read. + + + + + Called when the UserRolePermissions attribute is written. + + + + + Called when the AccessRestrictions attribute is read. + + + + + Called when the AccessRestrictions attribute is written. + + + + + Returns the root node if the node is part of an instance hierarchy. + + + + + + True if events produced by the instance are being monitored. + + + + + True if the node and its children have been initialized. + + + + + True if the node must be validated with the underlying system before use. + + + + + Sets the flag which indicates whether event are being monitored for the instance and its children. + + The system context. + True if monitoring is active. + Whether to recursively set the flag on any children. + + + + Reports an event produced by the node. + + The system context. + The event to report. + + + + Adds a notifier relationship to the node. + + The system context. + The type of reference (HasEventSource is used if null specified). + True for an inverse reference. + The target of the reference. + + + + Removes a notifier relationship from the node. + + The system context. + The target of the notifier relationship. + Whether the inverse relationship should be removed from the target. + + + + Populates a list with the notifiers that belong to the node. + + The system context. + The list of notifiers to populate. + + + + Returns any notifiers with the specified notifier type (NodeId) and direction. + + + + + Returns the last event produced for any conditions belonging to the node or its chilren. + + The system context. + The list of condition events to return. + Whether to recursively report events for the children. + + + + Returns the method with the specified NodeId or MethodDeclarationId. + + The system context. + The identifier for the method to find. + Returns the method. Null if no method found. + + + + Sets the specified bits in the change masks (ORs with the current bits). + + + + + Clears the change masks. + + The context that describes how access the system containing the data.. + if set to true clear masks recursively for all children.. + + + + Recusively sets the status code and timestamp for the node and all child variables. + + The context. + The status code. + The timestamp. Not updated if set to DateTime.Min + + + + Called before a node is created. + + + + + Called before the ids are assigned to the node and its children. + + + + + Called after a node is created. + + + + + Called before the node is deleted. + + + + + Called after the object is deleted. + + + + + Creates a node with default values and assigns new node ids to it and all children. + + + + + Recusivesly calls OnBeforeCreate for the node and its children. + + + + + Recusivesly calls OnBeforeCreate for the node and its children. + + + + + Recusivesly calls OnAfterCreate for the node and its children. + + + + + Create an instance by copying another node. + + + + + Deletes an instance and its children (calls OnStateChange callback for each node). + + + + + Recursively assigns NodeIds to the node and its children. + + The context. + A table mapping the old node ids to the new node ids. + + + + Recursively assigns NodeIds to the node and its children. + + + + + Verifies that the node represents a valid node. + + The context for the current operation. + True if the node is currently valid. + + + + Creates a browser for the entity references. + + The context for the current operation. + The view to use. + The reference type filter to use. + Whether to include sub-types. + The direction to browse. + The browse name of the targets to return. + Any additional references that should be included in the list. + Only return references that are stored in memory. + A thread safe object which enumerates the references for an entity. + + + + Populates a table with all nodes in the hierarchy. + + The context for the current operation. + The path to the parent object. + A table of all nodes in the hierarchy. + + This method is use get a snapshot of the relative paths to all nodes in the hierarchy. + The hierarchy may not be complete if portions of it are stored external systems. + + + + + Populates a table with all references in the hierarchy. + + The context for the current operation. + The path to the parent object. + A table of all nodes in the hierarchy. + The references in the hierarchy. + + The method is used to serialize any additional references between nodes in the hierarchy. + The references are stored as relative paths from the root node. + Any references to nodes outside the hierachy are stored as NodeIds instead of relative paths. + + + + + Recursively updates the targets of references. + + The context. + A table mapping the old node ids to the new node ids. + + + + Recursively updates the targets of references. + + + + + Populates the browser with references that meet the criteria. + + The context for the current operation. + The browser to populate. + + + + Updates the node with the values from an event notification. + + + + + Reads the values for a set of attributes. + + The context for the current operation. + The attributes to read. + + A list of values. + If any error occurs for an attribute the value will be null. + + + + + Reads the value of an attribute. + + The context for the current operation. + The attribute id. + The index range. + The data encoding. + The value. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Reads the value for any non-value attribute. + + The context. + The attribute idetifier . + The returned value. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + When overridden in a derived class, iReads the value for the value attribute. + + The context. + The index range. + The data encoding. + The value to be returned. + The source timestamp. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Writes the specified attribute value. + + The context for the current operation. + The attribute id. + The index range. + The value. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Write the value for any non-value attribute. + + The context. + The attribute id. + The value. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Write the value for the value attribute. + + The context. + The index range. + The value. + The status code. + The source timestamp. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Finds the child by a path constructed from the symbolic names. + + The context. + The symbolic path. + The matching child. Null if the no child was found. + + This method assumes the symbolicPath consists of symbolic names seperated by a slash ('/'). + Leading and trailing slashes are ignored. + + + + + Finds the child with the specified browse name + + The context to use. + The browse name. + The target if found. Null otherwise. + + + + Finds the child with the specified browse path. + + The context to use. + The browse path. + The current position in the browse path. + The target if found. Null otherwise. + + + + Finds or creates the child with the specified browse name. + + The context to use. + The browse name. + The child if avialble. Null otherwise. + + + + Creates or replaces the child with the same browse name. + + The context to use. + The child to add or replace. + + + + Adds a child to the node. + + + + + Creates a property and adds it to the node. + + + + + Adds a child from the node. + + + + + Finds the child with the specified browse and assigns the values from any variables in the hierachy of the source. + + False if the child does not exist or is not a variable. + Creates the child if does not already exist. + + + + Finds the child variable with the specified browse and assigns the value to it. + + False if the child does not exist or is not a variable. + Creates the child if does not already exist. + + + + Reads the attribute of the child node. + + The context. + The relative path. + The index. + The attribute id. + The data value. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Writes the value of the child attribute. + + The context. + The component path. + The index. + The attribute id. + The value. + + An instance of the containing the status code and diagnostic info for the operation. + ServiceResult.Good if successful. Detailed error information otherwise. + + + + + Returns true if the reference exists. + + The type of reference. + Whether the reference is an inverse reference. + The target of the reference. + True if the reference exists. + + + + Adds a reference. + + Type of the reference. + If set to true the refernce is an inverse reference. + The target of the reference. + + + + Removes a reference. + + Type of the reference. + If set to true the refernce is an inverse reference. + The target of the reference. + + + + Adds a list of references (ignores duplicates). + + The list of references to add. + + + + Removes all references of the specified type. + + Type of the reference. + If set to true the reference is an inverse reference. + + + + Populates a list with the children that belong to the node. + + The context for the system being accessed. + The list of children to populate. + + This method returns the children that are in memory and does not attempt to + access an underlying system. The PopulateBrowser method is used to discover those references. + + + + + Populates a list with the non-child related references that belong to the node. + + The context for the system being accessed. + The list of references to populate. + + This method only returns references that are not implied by the parent-child + relation or references which are intrinsic to the NodeState classes (e.g. HasTypeDefinition) + + This method also only returns the reference that are in memory and does not attempt to + access an underlying system. The PopulateBrowser method is used to discover those references. + + + + + Returns any references with the specified reference type and direction. + + + + + Finds the child with the specified browse name. + + The context for the system being accessed. + The browse name of the children to add. + if set to true and the child could exist then the child is created. + The replacement to use if createOrReplace is true. + The child. + + + + Stores the notifier relationship to another node. + + + + + The node state. + + + + + The reference type id. + + + + + Whether the reference direction is inverse. + + + + + A list of children of the node. + + + + + Indicates what has changed in the node. + + + + + Stores a collection of nodes. + + + + + Writes the collection to a stream using the Opc.Ua.Schema.UANodeSet schema. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The initial capacity. + + + + Initializes a new instance of the class. + + The collection whose elements are copied to the new list. + + is null. + + + + + Writes the collection to a stream using the NodeSet schema. + + + + + Stores a well known alias. + + + + + The list of aliases to use. + + + + + Writes the collection to a stream using the Opc.Ua.Schema.UANodeSet schema. + + + + + Writes the collection to a stream using the Opc.Ua.Schema.UANodeSet schema. + + + + + Writes the schema information to a static XML export file. + + + + + Writes the schema information to a static XML export file. + + + + + Writes the collection to a binary stream. The stream is closed by this method. + + + + + Reads the schema information from a XML document. + + + + + Reads the schema information from a XML document. + + + + + Loads the nodes from an embedded resource. + + The context. + The resource path. + The assembly containing the resource. + if set to true the namespace and server tables are updated with any new URIs. + + + + Loads the nodes from an embedded resource. + + The context. + The resource path. + The assembly containing the resource. + if set to true the namespace and server tables are updated with any new URIs. + + + + An interface to an object that browses the references of an node. + + + + + Returns the next reference. + + + + + Pushes a previously returned reference back into the browser. + + + + + A thread safe object which browses the references for an node. + + + + + Creates a new browser object with a set of filters. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Returns the next reference. Null if no more references. + + + + + Pushes a previously returned reference back into the browser. + + + + + Returns true if the target node is required (used to apply view filters); + + + + + Returns true if the reference type is required. + + + + + Adds a reference to target entity. + + + + + Adds a reference to target entity. + + + Will not add the reference if the browse name does not match the browse name filter. + + + + + Adds a reference to target identified by its node id. + + + + + Thr synchronization lock used by the browser. + + + + + The table of types known to the UA server. + + + + + The view being browsed. + + + + + The type of reference to return. + + + + + Whether to return subtypes of the reference. + + + + + The direction for the references to return. + + + + + The browse name of the targets to return. + + + + + Indicates that the browser only returned easy to access references stored in memory. + + + + + Stores the a reference for a node. + + + + + Constructs a reference to an internal target. + + + + + Constructs a reference to an external target. + + + + + The internal target of the reference. + + + + + + + + + + + + + + Indicates what has changed in a node. + + + + + None has changed + + + + + One or more children have been added, removed or replaced. + + + + + One or more references have been added or removed. + + + + + The value attribute has changed. + + + + + One or more non-value attribute has changed. + + + + + The node has been deleted. + + + + + Used to validate a node. + + + + + Used to receive notifications when a non-value attribute is read or written. + + + + + Used to receive notifications when a reference get added to the node + + + + + Used to receive notifications when a reference get removed to the node + + + + + Used to receive notifications when a node produces an event. + + + + + Used to receive notifications when a node needs to refresh its conditions. + + + + + Used to receive notifications when a node browser is created. + + + + + Used to receive notifications when a node is browsed. + + + + + Used to receive notifications when a non-value attribute is read or written. + + + + + Used to receive notifications when the value attribute is read or written. + + + + + Used to receive notifications when the value attribute is read or written. + + + + + Stores a reference from a node in the instance hierarchy. + + + + + Initializes a new instance of the class. + + The path to the source node. + The reference. + + + + Initializes a new instance of the class. + + The path to the source node. + The path to the target node. + The reference. + + + + Gets the path to the source node. + + The source path. + + + + Gets the identifier for the reference type. + + The reference type id. + + + + Gets a value indicating whether the reference is an inverse reference. + + + true if this is an inverse reference; otherwise, false. + + + + + Gets the identifier for the target node. + + The target id. + Only one of TargetId or TargetPath is specified. + + + + Gets the path to the target node. + + The target path. + Only one of TargetId or TargetPath is specified. + + + + A delegate which creates a new node. + + The parent of the node. + The new node. + + + + A class that creates instances of nodes based on the paramters provided. + + + + + Creates a new instance. + + The current context. + The parent. + The node class. + The browse name. + The reference type between the parent and the node. + The type definition. + Returns null if the type is not known. + + + + Registers a type with the factory. + + The type definition. + The system type. + + + + Unregisters a type with the factory. + + The type definition. + + + + The base class for all reference type nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance with the default values. + + + + + Initializes the instance from another instance. + + + + + The inverse name for the reference. + + + + + Whether the reference is symmetric. + + + + + Exports a copy of the node to a node table. + + The context. + The node. + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context user. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the specified context. + + The context. + The decoder. + The attributes to load. + + + + Raised when the InverseName attribute is read. + + + + + Raised when the InverseName attribute is written. + + + + + Raised when the Symmetric attribute is read. + + + + + Raised when the Symmetric attribute is written. + + + + + Reads the value for any non-value attribute. + + + + + Write the value for any non-value attribute. + + + + + The base class for all view nodes. + + + + + Initializes the instance with its defalt attribute values. + + + + + Constructs an instance of a node. + + The parent. + The new node. + + + + Initializes the instance with the default values. + + + + + Initializes the instance from another instance. + + + + + Makes a copy of the node and all children. + + + A new object that is a copy of this instance. + + + + + The inverse name for the reference. + + + + + Whether the reference is containsNoLoops. + + + + + Raised when the EventNotifier attribute is read. + + + + + Raised when the EventNotifier attribute is written. + + + + + Raised when the ContainsNoLoops attribute is read. + + + + + Raised when the ContainsNoLoops attribute is written. + + + + + Exports a copy of the node to a node table. + + The context. + The node. + + + + Saves the attributes from the stream. + + The context for the system being accessed. + The encoder wrapping the stream to write. + + + + Updates the attributes from the stream. + + The context for the system being accessed. + The decoder wrapping the stream to read. + + + + Returns a mask which indicates which attributes have non-default value. + + The context for the system being accessed. + A mask the specifies the available attributes. + + + + Saves object in an binary stream. + + The context user. + The encoder to write to. + The masks indicating what attributes to write. + + + + Updates the specified context. + + The context. + The decoder. + The attributes to load. + + + + Reads the value for any non-value attribute. + + + + + Write the value for any non-value attribute. + + + + + A base class for AsyncResult objects + + + + + Initializes a new instance of the class. + + The callback to use when the operation completes. + The callback data. + The timeout for the operation. + + + + Initializes a new instance of the class. + + The callback to use when the operation completes. + The callback data. + The timeout for the operation. + Cancellation token for async operation. + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + An object used to synchronize access to the result object. + + + + + An object used to synchronize access to the result object. + + + + + An exception that occured during processing. + + + + + The cancellation token associated with the operation. + + + + + Waits for the operation to complete. + + The result object returned from the Begin method. + + + + Waits for the operation to complete. + + True if operation completed without any errors. + + + + Called to reset the wait handle. + + + + + Called to invoke the callback after the asynchronous operation completes. + + + + + Called to dispose the timer. + + + + + Disposes the wait handle. + + + + + + Called when the operation times out. + + + + + Gets a user-defined object that qualifies or contains information about an asynchronous operation. + + A user-defined object that qualifies or contains information about an asynchronous operation. + + + + Gets a that is used to wait for an asynchronous operation to complete. + + A that is used to wait for an asynchronous operation to complete. + + + + Gets a value that indicates whether the asynchronous operation completed synchronously. + + true if the asynchronous operation completed synchronously; otherwise, false. + + + + Gets a value that indicates whether the asynchronous operation has completed. + + true if the operation is complete; otherwise, false. + + + + The arguments passed to the ConnectionWaiting event. + + + + + Create a connection waiting event for a reverse hello message. + + The Uri of the server. + The endpoint Url of the server. + + + + + + + + + + + + + Allow the event callback handler to accept the + incoming reverse hello connection. + + + + + The arguments passed to the ConnectionStatus event. + + + + + The endpoint Url of the channel which changed the status. + + + + + The new status of the channel. + + + + + Indicate that the channel is closed. + + + + + This is an interface to a channel which supports + + + + + A masking indicating which features are implemented. + + + + + Gets the description for the endpoint used by the channel. + + + + + Gets the configuration for the channel. + + + + + Gets the context used when serializing messages exchanged via the channel. + + + + + Gets the the channel's current security token. + + + + + Gets or sets the default timeout for requests send via the channel. + + + + + Initializes a secure channel with the endpoint identified by the URL. + + The URL for the endpoint. + The settings to use when creating the channel. + Thrown if any communication error occurs. + + + + Initializes a secure channel with the endpoint identified by the URL. + + + + + Opens a secure channel with the endpoint identified by the URL. + + Thrown if any communication error occurs. + + + + Begins an asynchronous operation to open a secure channel with the endpoint identified by the URL. + + The callback to call when the operation completes. + The callback data to return with the callback. + The result which must be passed to the EndOpen method. + Thrown if any communication error occurs. + + + + + Completes an asynchronous operation to open a secure channel. + + The result returned from the BeginOpen call. + Thrown if any communication error occurs. + + + + + Closes any existing secure channel and opens a new one. + + Thrown if any communication error occurs. + + Calling this method will cause outstanding requests over the current secure channel to fail. + + + + + Closes any existing secure channel and opens a new one. + + The waiting reverse connection for the reconnect attempt. + Thrown if any communication error occurs. + + Calling this method will cause outstanding requests over the current secure channel to fail. + + + + + Begins an asynchronous operation to close the existing secure channel and open a new one. + + The callback to call when the operation completes. + The callback data to return with the callback. + The result which must be passed to the EndReconnect method. + Thrown if any communication error occurs. + + + + + Completes an asynchronous operation to close the existing secure channel and open a new one. + + The result returned from the BeginReconnect call. + Thrown if any communication error occurs. + + + + + Closes the secure channel. + + Thrown if any communication error occurs. + + + + Begins an asynchronous operation to close the secure channel. + + The callback to call when the operation completes. + The callback data to return with the callback. + The result which must be passed to the EndClose method. + Thrown if any communication error occurs. + + + + + Completes an asynchronous operation to close the secure channel. + + The result returned from the BeginClose call. + Thrown if any communication error occurs. + + + + + Sends a request over the secure channel. + + The request to send. + The response returned by the server. + Thrown if any communication error occurs. + + + + Begins an asynchronous operation to send a request over the secure channel. + + The request to send. + The callback to call when the operation completes. + The callback data to return with the callback. + The result which must be passed to the EndSendRequest method. + Thrown if any communication error occurs. + + + + + Completes an asynchronous operation to send a request over the secure channel. + + The result returned from the BeginSendRequest call. + Thrown if any communication error occurs. + + + + + The masks for the optional features which may not be supported by every transport channel. + + + + + The channel does not support any optional features. + + + + + The channel supports Open. + + + + + The channel supports asynchronous Open. + + + + + The channel supports Reconnect. + + + + + The channel supports asynchronous Reconnect. + + + + + The channel supports asynchronous Close. + + + + + The channel supports asynchronous SendRequest. + + + + + The channel supports Reconnect. + + + + + The delegate for the async connection waiting handler. + + + + + This is an interface to a listener which supports UA binary encoding. + + + + + The protocol supported by the listener. + + + + + Opens the listener and starts accepting connection. + + The base address. + The settings to use when creating the listener. + The callback to use when requests arrive via the channel. + Thrown if any parameter is null. + Thrown if any communication error occurs. + + + + Closes the listener and stops accepting connection. + + Thrown if any communication error occurs. + + + + Updates the application certificate for a listener. + + + + + Raised when a new connection is waiting for a client. + + + + + Raised when a monitored connection's status changed. + + + + + Creates a reverse connection to a client. + + + + + The arguments passed to the ConnectionWaiting event. + + + An object which implements this interface can be used + to create a session using the reverse connect handshake. + + + + + The application Uri of the server in the + reverse hello message. + + + + + The endpoint of the server in the + reverse hello message. + + + + + A handle to a message socket that can be used + to connect to the server. + + + + + This is an interface to a object that receives notifications from the listener when a message arrives. + + + + + Begins processing a request received via a binary encoded channel. + + A unique identifier for the secure channel which is the source of the request. + The description of the endpoint which the secure channel is using. + The incoming request. + The callback. + The callback data. + The result which must be passed to the EndProcessRequest method. + + + + + + Ends processing a request received via a binary encoded channel. + + The result returned by the BeginProcessRequest method. + The response to return over the secure channel. + + + + + Stores the configuration settings for a channel. + + + + + Gets or sets the description for the endpoint. + + May be null if no security is used. + + + + Gets or sets the configuration for the endpoint. + + + + + Gets or sets the client certificate. + + May be null if no security is used. + + + + Gets or sets the client certificate chain. + + + The client certificate chain. + + + + + Gets or Sets the server certificate. + + May be null if no security is used. + + + + Gets or sets the certificate validator. + + + May be null if no security is used. + This is the object used by the channel to validate received certificates. + Validatation errors are reported to the application via this object. + + + + + Gets or sets a reference to the table of namespaces for the server. + + + This is a thread safe object that may be updated by the application at any time. + This table is used to lookup the NamespaceURI for the DataTypeEncodingId when decoding ExtensionObjects. + If the NamespaceURI can be found the decoder will use the Factory to create an instance of a .NET object. + The raw data is passed to application if the NamespaceURI cannot be found or there is no .NET class + associated with the DataTypeEncodingId then. + + + + + + Gets or sets the table of known encodeable objects. + + + This is a thread safe object that may be updated by the application at any time. + This is a table of .NET types indexed by their DataTypeEncodingId. + The decoder uses this table to automatically create the appropriate .NET objects when it + encounters an ExtensionObject in the message being decoded. + The table uses DataTypeEncodingIds with the URI explicitly specified so multiple channels + with different servers can share the same table. + The NamespaceUris table is used to lookup the NamespaceURI from the NamespaceIndex provide + in the encoded message. + + + + + + Stores the configuration settings for a channel. + + + + + Gets or sets the descriptions for the endpoints supported by the listener. + + + + + Gets or sets the configuration for the endpoints. + + + + + Gets or sets the server certificate. + + + + + Gets or sets the server certificate chain. + + + The server certificate chain. + + + + + Gets or Sets the certificate validator. + + + This is the object used by the channel to validate received certificates. + Validatation errors are reported to the application via this object. + + + + + Gets or sets a reference to the table of namespaces for the server. + + + This is a thread safe object that may be updated by the application at any time. + This table is used to lookup the NamespaceURI for the DataTypeEncodingId when decoding ExtensionObjects. + If the NamespaceURI can be found the decoder will use the Factory to create an instance of a .NET object. + The raw data is passed to application if the NamespaceURI cannot be found or there is no .NET class + associated with the DataTypeEncodingId then. + + + + + + Gets or sets the table of known encodeable objects. + + + This is a thread safe object that may be updated by the application at any time. + This is a table of .NET types indexed by their DataTypeEncodingId. + The decoder uses this table to automatically create the appropriate .NET objects when it + encounters an ExtensionObject in the message being decoded. + The table uses DataTypeEncodingIds with the URI explicitly specified so multiple channels + with different servers can share the same table. + The NamespaceUris table is used to lookup the NamespaceURI from the NamespaceIndex provide + in the encoded message. + + + + + + Indicates if the transport listener is used as an endpoint for a reverse connection. + + + + + The SoftwareCertificate class. + + + + + The SignedSoftwareCertificate that contains the SoftwareCertificate + + + + + Validates a software certificate. + + + + + The issued token type. + + + + + Web services security (WSS) token. + + + + + Security Assertions Markup Language (SAML) token. + + + + + JSON web token. + + + + + Kerberos token. + + + + + Flags that can be set for the EventNotifier attribute. + + + Flags that can be set for the EventNotifier attribute. + + + + + The Object or View produces no event and has no event history. + + + + + The Object or View produces event notifications. + + + + + The Object has an event history which may be read. + + + + + The Object has an event history which may be updated. + + + + + Flags that can be set for the AccessLevel attribute. + + + Flags that can be set for the AccessLevel attribute. + + + + + The Variable value cannot be accessed and has no event history. + + + + + The current value of the Variable may be read. + + + + + The current value of the Variable may be written. + + + + + The current value of the Variable may be read or written. + + + + + The history for the Variable may be read. + + + + + The history for the Variable may be updated. + + + + + The history value of the Variable may be read or updated. + + + + + Indicates if the Variable generates SemanticChangeEvents when its value changes. + + + + + Indicates if the current StatusCode of the value is writable. + + + + + Indicates if the current SourceTimestamp is writable. + + + + + Constants defined for the ValueRank attribute. + + + Constants defined for the ValueRank attribute. + + + + + The variable may be a scalar or a one dimensional array. + + + + + The variable may be a scalar or an array of any dimension. + + + + + The variable is always a scalar. + + + + + The variable is always an array with one or more dimensions. + + + + + The variable is always one dimensional array. + + + + + The variable is always an array with two or more dimensions. + + + + + Checks if the actual value rank is compatible with the expected value rank. + + + + + Checks if the actual array diminesions is compatible with the expected value rank and array dimensions. + + + + + Constants defined for the MinimumSamplingInterval attribute. + + + Constants defined for the MinimumSamplingInterval attribute. + + + + + The server does not know how fast the value can be sampled. + + + + + TThe server can sample the variable continuously. + + + + + A collection of Boolean values. + + + Provides a strongly-typed collection of Boolean values. + + + + BooleanCollection bools = new BooleanCollection(); + bools.AddRange( new bool[]{true, false, true, false} ); + + + Dim bools As New BooleanCollection() + bools.AddRange( New Boolean(){ True, False, True, False } ) + + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Creates a new collection and populates the collection with the + values passed in. + + A collection of boolean values to add to this new collection + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of boolean values to convert to a strong-collection of this class type + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of boolean values to convert to a strong-collection of this class type + + + + Creates a deep copy of the collection. + + + Returns a new instance of this object type, while copying its contents. + + + + + A collection of SByte values. + + + Provides a strongly-typed list of values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection and sets the maximum capacity + + + Initializes the collection and sets the maximum capacity + + The maximum size of this collection + + + + Initializes the collection and populates it with the specified collection of SByte values + + + Initializes the collection and populates it with the specified collection of SByte values + + A collection of values to populate this collection with + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of values to convert from + + + + Converts an array to a collection. + + + Converts an array of SByte to a collection. + + An array of SByte values to convert + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of SByte values. + + + Provides a strongly-typed list of values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection and sets the maximum capacity + + + Initializes the collection and sets the maximum capacity + + The maximum size of this collection + + + + Initializes the collection and populates it with the specified collection of Byte values + + + Initializes the collection and populates it with the specified collection of Byte values + + A collection of values to populate this collection with + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of values to convert from + + + + Converts an array to a collection. + + + Converts an array of Byte to a collection. + + An array of Byte values to convert + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of Int16 values. + + + A strongly-typed collection of Int16 values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection and specifies the capacity + + + Initializes the collection and specifies the capacity + + The max size of the collection + + + + Initializes the collection and populates it with the values passed-in + + + Initializes the collection and populates it with the values passed-in + + A collection of values to populate the collection with + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of values to convert to a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of values to convert to a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of UInt16 values. + + + A collection of UInt16 values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + The max capacity size of this collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A Collection of to pre-populate the collection with + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of values to conver to a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of values to conver to a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of Int32 values. + + + + + Initializes an empty collection. + + + Initializes an empty collection of . + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max capacity of this collection + + + + Initializes the collection from another collection + + + Initializes the collection from another collection + + A collection of to pre-populate this collection with + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of to convert to a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of to convert to a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of UInt32 values. + + + A collection of UInt32 values. + + + + + Initializes an empty collection. + + + Initializes an empty collection of . + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max capacity of the collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A collection of to pre-populate the collection with + + + + Converts an array to a collection. + + + Converts an array to a collection. + + + An array of values to return as a strongly-typed collection + + + + + Converts an array to a collection. + + + Converts an array to a collection. + + + An array of values to return as a strongly-typed collection + + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of Int64 values. + + + A strongly-typed collection of Int64 values. + + + + + Initializes an empty collection. + + + Initializes an empty collection of . + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max capacity of the collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A colleciton of to pre-populate the collection with + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of to convert to a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of to convert to a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of UInt64 values. + + + A strongly-typed collection of UInt64 values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max capacity of collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A collection of to pre-populate the collection with + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of to return as a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of to return as a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of Float values. + + + A strongly-typed collection of Float values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + The max capacity of this collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + The collection of values to add into this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of floats to return as a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of floats to return as a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of Double values. + + + A collection of Double values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + max capacity of collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A collection of doubles to add into this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + an array of doubles to return as a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + an array of doubles to return as a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of String values. + + + A strongly-typed collection of String values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max capacity of collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A collection of strings to add to this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + A collection of strings to add to this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + A collection of strings to add to this collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of DateTime values. + + + A strongly-typed collection of DateTime values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max capacity of collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A collection of DateTime to add to this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + Array of DateTime to return as a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + Array of DateTime to return as a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of ByteString values. + + + A collection of ByteString values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max size of collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A collection of byte to add to this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + Array of bytes to return as a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + Array of bytes to return as a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A collection of XmlElement values. + + + A strongly-typed collection of XmlElement values. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max size of collection + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A collection of XmlElement's to add to this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of XmlElement's to return as a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of XmlElement's to return as a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A class that stores the value of variable with an optional status code and timestamps. + + + + This object relates to the OPC UA Specifications Part 6: Mappings, section 6.2.2.16 + titled DataValue. +
+ + This object is essentially a place-holder for the following: + + + + for the Servers Timestamp + +
+
+ + + + //define a new DataValue first where: + // (a) the value is a string, which is "abc123" + // (b) the statuscode is 0 (zero) + // (c) the timestamp is 'now' + DataValue dv = new DataValue(new Variant("abc123"), new StatusCode(0), DateTime.Now); + + + + + 'define a new DataValue first where: + ' (a) the value is a string, which is "abc123" + ' (b) the statuscode is 0 (zero) + ' (c) the timestamp is 'now' + Dim dv As DataValue = New DataValue(New Variant("abc123"), New StatusCode(0), DateTime.Now); + + + + + +
+ + + Initializes the object with default values. + + + Initializes the object with default values. + + + + + Creates a deep copy of the value. + + + Creates a new instance of the class while copying the contents + of another instance. + + The DataValue to copy. + Thrown when the value is null + + + + Initializes the object with a value. + + + Initializes the object with a value from a + + The value to set + + + + Initializes the object with a status code. + + + Initializes the object with a status code. + + The StatusCode to set + + + + Initializes the object with a status code and a server timestamp. + + + Initializes the object with a status code and a server timestamp. + + The status code associated with the value. + The timestamp associated with the status code. + + + + Initializes the object with a value and a status code. + + + Initializes the object with a value and a status code. + + The status code to set + The value to set + + + + Initializes the object with a value, a status code and a source timestamp + + + Initializes the object with a value, a status code and a source timestamp + + The timestamp to set + The status code to set + The variant value to set + + + + Initializes the object with a value, a status code, a source timestamp and a server timestamp + + + Initializes the object with a value, a status code, a source timestamp and a server timestamp + + The servers timestamp to set + The source timestamp to set + The status code to set + The variant value to set + + + + Sets private members to default values. + + + + + Determines if the specified object is equal to the object. + + + Determines if the specified object is equal to the object. + + The object to compare to *this* + + + + Returns a unique hashcode for the object. + + + Returns a unique hashcode for the object. + + + + + Converts the value to a human readable string. + + + Converts the value to a human readable string. + + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + Not used, ALWAYS specify a null/nothing value + The format string, ALWAYS specify a null/nothing value + Thrown when the format is NOT null/nothing + + + + Makes a deep copy of the object. + + + Makes a deep copy of the object. + + + + + The value of data value. + + + The value of data value. + + + + + The value of data value. + + + The value of data value. + + + + + The status code associated with the value. + + + The status code associated with the value. + + + + + The source timestamp associated with the value. + + + The source timestamp associated with the value. + + + + + Additional resolution for the source timestamp. + + + Additional resolution for the source timestamp. + + + + + The server timestamp associated with the value. + + + The server timestamp associated with the value. + + + + + Additional resolution for the server timestamp. + + + Additional resolution for the server timestamp. + + + + + Returns true if the status code is good. + + + Returns true if the status code is good. + + The value to check the quality of + + + + Returns true if the status is bad or uncertain. + + + Returns true if the status is bad or uncertain. + + The value to check the quality of + + + + Returns true if the status code is uncertain. + + + Returns true if the status code is uncertain. + + The value to checck the quality of + + + + Returns true if the status is good or uncertain. + + + Returns true if the status is good or uncertain. + + The value to check the quality of + + + + Returns true if the status code is bad. + + + Returns true if the status code is bad. + + The value to check the quality of + + + + Returns true if the status is good or uncertain. + + + Returns true if the status is good or uncertain. + + The value to check the quality of + + + + Ensures the data value contains a value with the specified type. + + + + + Gets the value from the data value. + + The type of object. + The default value to return if any error occurs. + The value. + + Does not throw exceptions; returns the caller provided value instead. + Extracts the body from an ExtensionObject value if it has the correct type. + Checks the StatusCode and returns an error if not Good. + + + + + A collection of DataValues. + + + A strongly-typed collection of DataValues. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + A collection of objects to pre-populate this new collection with + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + The max capacity of this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of objects to return as a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of objects to return as a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + Contains diagnostic information associated with a StatusCode. + + + + The DiagnosticInfo BinaryEncoding is defined in Part 6 - Mappings, Section 6.2.2.13, titled + Mappings. +
+ + The DiagnosticInfo object is an object that contains diagnostic information, and is intended to be used + in provide diagnostic information in a uniform way. +
+
+
+ + + Initializes the object with default values. + + + Initializes the object with default values. + + + + + Creates a deep copy of the value. + + + Creates a new instance of the object while copying the value passed in. + + The value to copy + Thrown when the value is null + + + + Initializes the object with specific values. + + + Initializes the object with specific values. + + The symbolic ID + The namespace URI applicable + The locale for the localized text value + The localized text value + Additional, textual information + + + + Initializes the object with an exception. + + + Initializes the object with an exception. + + The bitmask describing the diagnostic data + The overall transaction result + The service level + A table of strings carrying more diagnostic data + + + + Initializes the object with an exception. + + + Initializes the object with an exception. + + A bitmask describing the type of diagnostic data + The exception to associated with the diagnostic data + The service level + A table of strings that may contain additional diagnostic data + + + + Initializes the object during deserialization. + + + Initializes the object during deserialization. + + The context information of an underlying data-stream + + + + Initializes the object during deserialization. + + + Initializes the object with default values during deserialization. + + + + + Initializes the object with a service result. + + + Initializes the object with a service result. + + The bitmask describing the type of diagnostic data + The transaction result + An array of strings that may be used to provide additional diagnostic details + + + + The index of the symbolic id in the string table. + + + The index of the symbolic id in the string table. + + + + + The index of the namespace uri in the string table. + + + The index of the namespace uri in the string table. + + + + + The index of the locale associated with the localized text. + + + + + The index of the localized text in the string table. + + + + + The additional debugging or trace information. + + + The additional debugging or trace information. + + + + + The status code returned from an underlying system. + + + The status code returned from an underlying system. + + + + + The diagnostic info returned from a underlying system. + + + The diagnostic info returned from a underlying system. + + + + + Determines if the specified object is equal to the object. + + + Determines if the specified object is equal to the object. + + + + + Returns a unique hashcode for the object. + + + Returns a unique hashcode for the object. + + + + + Converts the value to a human readable string. + + + Converts the value to a human readable string. + + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + (Unused). Always pass a null + (Unused) The provider. + Thrown if the format parameter is NOT null + + + + Makes a deep copy of the object. + + + Makes a deep copy of this object. + + + + + A collection of DiagnosticInfo objects. + + + A strongly-typed collection of DiagnosticInfo objects. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + The collection to copy the contents from + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + The max capacity of the collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of objects to return within a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of objects to return within a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + The DiagnosticsMasks enumeration. + + + + + ServiceSymbolicId = 0, + + + + + ServiceSymbolicId = 1, + + + + + ServiceLocalizedText = 2, + + + + + ServiceAdditionalInfo = 4, + + + + + ServiceInnerStatusCode = 8, + + + + + ServiceInnerDiagnostics = 16, + + + + + ServiceSymbolicIdAndText = 3, + + + + + ServiceNoInnerStatus = 15, + + + + + ServiceAll = 31, + + + + + OperationSymbolicId = 32, + + + + + OperationLocalizedText = 64, + + + + + OperationAdditionalInfo = 128, + + + + + OperationInnerStatusCode = 256, + + + + + OperationInnerDiagnostics = 512, + + + + + OperationSymbolicIdAndText = 96, + + + + + OperationNoInnerStatus = 224, + + + + + OperationAll = 992, + + + + + SymbolicId = 33, + + + + + LocalizedText = 66, + + + + + AdditionalInfo = 132, + + + + + InnerStatusCode = 264, + + + + + InnerDiagnostics = 528, + + + + + SymbolicIdAndText = 99, + + + + + NoInnerStatus = 239, + + + + + All = 1023 + + + + + Extends a node id by adding a complete namespace URI. + + + Extends a node id by adding a complete namespace URI. + + + + + Initializes the object with default values. + + + Creates a new instance of the object, accepting the default values. + + + + + Creates a deep copy of the value. + + + Creates a new instance of the object, while copying the properties of the specified object. + + The ExpandedNodeId to copy + Thrown when the parameter is null + + + + Initializes an expanded node identifier with a node id. + + + Creates a new instance of the object, while wrapping the specified . + + The to wrap + + + + Initializes a new instance of the class. + + The identifier. + The namespace index. + The namespace URI. + The server index. + + + + Initializes an expanded node identifier with a node id and a namespace URI. + + + Creates a new instance of the object while allowing you to specify both the + and the Namespace URI that applies to the NodeID. + + The to wrap. + The namespace that this node belongs to + + + + Initializes an expanded node identifier with a node id and a namespace URI. + + + Creates a new instance of the object while allowing you to specify both the + and the Namespace URI that applies to the NodeID. + + The to wrap. + The namespace that this node belongs to + The server that the node belongs to + + + + Initializes a numeric node identifier. + + + Creates a new instance of the object while accepting the numeric id/value of + the NodeID we are wrapping. + + The numeric id of a node to wrap + + + + Initializes a numeric node identifier with a namespace index. + + + Creates a new instance of the class while accepting both the id and namespace + of the node we are wrapping. + + The numeric id of the node we are wrapping + The namspace index that this node belongs to + + + + Initializes a numeric node identifier with a namespace URI. + + + Creates a new instance of the class while accepting both the numeric id of the + node, along with the actual namespace that this node belongs to. + + The numeric id of the node we are wrapping + The namespace that this node belongs to + + + + Initializes a string node identifier with a namespace index. + + + Creates a new instance of the class while allowing you to specify both the + node and the namespace. + + The numeric index of the namespace within the table, that this node belongs to + The string id/value of the node we are wrapping + + + + Initializes a string node identifier with a namespace URI. + + + Creates a new instance of the class while allowing you to specify both the node and namespace + + The actual namespace URI that this node belongs to + The string value/id of the node we are wrapping + + + + Initializes a guid node identifier. + + + Creates a new instance of the class while specifying the value + of the node we are wrapping. + + The Guid value of the node we are wrapping + + + + Initializes a guid node identifier. + + + Creates a new instance of the class while specifying the value + of the node and the namesapceIndex we are wrapping. + + The Guid value of the node we are wrapping + The index of the namespace that this node should belong to + + + + Initializes a guid node identifier. + + + Creates a new instance of the class while specifying the value + of the node and the namespaceUri we are wrapping. + + The Guid value of the node we are wrapping + The namespace that this node belongs to + + + + Initializes a opaque node identifier. + + + Creates a new instance of the class while allowing you to specify the byte[] id + of the node. + + The id of the node we are wrapping + + + + Initializes an opaque node identifier with a namespace index. + + + Creates a new instance of the class while allowing you to specify the node + and namespace index. + + The id of the node we are wrapping + The index of the namespace that this node should belong to + + + + Initializes an opaque node identifier with a namespace index. + + + Creates a new instance of the class while allowing you to specify the node and namespace. + + The node we are wrapping + The namespace that this node belongs to + + + + Initializes a node id by parsing a node id string. + + + Creates a new instance of the class while allowing you to specify the id of the node. + + The textual id of the node being wrapped + + + + Sets the private members to default values. + + + Sets the private members to default values. + + + + + The index of the namespace URI in the server's namespace array. + + + The index of the namespace URI in the server's namespace array. + + + + + The type of node identifier used. + + + The type of node identifier used. + + + + + The node identifier. + + + Returns the node id in whatever form, i.e. + string, Guid, byte[] or uint. + + + + + The namespace that qualifies the node identifier. + + + Returns the namespace that the node belongs to + + + + + The index of the server where the node exists. + + + Returns the index of the server where the node resides + + + + + Whether the object represents a Null NodeId. + + + Returns whether or not the is null + + + + + Returns true if the expanded node id is an absolute identifier that contains a namespace URI instead of a server dependent index. + + + Returns true if the expanded node id is an absolute identifier that contains a namespace URI instead of a server dependent index. + + + + + Returns the inner node id. + + + Returns the inner node id. + + + + + The node identifier formatted as a URI. + + + The node identifier formatted as a URI. + + + + + Formats a expanded node id as a string. + + + + Formats a ExpandedNodeId as a string. +
+ + An example of this would be: +
+ + NodeId = "hello123"
+ NamespaceUri = "http://mycompany/"
+
This would translate into:
+ nsu=http://mycompany/;str=hello123 +
+
+
+ + + Formats the node ids as string and adds it to the buffer. + + + + + Formats the node ids as string and adds it to the buffer. + + + + + Parses a expanded node id string, translated any namespace indexes and returns the result. + + + + + Parses a expanded node id string and returns a node id object. + + + Parses a ExpandedNodeId String and returns a NodeId object + + The ExpandedNodeId value as a string. + Thrown under a variety of circumstances, each time with a specific message. + + + + Unescapes any reserved characters in the uri. + + + + + The set of hexadecimal digits used for decoding escaped URIs. + + + + + Compares the current instance to the object. + + + Compares the current instance to the object. + + + + + Returns true if a is greater than b. + + + Returns true if a is greater than b. + + + + + Returns true if a is less than b. + + + Returns true if a is less than b. + + + + + Determines if the specified object is equal to the ExpandedNodeId. + + + Determines if the specified object is equal to the ExpandedNodeId. + + + + + Returns a unique hashcode for the ExpandedNodeId + + + Returns a unique hashcode for the ExpandedNodeId + + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + + + + Returns the string representation of an ExpandedNodeId. + + + Returns the string representation of an ExpandedNodeId. + + The as a formatted string + (Unused) The format string. + (Unused) The format-provider. + Thrown when the 'format' parameter is NOT null. So leave that parameter null. + + + + Makes a deep copy of the object. + + + Returns a reference to *this* object. This means that no copy is being made of this object. + + + + + Returns the string representation of am ExpandedNodeId. + + + Returns the string representation of am ExpandedNodeId. + + + + + Converts an expanded node id to a node id using a namespace table. + + + Converts an to a using a namespace table. + + The ExpandedNodeId to convert to a NodeId + The namespace table that contains all the namespaces needed to resolve the namespace index as encoded within this object. + + + + Updates the namespace index. + + + Updates the namespace index. + + + + + Updates the namespace uri. + + + + + Updates the server index. + + + + + Parses an absolute NodeId formatted as a string and converts it a local NodeId. + + The current namespace table. + The text to parse. + The local identifier. + Thrown if the namespace URI is not in the namespace table. + + + + Converts an ExpandedNodeId to a NodeId. + + + Converts an ExpandedNodeId to a NodeId. + + Thrown if the ExpandedNodeId is an absolute node identifier. + + + + Converts an integer to a numeric node identifier. + + + Converts an integer to a numeric node identifier. + + + + + Converts a guid to a guid node identifier. + + + Converts a guid to a guid node identifier. + + + + + Converts a byte array to an opaque node identifier. + + + Converts a byte array to an opaque node identifier. + + + + + Parses a node id string and initializes a node id. + + + Parses a node id string and initializes a node id. + + + + + Converts a NodeId to an ExpandedNodeId + + + Converts a NodeId to an ExpandedNodeId + + + + + Returns an instance of a null ExpandedNodeId. + + + + + A collection of ExpandedNodeId objects. + + + + + Initializes an empty collection. + + + Creates a new [empty] collection. + + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + + + + Converts an array to a collection. + + + This static method converts an array of objects to + an . + + An array of values to return as a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of values to return as a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + An object used to wrap data types that the receiver may not understand. + + + + This class is a wrapper/helper class for storing data types that a receiver might not + understand, or be prepared to handle. This class may use to + analyze an object and retrieve the values of its public properties directly, and then + encode those into a string representation that can then be easily encoded as a single string. +
+
+ + An instance of the is a container for any complex data types which cannot be encoded as one of the + other built-in data types. The ExtensionObject contains a complex value serialized as a sequence of + bytes or as an XML element. It also contains an identifier which indicates what data it contains and + how it is encoded. + +
+ + + The following example demonstrates a simple class containing 3 public properties of + type int, DateTime and string. This class implements the + interface, and is then encoded using the WriteExtensionObject method. +
+ + //First, we will define a very simple class object that will represent + //some real-world process. + class simpleClass : IEncodeable + { + + //fields + public string PublicFieldNotVisible = "I should not be encoded"; + + //properties + private string stringField; + public string StringProperty + { + get + { + return (stringField); + } + set + { + stringField = value; + } + } + + private int intField; + public int IntProperty + { + get + { + return (intField); + } + set + { + intField = value; + } + } + + private DateTime datetimeField; + public DateTime DatetimeProperty + { + get + { + return (datetimeField); + } + set + { + datetimeField = value; + } + } + + //class constructor + public simpleClass(string StringValue, int IntValue, DateTime DateTimeValue) + { + StringProperty = StringValue; + IntProperty = IntValue; + DatetimeProperty = DateTimeValue; + } + public simpleClass(simpleClass SimpleClassInstance) + { + StringProperty = SimpleClassInstance.StringProperty; + IntProperty = SimpleClassInstance.IntProperty; + DatetimeProperty = SimpleClassInstance.DatetimeProperty; + } + + #region IEncodeable Members + + public ExpandedNodeId TypeId + { + get + { + return (new ExpandedNodeId(Guid.NewGuid())); + } + } + + public void Encode(IEncoder encoder) + { + if (encoder != null) + { + //our simple object has 3 properies: string, int and datetime + encoder.WriteString("StringProperty", this.StringProperty); + encoder.WriteInt32("IntProperty", this.IntProperty); + encoder.WriteDateTime("DateTimeProperty", this.DatetimeProperty); + } + } + + public void Decode(IDecoder decoder) + { + if (decoder != null) + { + this.StringProperty = decoder.ReadString("StringProperty"); + this.IntProperty = decoder.ReadInt16("IntProperty"); + this.DatetimeProperty = decoder.ReadDateTime("DateTimeProperty"); + } + } + + public bool IsEqual(IEncodeable encodeable) + { + return (encodeable.Equals(this)); + } + + #endregion + + #region ICloneable Members + + public new object MemberwiseClone() + { + return (new simpleClass(this)); + } + + #endregion + + } + + public void EncodeExample() + { + //define an instance of our class object, defined above. + simpleClass mySimpleClassInstance1 = new simpleClass("String", int.MaxValue, DateTime.Now); + + //define an object that will encapsulate/extend our simple instance above + ExtensionObject extendedSimpleClassInstance = new ExtensionObject(mySimpleClassInstance1); + + /// + //encode our class object into the stream + uaEncoderInstance.WriteExtensionObject( "Extended1", extendedSimpleClassInstance); + } + + + + 'First, we will define a very simple class object that will represent + 'some real-world process. + + Class simpleClass + Inherits IEncodeable + + 'fields + Public PublicFieldNotVisible As String = "I should not be encoded" + + 'properties + Private stringField As String + Private intField As Integer + Private datetimeField As DateTime + + 'class constructor + Public Sub New(ByVal StringValue As String, ByVal IntValue As Integer, ByVal DateTimeValue As DateTime) + StringProperty = StringValue + IntProperty = IntValue + DatetimeProperty = DateTimeValue + End Sub + + Public Sub New(ByVal SimpleClassInstance As simpleClass) + StringProperty = SimpleClassInstance.StringProperty + IntProperty = SimpleClassInstance.IntProperty + DatetimeProperty = SimpleClassInstance.DatetimeProperty + End Sub + + Public Property StringProperty As String + Get + Return stringField + End Get + Set + stringField = value + End Set + End Property + + Public Property IntProperty As Integer + Get + Return intField + End Get + Set + intField = value + End Set + End Property + + Public Property DatetimeProperty As DateTime + Get + Return datetimeField + End Get + Set + datetimeField = value + End Set + End Property + + Public ReadOnly Property TypeId As ExpandedNodeId + Get + Return New ExpandedNodeId(Guid.NewGuid) + End Get + End Property + + Public Sub Encode(ByVal encoder As IEncoder) + If encoder Isnot Nothing Then + 'our simple object has 3 properies: string, int and datetime + encoder.WriteString("StringProperty", Me.StringProperty) + encoder.WriteInt32("IntProperty", Me.IntProperty) + encoder.WriteDateTime("DateTimeProperty", Me.DatetimeProperty) + End If + End Sub + + Public Sub Decode(ByVal decoder As IDecoder) + If decoder Isnot Nothing Then + Me.StringProperty = decoder.ReadString("StringProperty") + Me.IntProperty = decoder.ReadInt16("IntProperty") + Me.DatetimeProperty = decoder.ReadDateTime("DateTimeProperty") + End If + End Sub + + Public Function IsEqual(ByVal encodeable As IEncodeable) As Boolean + Return encodeable.Equals(Me) + End Function + + Public Function Clone() As Object + Return New simpleClass(Me) + End Function + End Class + + Public Sub nodeid() + 'define an instance of our class object, defined above. + Dim mySimpleClassInstance1 As simpleClass = New simpleClass("String", int.MaxValue, DateTime.Now) + + 'define an object that will encapsulate/extend our simple instance above + Dim extendedSimpleClassInstance As ExtensionObject = New ExtensionObject(mySimpleClassInstance1) + + 'encode our class object into the stream + uaEncoderInstance.WriteExtensionObject("Extended1", extendedSimpleClassInstance) + End Sub + +
+
+ + + Initializes the object with default values. + + + Initializes the object with default values. + + + + + Creates a deep copy of the value. + + The value to be copied. + + Creates a deep copy of the value. + + Thrown when the value is null + + + + Initializes the object with a . + + The type to copy and create an instance from + + + + Initializes the object with a body. + + The body of the object: IEncodeable, XmlElement or Byte-array + + + + Initializes the object with an encodeable object. + + The type describing the body + The underlying data/body to wrap + + Initializes the object with an encodeable object. + + + + + Initializes the object during deserialization. + + + + + The data type node id for the extension object. + + The type id. + + + + The encoding to use when the deserializing/serializing the body. + + The encoding for the embedd object. + + + + The body (embeded object) of the extension object. + + The object to be embeded. + + The body of the extension object. This property will work with objects of the + following types: + + + byte-array ( C# = byte[] or VB.NET Byte() ) + + + + Thrown when the body is not one of the types listed above + + + + Determines if the specified object is equal to the . + + The object to compare to this instance of object + + true if the specified is equal to the current embeded object; otherwise, false. + + + + + Returns a unique hashcode for the embeded object. + + + A hash code for the current embeded object. + + + + + Converts the value to a human readable string. + + + A that represents the current . + + + + + Returns the string representation of the embededobject. + + (Unused). Leave this as null + The provider of a mechanism for retrieving an object to control formatting. + + A containing the value of the current embeded instance in the specified format. + + Thrown if the format parameter is not null + + + + Makes a deep copy of the object. + + + A new object that is a copy of this instance. + + + + + Tests if the extension or embedd objects are null value. + + The object to check if null + + true if the specified is null of the embeded object is null; otherwise, false. + + + Tests is the extension object is null value. + + + + + Converts an extension object to an encodeable object. + + The extension object to convert to an encodeable object + Instance of for the embeded object. + + Converts an extension object to an encodeable object. + + + + + Converts an array of extension objects to an array of the specified type. + + The array to convert. + The type of each element. + The new array + + Will add null elements if individual elements cannot be converted. + + + + + Converts an array of extension objects to a List of the specified type. + + The array to convert. + The new typed List + + Will add null elements if individual elements cannot be converted. + + + + + Returns an instance of a null ExtensionObject. + + + + + The types of encodings that may used with an object. + + + The types of encodings that may used with an object. + + + + + The extension object has no body. + + + + + The extension object has a binary encoded body. + + + + + The extension object has an XML encoded body. + + + + + The extension object has an encodeable object body. + + + + + The extension object has a JSON encoded body. + + + + + A collection of ExtensionObjects. + + + A strongly-typed collection of ExtensionObjects. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + The collection containing the objects to copy into this new instance + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max capacity of the collection + + + + Converts an array of ExtensionObjects to a collection. + + + Converts an array of ExtensionObjects to a collection. + + An array of ExtensionObjects to convert to a collection + + + + Converts an encodeable object to an extension object. + + + Converts an encodeable object to an extension object. + + An enumerable array of ExtensionObjects to convert to a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + An interface to a object that can translate itself. + + + + + Returns a copy of the object with translateable strings replaced. + + The manager which provides the translations. + The locales to use. + A copy of the object + + The copy is not necessarily a deep copy and may reference components of the original object. + The original object is not changed. + + + + + An interface to a object that provides translations. + + + + + Translates the text and then formats it with the arguments provided. + + The list of preferred locales + The key used to look up the translation + The text to translate + The format argumente + The translated text + + If any error occur during format the unformatted text is used instead. + + + + + Translates the LocalizedText using the information in the TranslationInfo property. + + + + + + Translates a service result. + + The preferred locales. + The result. + The result with all localized text translated. + Recusively translates text in inner results. + + + + Stores the information requires to translate a string. + + + + + Creates an empty object. + + + + + Creates an object from a key and a LocalizedText. + + + + + Stores the arguments for uses with a SymbolicId that is used to look up default text. + + + + + Creates an object from a key and a text. + + + + + Creates an object from a key with text and format arguements. + + + + + The key used to look up translations. + + + + + The default locale for the text. + + + + + The text to translate. + + + + + The arguments that are used when formatting the text after translation. + + + + + Stores the type tree for a server. + + + + + Determines whether a node id is a known type id. + + The type extended identifier. + + true if the specified type id is known; otherwise, false. + + + + + Determines whether a node id is a known type id. + + The type identifier. + + true if the specified type id is known; otherwise, false. + + + + + Returns the immediate supertype for the type. + + The extended type identifier. + A type identifier of the + + + + Returns the immediate supertype for the type. + + The type identifier. + The immediate supertype idnetyfier for + + + + Returns the immediate subtypes for the type. + + The extended type identifier. + List of type identifiers for + + + + Determines whether a type is a subtype of another type. + + The subtype identifier. + The supertype identifier. + + true if is supertype of ; otherwise, false. + + + + + Determines whether a type is a subtype of another type. + + The subtype identifier. + The supertype identyfier. + + true if is supertype of ; otherwise, false. + + + + + Returns the qualified name for the reference type id. + + The reference type + A name qualified with a namespace for the reference . + + + + Returns the node identifier for the reference type with the specified browse name. + + Browse name of the reference. + The identifier for the + + + + Checks if the identifier represents a that provides encodings + for the . + + The id the encoding node . + The id of the DataType node. + + true if is encoding of the ; otherwise, false. + + + + + Determines if the value contained in an extension object matches the expected data type. + + The identifier of the expected type . + The value. + + true if the value contained in an extension object matches the + expected data type; otherwise, false. + + + + + Determines if the value is an encoding of the + + The expected type id. + The value. + + true the value is an encoding of the ; otherwise, false. + + + + + Returns the data type for the specified encoding. + + The encoding id. + + + + + Returns the data type for the specified encoding. + + The encoding id. + The data type for the + + + + Human readable qualified with a locale. + + + + The LocalizedText is defined in Part 3 - Address Space Model, Section 7.5, titled + LocalizedText. +
+ + This class provides a wrapper for posting text that is qualified with the locale that it is + intended for. +
+
+ + The following example shows a very simple use of this class to localize a + welcome message + + LocalizedText welcomeUS = new LocalizedText( "Hi Everyone", "EN-US" ); + LocalizedText welcomeGB = new LocalizedText( "Hello Everyone", "EN-GB" ); + LocalizedText welcomeNoLocale = new LocalizedText( "Welcome" ); + + Utils.Trace( welcomeUS.ToString() ); + Utils.Trace( welcomeGB.ToString() ); + Utils.Trace( welcomeNoLocale.ToString() ); + + + Dim welcomeUS As LocalizedText = New LocalizedText( "Hi Everyone", "EN-GB" ) + Dim welcomeGB As LocalizedText = New LocalizedText( "Hello Everyone", "EN-GB" ) + Dim welcomeNoLocale As LocalizedText = New LocalizedText( "Welcome" ) + + Utils.Trace( welcomeUS.ToString() ) + Utils.Trace( welcomeGB.ToString() ) + Utils.Trace( welcomeNoLocale.ToString() ) + + + This produces the following output:
+ [EN-US]:Hi Everyone
+ [EN-GB]:Hello Everyone
+ Welcome
+
+
+
+ + + Initializes the object with the default values. + + + Initializes the object with the default values. + + + + + Formats the text with the arguments using the specified locale. + + + + + Creates text from a TranslationInfo object. + + + + + Creates a deep copy of the value. + + + Creates a deep copy of the value. + + The text to create an instance from + Thrown when the value is null + + + + Initializes the object with a text and the default locale. + + + Initializes the object with a text and the default locale. + + The plain text stored within this object + + + + Initializes the object with a locale and text. + + + Initializes the object with a locale and text. + + The locale code applicable for the specified text + The text to store + + + + Initializes the locale with a key, locale and text. + + A key used to look up the text for different locales + The locale for the text provides + The localized text + + + + The locale used to create the text. + + + The locale used to create the text. + + + + + + + + The localized text. + + + The localized text. + + + + + + + + A key that can be used to look to the localized text in different locales. + + + This value is used within a process to facilite localization. It is not transmitted on the wire. + + + + + The information required to translate the text into other locales. + + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + The object to compare to this + + + + Returns true if the objects are equal. + + + Returns true if the two objects are equal. + + The first value to compare + The second value to compare + + + + Returns true if the objects are not equal. + + + Returns true if the two objects are not equal. + + The first value to compare + The second value to compare + + + + Returns a suitable hash code for the object. + + + Returns a suitable hash code for the object. + + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + (Unused). Always pass NULL/NOTHING + (Unused). Always pass NULL/NOTHING + Thrown if non-null parameters are used + + + + Makes a deep copy of the object. + + + Makes a deep copy of the object. + + + + + Converts a string to a localized text. + + + Converts a string to a localized text. + + The string to store as localized text + + + + Converts a string to a localized text. + + + Converts a string to a localized text. + + The string to store as localized text + + + + Returns an instance of a null LocalizedText. + + + + + Returns true if the text is a null or empty string. + + + + + A collection of LocalizedText objects. + + + A strongly-typed collection of LocalizedText objects. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + The collection to copy into this new instance + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + The max capacity of this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + Array of localized text values to convert to a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + Array of localized text values to convert to a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + Uses to add the service message context to the WCF operation context. + + + + + Initializes the object with the message context to use. + + + + + Returns the message context associated with the current WCF operation context. + + + + + Returns the message context associated with the current WCF operation context. + + + + + The message context to use. + + + + + + + + + + + Stores an identifier for a node in a server's address space. + + + + Please refer to OPC Specifications: + + Address Space Model setion 7.2 + Address Space Model setion 5.2.2 + + + + Stores the id of a Node, which resides within the server's address space. +
+ + The NodeId can be either: + + + + + [] + +
+ + Important: Keep in mind that the actual ID's of nodes should be unique such that no two + nodes within an address-space share the same ID's. + + + The NodeId can be assigned to a particular namespace index. This index is merely just a number and does + not represent some index within a collection that this node has any knowledge of. The assumption is + that the host of this object will manage that directly. +
+
+
+ + + Initializes the object with default values. + + + Creates a new instance of the class which will have the default values. The actual + Node Id will need to be defined as this constructor does not specify the id. + + + + + Creates a deep copy of the value. + + + Creates a new NodeId by copying the properties of the node specified in the parameter. + + The NodeId object whose properties will be copied. + Thrown when value is null + + + + Initializes a numeric node identifier. + + + Creates a new NodeId that will have a numeric (unsigned-int) id + + The numeric value of the id + + + + Initializes a numeric node identifier with a namespace index. + + + Creates a new NodeId that will use a numeric (unsigned int) for its Id, but also + specifies which namespace this node should belong to. + + The new (numeric) Id for the node being created + The index of the namespace that this node should belong to + + + + + Initializes a string node identifier with a namespace index. + + + Creates a new NodeId that will use a string for its Id, but also + specifies if the Id is a URI, and which namespace this node belongs to. + + The new (string) Id for the node being created + The index of the namespace that this node belongs to + + + + Initializes a guid node identifier. + + + Creates a new node whose Id will be a . + + The new Guid value of this nodes Id. + + + + Initializes a guid node identifier. + + + Creates a new node whose Id will be a . + + The new Guid value of this nodes Id. + The index of the namespace that this node belongs to + + + + Initializes an opaque node identifier. + + + Creates a new node whose Id will be a series of . + + An array of that will become this Node's ID + + + + Initializes an opaque node identifier with a namespace index. + + + Creates a new node whose Id will be a series of , while specifying + the index of the namespace that this node belongs to. + + An array of that will become this Node's ID + The index of the namespace that this node belongs to + + + + Initializes a node id by parsing a node id string. + + + Creates a new node with a String id. + + The string id of this new node + + + + Initializes a node identifier with a namespace index. + + + Throws an exception if the identifier type is not supported. + + The identifier + The index of the namespace that qualifies the node + + + + Initializes the object during deserialization. + + + + + Initializes the object during deserialization. + + + + + Converts an identifier and a namespaceUri to a local NodeId using the namespaceTable. + + The identifier for the node. + The URI to look up. + The table to use for the URI lookup. + A local NodeId + Thrown when the namespace cannot be found + + + + Converts an integer to a numeric node identifier. + + + Converts an integer to a numeric node identifier for comparissons. + + + + + //create some variables + uint id1 = 100, id2=101; + NodeId node1; + + //create our node + node1 = new NodeId(id1); + + //now to compare the node to the ids using a simple comparisson and Equals: + Utils.Trace("Comparing NodeId to uint"); + Utils.Trace("\tComparing 100 to 100 = [equals] {0}", node1.Equals(id1)); + Utils.Trace("\tComparing 100 to 100 = [ == ] {0}", node1 == id1); + Utils.Trace("\tComparing 100 to 101 = [equals] {0}", node1.Equals(id2)); + Utils.Trace("\tComparing 100 to 101 = [ == ] {0}", node1 == id2); + + + + + 'create some variables + Dim id1 As UInt = 100 + Dim id2 As UInt = 102 + Dim node1 As NodeId + + 'create our node + node1 = new NodeId(id1) + + 'now to compare the node to the ids using a simple comparisson and Equals: + Utils.Trace("Comparing NodeId to uint") + Utils.Trace( String.Format(" Comparing 100 to 100 = [equals] {0}", node1.Equals(id1)) ) + Utils.Trace( String.Format(" Comparing 100 to 100 = [ = ] {0}", node1 = id1) ) + Utils.Trace( String.Format(" Comparing 100 to 101 = [equals] {0}", node1.Equals(id2)) ) + Utils.Trace( String.Format(" Comparing 100 to 101 = [ = ] {0}", node1 = id2) ) + + + + This produces the following output (taken from C# example): +
+ + Comparing NodeId to uint
+ Comparing 100 to 100 = [equals] True
+ Comparing 100 to 100 = [ == ] True
+ Comparing 100 to 101 = [equals] False
+ Comparing 100 to 101 = [ == ] False
+
+
+ The to compare this node to. +
+ + + Converts a guid to a guid node identifier. + + + Converts a NodeId into a Guid allowing you to compare a Node against a Guid. + + + + + //define our 2 GUID ids, and then define our node to use the first id. + Guid id1 = Guid.NewGuid(), id2 = Guid.NewGuid(); + NodeId node1 = new NodeId(id1); + + //now to compare the node to the guids + Utils.Trace("\n\nComparing NodeId to GUID"); + Utils.Trace("\tComparing {0} to {0} = [equals] {2}", id1, id1, node1.Equals(id1)); + Utils.Trace("\tComparing {0} to {0} = [ == ] {2}", id1, id1, node1 == id1); + Utils.Trace("\tComparing {0} to {1} = [equals] {2}", id1, id2, node1.Equals(id2)); + Utils.Trace("\tComparing {0} to {1} = [ == ] {2}", id1, id2, node1 == id2); + + + + + 'define our 2 GUID ids, and then define our node to use the first id. + Dim id1 As Guid = Guid.NewGuid() + Dim id2 As Guid = Guid.NewGuid() + Dim node1 As NodeId = new NodeId(id1) + + 'now to compare the node to the guids + Utils.Trace("Comparing NodeId to GUID") + Utils.Trace( String.Format( " Comparing {0} to {0} = [equals] {2}", id1, id1, node1.Equals(id1)) ); + Utils.Trace( String.Format( " Comparing {0} to {0} = [ = ] {2}", id1, id1, node1 = id1) ); + Utils.Trace( String.Format( " Comparing {0} to {0} = [equals] {2}", id1, id2, node1.Equals(id2)) ); + Utils.Trace( String.Format( " Comparing {0} to {0} = [ = ] {2}", id1, id2, node1 = id2) ); + + + + This produces the following output (taken from C# example): +
+ + Comparing NodeId to GUID
+ Comparing bbe8b5f2-0f50-4302-877f-346afb07704c to bbe8b5f2-0f50-4302-877f-346afb07704c = [equals] True
+ Comparing bbe8b5f2-0f50-4302-877f-346afb07704c to bbe8b5f2-0f50-4302-877f-346afb07704c = [ = ] True
+ Comparing bbe8b5f2-0f50-4302-877f-346afb07704c to e707de86-4c11-4fe6-94b2-83638a9427e6 = [equals] False
+ Comparing bbe8b5f2-0f50-4302-877f-346afb07704c to e707de86-4c11-4fe6-94b2-83638a9427e6 = [ = ] False
+
+
+ The to compare this node to. +
+ + + Converts a byte array to an opaque node identifier. + + + This operator allows you to compare a NodeId to an array of Bytes. + + + + + //define our 2 Byte[] ids, and then define our node to use the first id. + byte[] id1 = new byte[] { 65, 66, 67, 68, 69 }; + byte[] id2 = new byte[] { 97, 98, 99, 100, 101 }; + NodeId node1 = new NodeId(id1); + + //convert our bytes to string so we can display them + string id1String = System.Text.ASCIIEncoding.ASCII.GetString(id1); + string id2String = System.Text.ASCIIEncoding.ASCII.GetString(id2); + + //now to compare the node to the guids + Utils.Trace("\n\nComparing NodeId to Byte[]"); + Utils.Trace("\tComparing {0} to {0} = [equals] {2}", id1String, id1String, node1.Equals(id1)); + Utils.Trace("\tComparing {0} to {0} = [ = ] {2}", id1String, id1String, node1 == id1); + Utils.Trace("\tComparing {0} to {1} = [equals] {2}", id1String, id2String, node1.Equals(id2)); + Utils.Trace("\tComparing {0} to {1} = [ = ] {2}", id1String, id2String, node1 == id2); + + + + + 'define our 2 Byte[] ids, and then define our node to use the first id. + Dim id1 As Byte() = New Byte() { 65, 66, 67, 68, 69 } + Dim id2 As Byte() = New Byte() { 97, 98, 99, 100, 101 } + Dim node1 As NodeId = New NodeId(id1) + + 'convert our bytes to string so we can display them + Dim id1String As String = System.Text.ASCIIEncoding.ASCII.GetString(id1) + Dim id2String As String = System.Text.ASCIIEncoding.ASCII.GetString(id2) + + 'now to compare the node to the guids + Utils.Trace("Comparing NodeId to Byte()") + Utils.Trace( String.Format("Comparing {0} to {0} = [equals] {2}", id1String, id1String, node1.Equals(id1)) ) + Utils.Trace( String.Format("Comparing {0} to {0} = [ = ] {2}", id1String, id1String, node1 = id1) ) + Utils.Trace( String.Format("Comparing {0} to {1} = [equals] {2}", id1String, id2String, node1.Equals(id2)) ) + Utils.Trace( String.Format("Comparing {0} to {1} = [ = ] {2}", id1String, id2String, node1 = id2) ) + + + + This produces the following output (taken from C# example): +
+ + Comparing NodeId to Byte[] + Comparing ABCDE to ABCDE = [equals] True + Comparing ABCDE to ABCDE = [ == ] True + Comparing ABCDE to abcde = [equals] False + Comparing ABCDE to abcde = [ == ] False +
+
+ The [] array to compare this node to +
+ + + Parses a node id string and initializes a node id. + + + Compares a Node to a String + + + + + //define our 2 String ids, and then define our node to use the first id. + String id1 = "Hello", id2 = "World"; + NodeId node1 = new NodeId(id1); + + //now to compare the node to the guids + Utils.Trace("\n\nComparing NodeId to String"); + Utils.Trace("\tComparing {0} to {0} = [equals] {2}", id1, id1, node1.Equals(id1)); + Utils.Trace("\tComparing {0} to {0} = [ == ] {2}", id1, id1, node1 == id1); + Utils.Trace("\tComparing {0} to {1} = [equals] {2}", id1, id2, node1.Equals(id2)); + Utils.Trace("\tComparing {0} to {1} = [ == ] {2}", id1, id2, node1 == id2); + + + + + + 'define our 2 String ids, and then define our node to use the first id. + Dim id1 As String = "Hello" + Dim id2 As String = "World" + Dim node1 As NodeId = New NodeId(id1) + + 'now to compare the node to the guids + Utils.Trace("Comparing NodeId to String"); + Utils.Trace(String.Format("Comparing {0} to {0} = [equals] {2}", id1, id1, node1.Equals(id1))); + Utils.Trace(String.Format("Comparing {0} to {0} = [ = ] {2}", id1, id1, node1 = id1)); + Utils.Trace(String.Format("Comparing {0} to {1} = [equals] {2}", id1, id2, node1.Equals(id2))); + Utils.Trace(String.Format("Comparing {0} to {1} = [ = ] {2}", id1, id2, node1 = id2)); + + + + The to compare this node to. + + + + Checks if the node id represents a 'Null' node id. + + + Returns a true/false value to indicate if the specified NodeId is null. + + The NodeId to validate + + + + Checks if the node id represents a 'Null' node id. + + + Returns a true/false to indicate if the specified is null. + + The ExpandedNodeId to validate + + + + Parses a node id string and returns a node id object. + + + Parses a NodeId String and returns a NodeId object + + The NodeId value as a string. + Thrown under a variety of circumstances, each time with a specific message. + + + + Returns an instance of a null NodeId. + + + + + Formats a node id as a string. + + + + Formats a NodeId as a string. +
+ + An example of this would be: +
+ + NodeId = "hello123"
+ NamespaceId = 1;
+
This would translate into:
+ ns=1;s=hello123 +
+
+
+ + + Formats the NodeId as a string and appends it to the buffer. + + + + + Formats the NodeId as a string and appends it to the buffer. + + + + + Returns the string representation of a NodeId. + + + Returns the Node represented as a String. This is the same as calling + . + + + + + Converts an node id to an expanded node id using a namespace table. + + + Returns an ExpandedNodeId based on the NodeId requested in the parameters. If the namespaceTable + is specified then the relevant namespace will be returned from the namespaceTable collection which is + also passed in as a parameter. + + null, if the nodeId parameter is null. Otherwise an ExpandedNodeId will be returned for the specified nodeId + The NodeId to return, wrapped in within the ExpandedNodeId. + The namespace tables collection that may be used to retrieve the namespace from that the specified NodeId belongs to + + + + Updates the namespace index. + + + + + Updates the identifier. + + + + + Updates the identifier. + + + + + Compares the current instance to the object. + + + Enables this object type to be compared to other types of object. + + + + + Returns true if a is greater than b. + + + Returns true if a is greater than b. + + + + + Returns true if a is less than b. + + + Returns true if a is less than b. + + + + + Returns the string representation of a NodeId. + + + Returns the string representation of a NodeId. This is the same as calling + . + + Thrown when the format is not null + + + + Makes a deep copy of the object. + + + Returns a copy of this object. + + + + + Determines if the specified object is equal to the NodeId. + + + Returns a true/false if the specified NodeId is the same as this NodeId. + + The object (NodeId or ExpandedNodeId is desired) to compare to + + + + Returns a unique hashcode for the NodeId + + + Returns a unique hashcode for the NodeId + + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + + + + The node identifier formatted as a URI. + + + The node identifier formatted as a URI. + + + + + The index of the namespace URI in the server's namespace array. + + + The index of the namespace URI in the server's namespace array. + + + + + The type of node identifier used. + + + Returns the type of Id, whether it is: + + + + + [] + + + + + + + The node identifier. + + + Returns the Id in its native format, i.e. UInt, GUID, String etc. + + + + + Whether the object represents a Null NodeId. + + + Whether the NodeId represents a Null NodeId. + + + + + Compares two node identifiers. + + + + + Formats a node id as a string. + + + + + A collection of NodeIds. + + + Provides a strongly-typed collection of . + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Creates a new collection based on the referenced collection. + + The existing collection to use as the basis of creating this collection + + + + Initializes the collection with the specified capacity. + + + Creates a new collection while specifying the max size of the collection. + + The max. capacity of the collection + + + + Converts an array to a collection. + + + A quick-use method that will take an array of objects and will + return them within a . + + An array of to add to the collection + A containing the 's added via the parameters + + + + Converts an array to a collection. + + + Converts an array to a collection. + + An array of objects to compare + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A dictionary designed to provide efficient lookups for objects identified by a NodeId + + + + + Creates an empty dictionary. + + + + + + + + + + + + + + + + + + + + + + + Gets or sets the value with the specified NodeId. + + + + + + + + + + + + + + + + + Checks that there is enough space in the array. + + + + + + + + + + + + + + + + + + + + Returns the dictionary set for the specified namespace. + + + + + Returns the dictionary set for String identifiers in the specified namespace. + + + + + Returns the dictionary set for Guid identifiers in the specified namespace. + + + + + Returns the dictionary set for Opaque identifiers in the specified namespace. + + + + + Stores the dictionaries for a single namespace index. + + + + + Wraps a byte array for use as a key in a dictionary. + + + + + Initializes the key with an array of bytes. + + + + + The array of bytes. + + + + + + + + + + + The enumerator for the node dictionary. + + + + + Constructs the enumerator for the specified dictionary. + + + + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + + + + + + + + + + Releases and disposes the current enumerator. + + + + + Checks if the dictionary has changed. + + + + + A name qualified with a namespace. + + + + The QualifiedName is defined in Part 3 - Address Space Model, Section 7.3, titled + Qualified Name. +
+ + The QualifiedName is a simple wrapper class that is used to generate a fully-qualified name + for any type that has a name. +
+ + A Fully Qualified name is one that consists of a name, and an index of which namespace + (within a namespace table) this name belongs to. + For example
+ Namespace Index = 1
+ Name = MyName
+ becomes:
+ 1:MyName +
+
+
+ + + Initializes the object with default values. + + + Initializes the object with default values. + + + + + Creates a deep copy of the value. + + + Creates a deep copy of the value. + + The qualified name to copy + Thrown if the provided value is null + + + + Initializes the object with a name. + + + Initializes the object with a name. + + The name-portion to store as part of the fully qualified name + + + + Initializes the object with a name and a namespace index. + + + Initializes the object with a name and a namespace index. + + The name-portion of the fully qualified name + The index of the namespace within the namespace-table + + + + The index of the namespace that qualifies the name. + + + The index of the namespace that qualifies the name. + + + + + + + + The unqualified name. + + + The unqualified name. + + + + + + + + + + Compares two QualifiedNames. + + The object to compare to. + + Less than zero if the instance is less than the object. + Zero if the instance is equal to the object. + Greater than zero if the instance is greater than the object. + + + + + Implements the operator >. + + The value1. + The value2. + The result of the operator. + + + + Implements the operator <. + + The value1. + The value2. + The result of the operator. + + + + Returns a suitable hash value for the instance. + + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + The object to compare to this/me + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + The first value to compare + The second value to compare + + + + Returns true if the objects are not equal. + + + Returns true if the objects are equal. + + The first value to compare + The second value to compare + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + (Unused) Always pass null + (Unused) Always pass null + Thrown if non-null parameters are passed + + + + Makes a deep copy of the object. + + + Makes a deep copy of the object. + + + + + Converts an expanded node id to a node id using a namespace table. + + + + + Returns true if the QualifiedName is valid. + + The name to be validated. + The table namespaces known to the server. + True if the name is value. + + + + Parses a string containing a QualifiedName with the syntax n:qname + + The QualifiedName value as a string. + Thrown under a variety of circumstances, each time with a specific message. + + + + Returns true if the value is null. + + The qualified name to check + + + + Converts a string to a qualified name. + + + Converts a string to a qualified name. + + The string to turn into a fully qualified name + + + + Converts a string to a qualified name. + + + Converts a string to a qualified name. + + The string to turn into a fully qualified name + + + + Returns an instance of a null QualifiedName. + + + + + A collection of QualifiedName objects. + + + A strongly-typed collection of QualifiedName objects. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + The enumerated collection of qualified names to add to this new collection + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + Max capacity of this collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + The array to turn into a collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + The array to turn into a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + A session-less service message. + + + + + The namespaces URIs referenced by the message. + + + + + The server URIs referenced by the message. + + + + + The message to encode or the decoded message. + + + + + + + + + + + A numeric code that describes the result of a service or operation. + + + + The StatusCode is defined in OPC UA Specifications Part 4: Services, section 7.22 + titled StatusCode.
+
+ + A numeric code that is used to describe the result of a service or operation. The + StatusCode uses bit-assignments, which are described below. +
+ + The StatusCode is a 32-bit number, with the top 16-bits (high word) representing the + numeric value of an error or condition, whereas the bottom 16-bits (low word) represents + additional flags to provide more information on the meaning of the status code. +
+ + The following list shows the bit-assignments, i.e. 0-7 means bit 0 to bit 7. + + 0 - 7:
+ InfoBits. Additional information bits that qualify the status code.
+ 8 - 9:
+ The type of information contained in the info bits. These bits have the following meanings:
+ + Binary Representation 00:
+ The info bits are not used and must be set to zero.
+ Binary Representation 01:
+ The status code and its info bits are associated with a data value returned from the Server.
+ Binary Representation 10 or 11:
+ Reserved for future use. The info bits must be ignored.
+
+
+ 10 - 13:
+ Reserved for future use. Must always be zero.
+ 14: + Indicates that the semantics of the associated data value have changed. Clients should not process the data value until they re-read the metadata associated with the Variable. + Servers should set this bit if the metadata has changed in way that could case application errors if the Client does not re-read the metadata. For example, a change to the engineering units could create problems if the Client uses the value to perform calculations. + [UA Part 8] defines the conditions where a Server must set this bit for a DA Variable. Other specifications may define additional conditions. A Server may define other conditions that cause this bit to be set. + This bit only has meaning for status codes returned as part of a data change Notification. Status codes used in other contexts must always set this bit to zero. + 15:
+ Indicates that the structure of the associated data value has changed since the last Notification. Clients should not process the data value unless they re-read the metadata. + Servers must set this bit if the DataTypeEncoding used for a Variable changes. Clause 7.14 describes how the DataTypeEncoding is specified for a Variable. + The bit is also set if the data type Attribute of the Variable changes. A Variable with data type BaseDataType does not require the bit to be set when the data type changes. + Servers must also set this bit if the length of a fixed length array Variable changes. + This bit is provided to warn Clients that parse complex data values that their parsing routines could fail because the serialized form of the data value has changed. + This bit only has meaning for status codes returned as part of a data change Notification. Status codes used in other contexts must always set this bit to zero.
+ 16 - 27:
+ The code is a numeric value assigned to represent different conditions. + Each code has a symbolic name and a numeric value. All descriptions in the UA specification refer + to the symbolic name. [UA Part 6] maps the symbolic names onto a numeric value.
+ 28 - 29:
+ Reserved for future use. Must always be zero.
+ 30 - 31:
+ Indicates whether the status code represents a good, bad or uncertain condition. + These bits have the following meanings:
+ + Binary Represntation 00:
+ Indicates that the operation was successful and the associated results may be used.
+ Binary Represntation 01:
+ Indicates that the operation was partially successful and that associated results may not be suitable for some purposes.
+ Binary Represntation 10:
+ Indicates that the operation failed and any associated results cannot be used.
+ Binary Represntation 11:
+ Reserved for future use. All Clients should treat a status code with this severity as �Bad�.
+
+
+
+
+
+
+ + + Initializes the object with a numeric value. + + + Initializes the object with a numeric value. + + The numeric code to apply to this status code + + + + Initializes the object from an exception. + + + Initializes the object from an exception and a numeric code. The numeric code + will be determined from the Exception if possible, otherwise the value passed in + will be used. + + The default code to apply if the routine cannot determine the code from the Exception + The exception to convert to a status code + + + + The entire 32-bit status value. + + + The entire 32-bit status value. + + + + + The 16 code bits of the status code. + + + The 16 code bits of the status code. + + + + + Returns a copy of the status code with the Code bits set. + + The value for the Code bits. + The status code with the Code bits set to the specified values. + + + + The 16 flag bits of the status code. + + + The 16 flag bits of the status code. + + + + + Returns a copy of the status code with the Flag bits set. + + The value for the Flag bits. + The status code with the Flag bits set to the specified values. + + + + The sub-code portion of the status code. + + + The sub-code portion of the status code. + + + + + Set to indicate that the structure of the data value has changed. + + + Set to indicate that the structure of the data value has changed. + + + + + Returns a copy of the status code with the StructureChanged bit set. + + The value for the StructureChanged bit. + The status code with the StructureChanged bit set to the specified value. + + + + Set to indicate that the semantics associated with the data value have changed. + + + Set to indicate that the semantics associated with the data value have changed. + + + + + Returns a copy of the status code with the SemanticsChanged bit set. + + The value for the SemanticsChanged bit. + The status code with the SemanticsChanged bit set to the specified value. + + + + The bits that indicate the meaning of the status code + + + The bits that indicate the meaning of the status code + + + + + The limit bits, indicating Hi/Lo etc. + + + The limit bits, indicating Hi/Lo etc. + + + + + + Returns a copy of the status code with the llimit bits set. + + The value for the limits bits + The status code with the limit bits set to the specified values. + + + + The overflow bit. + + + Specifies if there is an overflow or not + + + + + Returns a copy of the status code with the overflow bit set. + + The value for the overflow bit. + The status code with the overflow bit set to the specified value. + + + + The historian bits. + + + The historian bits. + + + + + + Returns a copy of the status code with the aggregate bits set. + + The bits to set. + The status code with the aggregate bits set to the specified values. + + + + Compares the instance to another object. + + + Compares the instance to another object. + + The object to compare to *this* object + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + (Unused) The format of the string. Always specify null for this parameter + The provider to use for the formatting + Thrown if you specify a value for the Format parameter + + + + Determines if the specified object is equal to the object. + + + Determines if the specified object is equal to the object. + + The object to compare to *this* object + + + + Returns a unique hashcode for the object. + + + Returns a unique hashcode for the object. + + + + + Converts the value to a human readable string. + + + Converts the value to a human readable string. + + + + + Converts a 32-bit code a StatusCode object. + + + Converts a 32-bit code a StatusCode object. + + The code to convert to a StatusCode + + + + Converts a StatusCode object to a 32-bit code. + + + Converts a StatusCode object to a 32-bit code. + + The StatusCode to convert to a 32-but number + + + + Looks up the symbolic name for a status code. + + + Looks up the symbolic name for a status code. + + The numeric error-code to convert to a textual description + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + The first object being compared + The second object being compared to + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + The first object being compared + The second object being compared to + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + The first object being compared + The second object being compared to + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + The first value being compared + The second value being compared to + + + + Returns true if the object a is less than object b. + + + Returns true if the object a is less than object b. + + The first value being compared + The second value being compared to + + + + Returns true if the object a is greater than object b. + + + Returns true if the object a is greater than object b. + + The first value being compared + The second value being compared to + + + + Returns true if the status code is good. + + + Returns true if the status code is good. + + The code to check + + + + Returns true if the status is bad or uncertain. + + + Returns true if the status is bad or uncertain. + + The code to check + + + + Returns true if the status code is uncertain. + + + Returns true if the status code is uncertain. + + The code to check + + + + Returns true if the status is good or uncertain. + + + Returns true if the status is good or uncertain. + + The code to check + + + + Returns true if the status code is bad. + + + Returns true if the status code is bad. + + The code to check + + + + Returns true if the status is good or uncertain. + + + Returns true if the status is good or uncertain. + + The code to check + + + + Flags that are set to indicate the limit status of the value. + + + + + The value is free to change. + + + + + The value is at the lower limit for the data source. + + + + + The value is at the higher limit for the data source. + + + + + The value is constant and cannot change. + + + + + Flags that are set by the historian when returning archived values. + + + + + A raw data value. + + + + + A raw data value. + + + + + A data value which was interpolated. + + + + + A mask that selects the bit which identify the source of the value (raw, calculated, interpolated). + + + + + A data value which was calculated with an incomplete interval. + + + + + A raw data value that hides other data at the same timestamp. + + + + + Multiple values match the aggregate criteria (i.e. multiple minimum values at different timestamps within the same interval) + + + + + A collection of StatusCodes. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + The collection to copy + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + The maximum capacity allowed for this instance of the collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + The array of values to return as a Collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + The array of values to return as a Collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + Defines standard status codes. + + + Defines standard status codes. + + + A class that defines constants used by UA applications. + + + A class that defines constants used by UA applications. + + + + + + The operation completed successfully. + + + + + The operation completed however its outputs may not be usable. + + + + + The operation failed. + + + + + Returns the browse name for the attribute. + + + + + Returns the browse names for all attributes. + + + + + Returns the id for the attribute with the specified browse name. + + + + + An unexpected error occurred. + + + + + An internal error occurred as a result of a programming or configuration error. + + + + + Not enough memory to complete the operation. + + + + + An operating system resource is not available. + + + + + A low level communication error occurred. + + + + + Encoding halted because of invalid data in the objects being serialized. + + + + + Decoding halted because of invalid data in the stream. + + + + + The message encoding/decoding limits imposed by the stack have been exceeded. + + + + + The request message size exceeds limits set by the server. + + + + + The response message size exceeds limits set by the client. + + + + + An unrecognized response was received from the server. + + + + + The operation timed out. + + + + + The server does not support the requested service. + + + + + The operation was cancelled because the application is shutting down. + + + + + The operation could not complete because the client is not connected to the server. + + + + + The server has stopped and cannot process any requests. + + + + + There was nothing to do because the client passed a list of operations with no elements. + + + + + The request could not be processed because it specified too many operations. + + + + + The request could not be processed because there are too many monitored items in the subscription. + + + + + The extension object cannot be (de)serialized because the data type id is not recognized. + + + + + The certificate provided as a parameter is not valid. + + + + + An error occurred verifying security. + + + + + The certificate does not meet the requirements of the security policy. + + + + + The certificate has expired or is not yet valid. + + + + + An issuer certificate has expired or is not yet valid. + + + + + The HostName used to connect to a server does not match a HostName in the certificate. + + + + + The URI specified in the ApplicationDescription does not match the URI in the certificate. + + + + + The certificate may not be used for the requested operation. + + + + + The issuer certificate may not be used for the requested operation. + + + + + The certificate is not trusted. + + + + + It was not possible to determine if the certificate has been revoked. + + + + + It was not possible to determine if the issuer certificate has been revoked. + + + + + The certificate has been revoked. + + + + + The issuer certificate has been revoked. + + + + + The certificate chain is incomplete. + + + + + User does not have permission to perform the requested operation. + + + + + The user identity token is not valid. + + + + + The user identity token is valid but the server has rejected it. + + + + + The specified secure channel is no longer valid. + + + + + The timestamp is outside the range allowed by the server. + + + + + The nonce does appear to be not a random value or it is not the correct length. + + + + + The session id is not valid. + + + + + The session was closed by the client. + + + + + The session cannot be used because ActivateSession has not been called. + + + + + The subscription id is not valid. + + + + + The header for the request is missing or invalid. + + + + + The timestamps to return parameter is invalid. + + + + + The request was cancelled by the client. + + + + + Too many arguments were provided. + + + + + The server requires a license to operate in general or to perform a service or operation, but existing license is expired. + + + + + The server has limits on number of allowed operations / objects, based on installed licenses, and these limits where exceeded. + + + + + The server does not have a license which is required to operate in general or to perform a service or operation. + + + + + The subscription was transferred to another session. + + + + + The processing will complete asynchronously. + + + + + Sampling has slowed down due to resource limitations. + + + + + The value written was accepted but was clamped. + + + + + Communication with the data source is defined, but not established, and there is no last known value available. + + + + + Waiting for the server to obtain values from the underlying data source. + + + + + The syntax of the node id is not valid. + + + + + The node id refers to a node that does not exist in the server address space. + + + + + The attribute is not supported for the specified Node. + + + + + The syntax of the index range parameter is invalid. + + + + + No data exists within the range of indexes specified. + + + + + The data encoding is invalid. + + + + + The server does not support the requested data encoding for the node. + + + + + The access level does not allow reading or subscribing to the Node. + + + + + The access level does not allow writing to the Node. + + + + + The value was out of range. + + + + + The requested operation is not supported. + + + + + A requested item was not found or a search operation ended without success. + + + + + The object cannot be used because it has been deleted. + + + + + Requested operation is not implemented. + + + + + The monitoring mode is invalid. + + + + + The monitoring item id does not refer to a valid monitored item. + + + + + The monitored item filter parameter is not valid. + + + + + The server does not support the requested monitored item filter. + + + + + A monitoring filter cannot be used in combination with the attribute specified. + + + + + A mandatory structured parameter was missing or null. + + + + + The event filter is not valid. + + + + + The content filter is not valid. + + + + + An unrecognized operator was provided in a filter. + + + + + A valid operator was provided, but the server does not provide support for this filter operator. + + + + + The number of operands provided for the filter operator was less then expected for the operand provided. + + + + + The operand used in a content filter is not valid. + + + + + The referenced element is not a valid element in the content filter. + + + + + The referenced literal is not a valid value. + + + + + The continuation point provide is longer valid. + + + + + The operation could not be processed because all continuation points have been allocated. + + + + + The reference type id does not refer to a valid reference type node. + + + + + The browse direction is not valid. + + + + + The node is not part of the view. + + + + + The number was not accepted because of a numeric overflow. + + + + + The ServerUri is not a valid URI. + + + + + No ServerName was specified. + + + + + No DiscoveryUrl was specified. + + + + + The semaphore file specified by the client is not valid. + + + + + The security token request type is not valid. + + + + + The security mode does not meet the requirements set by the server. + + + + + The security policy does not meet the requirements set by the server. + + + + + The server has reached its maximum number of sessions. + + + + + The user token signature is missing or invalid. + + + + + The signature generated with the client certificate is missing or invalid. + + + + + The client did not provide at least one software certificate that is valid and meets the profile requirements for the server. + + + + + The server does not support changing the user identity assigned to the session. + + + + + The request was cancelled by the client with the Cancel service. + + + + + The parent node id does not to refer to a valid node. + + + + + The reference could not be created because it violates constraints imposed by the data model. + + + + + The requested node id was reject because it was either invalid or server does not allow node ids to be specified by the client. + + + + + The requested node id is already used by another node. + + + + + The node class is not valid. + + + + + The browse name is invalid. + + + + + The browse name is not unique among nodes that share the same relationship with the parent. + + + + + The node attributes are not valid for the node class. + + + + + The type definition node id does not reference an appropriate type node. + + + + + The source node id does not reference a valid node. + + + + + The target node id does not reference a valid node. + + + + + The reference type between the nodes is already defined. + + + + + The server does not allow this type of self reference on this node. + + + + + The reference type is not valid for a reference to a remote server. + + + + + The server will not allow the node to be deleted. + + + + + The server was not able to delete all target references. + + + + + The server index is not valid. + + + + + The view id does not refer to a valid view node. + + + + + The view timestamp is not available or not supported. + + + + + The view parameters are not consistent with each other. + + + + + The view version is not available or not supported. + + + + + The list of references may not be complete because the underlying system is not available. + + + + + The server should have followed a reference to a node in a remote server but did not. The result set may be incomplete. + + + + + The provided Nodeid was not a type definition nodeid. + + + + + One of the references to follow in the relative path references to a node in the address space in another server. + + + + + The requested operation has too many matches to return. + + + + + The requested operation requires too many resources in the server. + + + + + The requested operation has no match to return. + + + + + The max age parameter is invalid. + + + + + The operation is not permitted over the current secure channel. + + + + + The history details parameter is not valid. + + + + + The server does not support the requested operation. + + + + + The defined timestamp to return was invalid. + + + + + The server does not support writing the combination of value, status and timestamps provided. + + + + + The value supplied for the attribute is not of the same type as the attribute's value. + + + + + The method id does not refer to a method for the specified object. + + + + + The client did not specify all of the input arguments for the method. + + + + + The executable attribute does not allow the execution of the method. + + + + + The server has reached its maximum number of subscriptions. + + + + + The server has reached the maximum number of queued publish requests. + + + + + There is no subscription available for this session. + + + + + The sequence number is unknown to the server. + + + + + The requested notification message is no longer available. + + + + + The client of the current session does not support one or more Profiles that are necessary for the subscription. + + + + + The sub-state machine is not currently active. + + + + + An equivalent rule already exists. + + + + + The server cannot process the request because it is too busy. + + + + + The type of the message specified in the header invalid. + + + + + The SecureChannelId and/or TokenId are not currently in use. + + + + + The size of the message chunk specified in the header is too large. + + + + + There are not enough resources to process the request. + + + + + An internal error occurred. + + + + + The server does not recognize the QueryString specified. + + + + + The request could not be sent because of a network interruption. + + + + + Timeout occurred while processing the request. + + + + + The secure channel has been closed. + + + + + The token has expired or is not recognized. + + + + + The sequence number is not valid. + + + + + The applications do not have compatible protocol versions. + + + + + There is a problem with the configuration that affects the usefulness of the value. + + + + + The variable should receive its value from another variable, but has never been configured to do so. + + + + + There has been a failure in the device/data source that generates the value that has affected the value. + + + + + There has been a failure in the sensor from which the value is derived by the device/data source. + + + + + The source of the data is not operational. + + + + + The deadband filter is not valid. + + + + + Communication to the data source has failed. The variable value is the last value that had a good quality. + + + + + Whatever was updating this value has stopped doing so. + + + + + The value is an operational value that was manually overwritten. + + + + + The value is an initial value for a variable that normally receives its value from another variable. + + + + + The value is at one of the sensor limits. + + + + + The value is outside of the range of values defined for this parameter. + + + + + The value is derived from multiple sources and has less than the required number of Good sources. + + + + + The value has been overridden. + + + + + This Condition refresh failed, a Condition refresh operation is already in progress. + + + + + This condition has already been disabled. + + + + + This condition has already been enabled. + + + + + Property not available, this condition is disabled. + + + + + The specified event id is not recognized. + + + + + The event cannot be acknowledged. + + + + + The dialog condition is not active. + + + + + The response is not valid for the dialog. + + + + + The condition branch has already been acknowledged. + + + + + The condition branch has already been confirmed. + + + + + The condition has already been shelved. + + + + + The condition is not currently shelved. + + + + + The shelving time not within an acceptable range. + + + + + No data exists for the requested time range or event filter. + + + + + No data found to provide upper or lower bound value. + + + + + The server cannot retrieve a bound for the variable. + + + + + Data is missing due to collection started/stopped/lost. + + + + + Expected data is unavailable for the requested time range due to an un-mounted volume, an off-line archive or tape, or similar reason for temporary unavailability. + + + + + The data or event was not successfully inserted because a matching entry exists. + + + + + The data or event was not successfully updated because no matching entry exists. + + + + + The client requested history using a timestamp format the server does not support (i.e requested ServerTimestamp when server only supports SourceTimestamp). + + + + + The data or event was successfully inserted into the historical database. + + + + + The data or event field was successfully replaced in the historical database. + + + + + The value is derived from multiple values and has less than the required number of Good values. + + + + + No data exists for the requested time range or event filter. + + + + + The data or event field was successfully replaced in the historical database. + + + + + The requested number of Aggregates does not match the requested number of NodeIds. + + + + + The requested Aggregate is not support by the server. + + + + + The aggregate value could not be derived due to invalid data inputs. + + + + + The aggregate configuration is not valid for specified node. + + + + + The request specifies fields which are not valid for the EventType or cannot be saved by the historian. + + + + + The request was rejected by the server because it did not meet the criteria set by the server. + + + + + The request has not been processed by the server yet. + + + + + The value does not come from the real source and has been edited by the server. + + + + + There was an error in execution of these post-actions. + + + + + The related EngineeringUnit has been changed but the Variable Value is still provided based on the previous unit. + + + + + A dependent value has been changed but the change has not been applied to the device. + + + + + The related EngineeringUnit has been changed but this change has not been applied to the device. The Variable Value is still dependent on the previous unit but its status is currently Bad. + + + + + A dependent value has been changed but the change has not been applied to the device. The quality of the dominant variable is uncertain. + + + + + A dependent value has been changed but the change has not been applied to the device. The quality of the dominant variable is Bad. + + + + + It is delivered with a dominant Variable value when a dependent Variable has changed but the change has not been applied. + + + + + It is delivered with a dependent Variable value when a dominant Variable has changed but the change has not been applied. + + + + + It is delivered with a dependent Variable value when a dominant or dependent Variable has changed but change has not been applied. + + + + + It is delivered with a Variable value when Variable has changed but the value is not legal. + + + + + It is delivered with a Variable value when a source Variable has changed but the value is not legal. + + + + + It is delivered with a dependent Variable value when a dominant Variable has changed and the value is not legal. + + + + + It is delivered with a dependent Variable value when a dominant Variable has changed, the value is not legal and the change has not been applied. + + + + + It is delivered with a dependent Variable value when a dominant or dependent Variable has changed and the value is not legal. + + + + + It is delivered with a dependent Variable value when a dominant or dependent Variable has changed, the value is not legal and the change has not been applied. + + + + + The communication layer has raised an event. + + + + + The system is shutting down. + + + + + The operation is not finished and needs to be called again. + + + + + A non-critical timeout occurred. + + + + + One or more arguments are invalid. + + + + + Could not establish a network connection to remote server. + + + + + The server has disconnected from the client. + + + + + The network connection has been closed. + + + + + The operation cannot be completed because the object is closed, uninitialized or in some other invalid state. + + + + + Cannot move beyond end of the stream. + + + + + No data is currently available for reading from a non-blocking stream. + + + + + The asynchronous operation is waiting for a response. + + + + + The asynchronous operation was abandoned by the caller. + + + + + The stream did not return all data requested (possibly because it is a non-blocking stream). + + + + + Non blocking behaviour is required and the operation would block. + + + + + A value had an invalid syntax. + + + + + The operation could not be finished because all available connections are in use. + + + + + A wrapper for a GUID used during object serialization. + + + This class provides a wrapper around the object, allowing it to be serialized + and encoded/decoded to/from an underlying stream. + x + + + + Initializes the object with a string. + + + Initializes the object with a string. The string will be used to create a . + + The string that will be turned into a Guid + + + + Initializes the object with a Guid. + + + Initializes the object with a Guid. + + The Guid to wrap + + + + A constant containing an empty GUID. + + + A constant containing an empty GUID. + + + + + The GUID serialized as a string. + + + The GUID serialized as a string. + + + + + Converts Uuid to a Guid structure. + + + Converts Uuid to a Guid structure. + + The Guid to convert to a Uuid + + + + Converts Guid to a Uuid. + + + Converts Guid to a Uuid. + + The to convert to a + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + The first object to compare + The second object to compare + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + The first object to compare + The second object being compared to + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + The first object being compared + The second object being compared to + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + The first object being compared + The second object being compared to + + + + Returns true if the object a is less than object b. + + + Returns true if the object a is less than object b. + + The first object being compared + The second object being compared to + + + + Returns true if the object a is greater than object b. + + + Returns true if the object a is greater than object b. + + The first object being compared + The second object being compared to + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + The object being compared to *this* object + + + + Returns a hash code for the object. + + + Returns a unique hash code for the object. + + + + + Converts the object to a string. + + + Converts the object to a string. + + + + + Compares the current instance to the object. + + + Compares the current instance to the object. This function will check if the object + passed in is a or . + + The object being compared to *this* object + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + The format you want to apply to the string + The FormatProvider + + + + A collection of Uuids. + + + + + Initializes an empty collection. + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Initializes the collection from another collection. + + The collection to copy + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + The maximum size of the colletion + + + + Converts an array to a collection. + + + Converts an array to a collection. + + The array of values to return as a Collection + + + + Converts an array to a collection. + + + Converts an array to a collection. + + The array of values to return as a collection + + + + Creates a deep copy of the collection. + + + Returns a new instance of the collection, copying the contents of this collection + + + + + A structure that could contain value with any of the UA built-in data types. + + + + The Variant is described in Part 6 - Mappings, Section 6.2.2.15, titled Variant +
+ + Variant is a data type in COM, but not within the .NET Framework. Therefore OPC UA has its own + Variant type that supports all of the OPC UA data-types. +
+
+
+ + + Creates a deep copy of the value. + + + Creates a new Variant instance, while deep-copying the contents of the specified Variant + + The Variant value to copy. + + + + Constructs a Variant + + The value to store. + The type information for the value. + + + + Initializes the object with an object value. + + + Creates a new variant instance while specifying the value. + + The value to encode within the variant + + + + Initializes the variant with matrix. + + The value to store within the variant + + + + Initializes the object with a bool value. + + + Creates a new Variant with a Boolean value. + + The value of the variant + + + + Initializes the object with a sbyte value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a byte value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a short value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a ushort value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with an int value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a uint value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a long value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a ulong value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a float value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a double value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a string value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a DateTime value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a Guid value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a Uuid value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a byte[] value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a XmlElement value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a NodeId value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a ExpandedNodeId value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a StatusCode value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a QualifiedName value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a LocalizedText value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a ExtensionObject value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a DataValue value. + + + Creates a new variant with a value + + The value of the Variant + + + + Initializes the object with a bool array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a sbyte array value. + + + Creates a new variant with a -arrat value + + The -array value of the Variant + + + + Initializes the object with a short array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a ushort array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with an int array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a uint array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a long array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a ulong array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a float array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a double array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a string array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a DateTime array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a Guid array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a Uuid array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a byte[] array value. + + + Creates a new variant with a 2-d -array value + + The 2-d -array value of the Variant + + + + Initializes the object with a XmlElement array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a NodeId array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a ExpandedNodeId array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a StatusCode array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a QualifiedName array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a LocalizedText array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a ExtensionObject array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a DataValue array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a Variant array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + Initializes the object with a object array value. + + + Creates a new variant with a -array value + + The -array value of the Variant + + + + The value stored in the object. + + + The value stored within the Variant object. + + + + + The value stored in the object. + + + The value stored -as - within the Variant object. + + + + + The type information for the matrix. + + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + Thrown when the 'format' argument is NOT null. + (Unused) Always pass a NULL value + The format-provider to use. If unsure, pass an empty string or null + + + + Formats a value as a string. + + + + + Makes a deep copy of the object. + + + Makes a deep copy of the object. + + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + + + + Converts a bool value to an Variant object. + + + Converts a bool value to an Variant object. + + + + + Converts a sbyte value to an Variant object. + + + Converts a sbyte value to an Variant object. + + + + + Converts a byte value to an Variant object. + + + Converts a byte value to an Variant object. + + + + + Converts a short value to an Variant object. + + + Converts a short value to an Variant object. + + + + + Converts a ushort value to an Variant object. + + + Converts a ushort value to an Variant object. + + + + + Converts a int value to an Variant object. + + + Converts a int value to an Variant object. + + + + + Converts a uint value to an Variant object. + + + Converts a uint value to an Variant object. + + + + + Converts a long value to an Variant object. + + + Converts a long value to an Variant object. + + + + + Converts a ulong value to an Variant object. + + + Converts a ulong value to an Variant object. + + + + + Converts a float value to an Variant object. + + + Converts a float value to an Variant object. + + + + + Converts a double value to an Variant object. + + + Converts a double value to an Variant object. + + + + + Converts a string value to an Variant object. + + + Converts a string value to an Variant object. + + + + + Converts a DateTime value to an Variant object. + + + Converts a DateTime value to an Variant object. + + + + + Converts a Guid value to an Variant object. + + + Converts a Guid value to an Variant object. + + + + + Converts a Uuid value to an Variant object. + + + Converts a Uuid value to an Variant object. + + + + + Converts a byte[] value to an Variant object. + + + Converts a byte[] value to an Variant object. + + + + + Converts a XmlElement value to an Variant object. + + + Converts a XmlElement value to an Variant object. + + + + + Converts a NodeId value to an Variant object. + + + Converts a NodeId value to an Variant object. + + + + + Converts a ExpandedNodeId value to an Variant object. + + + Converts a ExpandedNodeId value to an Variant object. + + + + + Converts a StatusCode value to an Variant object. + + + Converts a StatusCode value to an Variant object. + + + + + Converts a QualifiedName value to an Variant object. + + + Converts a QualifiedName value to an Variant object. + + + + + Converts a LocalizedText value to an Variant object. + + + Converts a LocalizedText value to an Variant object. + + + + + Converts a ExtensionObject value to an Variant object. + + + Converts a ExtensionObject value to an Variant object. + + + + + Converts a DataValue value to an Variant object. + + + Converts a DataValue value to an Variant object. + + + + + Converts a bool[] value to an Variant object. + + + Converts a bool[] value to an Variant object. + + + + + Converts a sbyte[] value to an Variant object. + + + Converts a sbyte[] value to an Variant object. + + + + + Converts a short[] value to an Variant object. + + + Converts a short[] value to an Variant object. + + + + + Converts a ushort[] value to an Variant object. + + + Converts a ushort[] value to an Variant object. + + + + + Converts a int[] value to an Variant object. + + + Converts a int[] value to an Variant object. + + + + + Converts a uint[] value to an Variant object. + + + Converts a uint[] value to an Variant object. + + + + + Converts a long[] value to an Variant object. + + + Converts a long[] value to an Variant object. + + + + + Converts a ulong[] value to an Variant object. + + + Converts a ulong[] value to an Variant object. + + + + + Converts a float[] value to an Variant object. + + + Converts a float[] value to an Variant object. + + + + + Converts a double[] value to an Variant object. + + + Converts a double[] value to an Variant object. + + + + + Converts a string []value to an Variant object. + + + Converts a string []value to an Variant object. + + + + + Converts a DateTime[] value to an Variant object. + + + Converts a DateTime[] value to an Variant object. + + + + + Converts a Guid[] value to an Variant object. + + + Converts a Guid[] value to an Variant object. + + + + + Converts a Uuid[] value to an Variant object. + + + Converts a Uuid[] value to an Variant object. + + + + + Converts a byte[][] value to an Variant object. + + + Converts a byte[][] value to an Variant object. + + + + + Converts a XmlElement[] value to an Variant object. + + + Converts a XmlElement[] value to an Variant object. + + + + + Converts a NodeId[] value to an Variant object. + + + Converts a NodeId[] value to an Variant object. + + + + + Converts a ExpandedNodeId[] value to an Variant object. + + + Converts a ExpandedNodeId[] value to an Variant object. + + + + + Converts a StatusCode[] value to an Variant object. + + + Converts a StatusCode[] value to an Variant object. + + + + + Converts a QualifiedName[] value to an Variant object. + + + Converts a QualifiedName[] value to an Variant object. + + + + + Converts a LocalizedText[] value to an Variant object. + + + Converts a LocalizedText[] value to an Variant object. + + + + + Converts a ExtensionObject[] value to an Variant object. + + + Converts a ExtensionObject[] value to an Variant object. + + + + + Converts a DataValue[] value to an Variant object. + + + Converts a DataValue[] value to an Variant object. + + + + + Converts a Variant[] value to an Variant object. + + + Converts a Variant[] value to an Variant object. + + + + + Converts a object[] value to an Variant object. + + + Converts a object[] value to an Variant object. + + + + + An constant containing a null Variant structure. + + + An constant containing a null Variant structure. + + + + + Determines if the specified object is equal to the object. + + + Determines if the specified object is equal to the object. + + + + + Returns a unique hashcode for the object. + + + + + Converts the value to a human readable string. + + + + + Initializes the object with a bool value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a sbyte value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a byte value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a short value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a ushort value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with an int value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a uint value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a long value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a ulong value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a float value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a double value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a string value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a DateTime value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a Guid value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a Uuid value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a byte[] value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a XmlElement value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a NodeId value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a ExpandedNodeId value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a StatusCode value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a QualifiedName value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a LocalizedText value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a ExtensionObject value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a DataValue value. + + + Initializes the object with a value. + + The value to set this Variant to + + + + Initializes the object with a bool array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a sbyte array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a short array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a ushort array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with an int array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a uint array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a long array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a ulong array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a float array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a double array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a string array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a DateTime array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a Guid array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a Uuid array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a byte[] array value. + + + Initializes the object with a 2-d -array value. + + The 2-d -array value to set this Variant to + + + + Initializes the object with a XmlElement array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a NodeId array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a ExpandedNodeId array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a StatusCode array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a QualifiedName array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a LocalizedText array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a ExtensionObject array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a DataValue array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a Variant array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Initializes the object with a object array value. + + + Initializes the object with a -array value. + + The -array value to set this Variant to + + + + Stores a scalar value in the variant. + + + + + Stores a on dimensional arrau value in the variant. + + + + + Initializes the object with a collection. + + + + + Initializes the object with an object. + + + + + A collection of Variant objects. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + + Provides a strongly-typed collection of objects. + + + + + Initializes the collection with the specified capacity. + + + Initializes the collection with the specified capacity. + + The capacity to constrain the collection to + + + + Converts an array to a collection. + + + Converts an array of to a collection. + + An array of to convert to a collection + + + + Converts an array to a collection. + + + Converts an array of to a collection. + + An array of to convert to a collection + + + + Creates a deep copy of the collection. + + + Creates a deep copy of the collection. + + + + + Wraps a multi-dimensional array for use within a Variant. + + + + + Initializes the matrix with a multidimensional array. + + + + + Initializes the matrix with a one dimensional array and a list of dimensions. + + + + + The elements of the matrix. + + An array of elements. + + + + The dimensions of the matrix. + + The dimensions of the array. + + + + The type information for the matrix. + + The type information. + + + + Returns the flattened array as a multi-dimensional array. + + + + + Determines if the specified object is equal to the object. + + + Determines if the specified object is equal to the object. + + + + + Returns a unique hashcode for the object. + + + + + Returns the string representation of the object. + + (Unused) Always pass a NULL value + The format-provider to use. If unsure, pass an empty string or null + + A containing the value of the current instance in the specified format. + + + Returns the string representation of the object. + + Thrown when the 'format' argument is NOT null. + + + + Makes a deep copy of the object. + + + A new object that is a copy of this instance. + + + + + A class that defines constants used by UA applications. + + + A class that defines constants used by UA applications. + + + + + + Returns true is the attribute id is valid. + + + + + Returns the browse name for the attribute. + + + + + Returns the browse names for all attributes. + + + + + Returns the id for the attribute with the specified browse name. + + + + + Returns the ids for all attributes. + + + + + Returns the ids for all attributes which are valid for the at least one of the node classes specified by the mask. + + + + + Returns the built type required for an attribute. + + + + + Returns the data type id for the attribute. + + + + + Returns true if the corresponding bit is set in the attribute write mask. + + + + + Sets the corresponding bit in the attribute write mask and returns the result. + + + + + Returns the value rank for the attribute. + + + + + Checks if the attribute is valid for at least one of node classes specified in the mask. + + + + + Returns the AttributeWriteMask for the attribute. + + + + + The canonical identifier for the node. + + + + + The class of the node. + + + + + A non-localized, human readable name for the node. + + + + + A localized, human readable name for the node. + + + + + A localized description for the node. + + + + + Indicates which attributes are writable. + + + + + Indicates which attributes are writable by the current user. + + + + + Indicates that a type node may not be instantiated. + + + + + Indicates that forward and inverse references have the same meaning. + + + + + The browse name for an inverse reference. + + + + + Indicates that following forward references within a view will not cause a loop. + + + + + Indicates that the node can be used to subscribe to events. + + + + + The value of a variable. + + + + + The node id of the data type for the variable value. + + + + + The number of dimensions in the value. + + + + + The length for each dimension of an array value. + + + + + How a variable may be accessed. + + + + + How a variable may be accessed after taking the user's access rights into account. + + + + + Specifies (in milliseconds) how fast the server can reasonably sample the value for changes. + + + + + Specifies whether the server is actively collecting historical data for the variable. + + + + + Whether the method can be called. + + + + + Whether the method can be called by the current user. + + + + + Provides the metadata and encoding information for custom DataTypes. + + + + + The permissions for the node granted to roles. + + + + + The subset of permissions available for the roles available to the current session. + + + + + The access restrictions assigned to the node. + + + + + How a variable may be accessed. + + + + + Decodes objects from a UA Binary encoded stream. + + + + + Creates a decoder that reads from a memory buffer. + + + + + Creates a decoder that reads from a memory buffer. + + + + + Creates a decoder that reads from a stream. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Initializes the tables used to map namespace and server uris during decoding. + + The namespaces URIs referenced by the data being decoded. + The server URIs referenced by the data being decoded. + + + + Completes reading and closes the stream. + + + + + Returns the current position in the stream. + + + + + Gets the stream that the decoder is reading from. + + + + + Decodes a message from a stream. + + + + + Decodes a session-less message from a buffer. + + + + + Decodes a message from a buffer. + + + + + Decodes an object from a buffer. + + + + + Loads a string table from a binary stream. + + + + + The type of encoding being used. + + + + + The message context associated with the decoder. + + + + + Pushes a namespace onto the namespace stack. + + + + + Pops a namespace from the namespace stack. + + + + + Reads a boolean from the stream. + + + + + Reads a sbyte from the stream. + + + + + Reads a byte from the stream. + + + + + Reads a short from the stream. + + + + + Reads a ushort from the stream. + + + + + Reads an int from the stream. + + + + + Reads a uint from the stream. + + + + + Reads a long from the stream. + + + + + Reads a ulong from the stream. + + + + + Reads a float from the stream. + + + + + Reads a double from the stream. + + + + + Reads a string from the stream. + + + + + Reads a string from the stream (throws an exception if its length exceeds the limit specified). + + + + + Reads a UTC date/time from the stream. + + + + + Reads a GUID from the stream. + + + + + Reads a byte string from the stream. + + + + + Reads a byte string from the stream. + + + + + Reads an XmlElement from the stream. + + + + + Reads an NodeId from the stream. + + + + + Reads an ExpandedNodeId from the stream. + + + + + Reads an StatusCode from the stream. + + + + + Reads an DiagnosticInfo from the stream. + + + + + Reads an QualifiedName from the stream. + + + + + Reads an LocalizedText from the stream. + + + + + Reads an Variant from the stream. + + + + + Reads an DataValue from the stream. + + + + + Reads an ExtensionObject from the stream. + + + + + Reads an encodeable object from the stream. + + The encodeable object field name + The system type of the encopdeable object to be read + The TypeId for the instance that will be read. + An object that was read from the stream. + + + + Reads an enumerated value from the stream. + + + + + Reads a boolean array from the stream. + + + + + Reads a sbyte array from the stream. + + + + + Reads a byte array from the stream. + + + + + Reads a short array from the stream. + + + + + Reads a ushort array from the stream. + + + + + Reads a int array from the stream. + + + + + Reads a uint array from the stream. + + + + + Reads a long array from the stream. + + + + + Reads a ulong array from the stream. + + + + + Reads a float array from the stream. + + + + + Reads a double array from the stream. + + + + + Reads a string array from the stream. + + + + + Reads a UTC date/time array from the stream. + + + + + Reads a GUID array from the stream. + + + + + Reads a byte string array from the stream. + + + + + Reads an XmlElement array from the stream. + + + + + Reads an NodeId array from the stream. + + + + + Reads an ExpandedNodeId array from the stream. + + + + + Reads an StatusCode array from the stream. + + + + + Reads an DiagnosticInfo array from the stream. + + + + + Reads an QualifiedName array from the stream. + + + + + Reads an LocalizedText array from the stream. + + + + + Reads an Variant array from the stream. + + + + + Reads an DataValue array from the stream. + + + + + Reads an extension object array from the stream. + + + + + Reads an encodeable array from the stream. + + The encodeable array field name + The system type of the encopdeable objects to be read object + The TypeId for the instances that will be read. + An array that was read from the stream. + + + + Reads an enumerated value array from the stream. + + + + + Reads the length of an array. + + + + + Reads the body of a node id. + + + + + Reads an extension object from the stream. + + + + + Reads an Variant from the stream. + + + + + Encodes objects in a stream using the UA Binary encoding. + + + + + Creates an encoder that writes to a memory buffer. + + + + + Creates an encoder that writes to a fixed size memory buffer. + + + + + Creates an encoder that writes to the stream. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + Initializes the tables used to map namespace and server uris during encoding. + + The namespaces URIs referenced by the data being encoded. + The server URIs referenced by the data being encoded. + + + + Completes writing and returns the buffer (if available). + + + + + Completes writing and returns position in the stream. + + + + + Gets or sets the position in the stream. + + + + + Gets the stream that the encoder is writing to. + + + + + Writes raw bytes to the stream. + + + + + Encodes a message in a buffer. + + + + + Encodes a session-less message to a buffer. + + + + + Encodes a message in a stream. + + + + + Encodes a message with its header. + + + + + Saves a string table from a binary stream. + + + + + The type of encoding being used. + + + + + The message context associated with the encoder. + + + + + Binary Encoder always produces reversible encoding. + + + + + Pushes a namespace onto the namespace stack. + + + + + Pops a namespace from the namespace stack. + + + + + Writes a boolean to the stream. + + + + + Writes a sbyte to the stream. + + + + + Writes a byte to the stream. + + + + + Writes a short to the stream. + + + + + Writes a ushort to the stream. + + + + + Writes an int to the stream. + + + + + Writes a uint to the stream. + + + + + Writes a long to the stream. + + + + + Writes a ulong to the stream. + + + + + Writes a float to the stream. + + + + + Writes a double to the stream. + + + + + Writes a string to the stream. + + + + + Writes a UTC date/time to the stream. + + + + + Writes a GUID to the stream. + + + + + Writes a GUID to the stream. + + + + + Writes a byte string to the stream. + + + + + Writes an XmlElement to the stream. + + + + + Writes an NodeId to the stream. + + + + + Writes an ExpandedNodeId to the stream. + + + + + Writes an StatusCode to the stream. + + + + + Writes an DiagnosticInfo to the stream. + + + + + Writes an QualifiedName to the stream. + + + + + Writes an LocalizedText to the stream. + + + + + Writes an Variant to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an ExtensionObject to the stream. + + + + + Writes an encodeable object to the stream. + + + + + Writes an enumerated value array to the stream. + + + + + Writes a boolean array to the stream. + + + + + Writes a sbyte array to the stream. + + + + + Writes a sbyte array to the stream. + + + + + Writes a short array to the stream. + + + + + Writes a ushort array to the stream. + + + + + Writes a int array to the stream. + + + + + Writes a uint array to the stream. + + + + + Writes a long array to the stream. + + + + + Writes a ulong array to the stream. + + + + + Writes a float array to the stream. + + + + + Writes a double array to the stream. + + + + + Writes a string array to the stream. + + + + + Writes a UTC date/time array to the stream. + + + + + Writes a GUID array to the stream. + + + + + Writes a GUID array to the stream. + + + + + Writes a byte string array to the stream. + + + + + Writes an XmlElement array to the stream. + + + + + Writes an NodeId array to the stream. + + + + + Writes an ExpandedNodeId array to the stream. + + + + + Writes an StatusCode array to the stream. + + + + + Writes an DiagnosticInfo array to the stream. + + + + + Writes an QualifiedName array to the stream. + + + + + Writes an LocalizedText array to the stream. + + + + + Writes an Variant array to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an extension object array to the stream. + + + + + Writes an encodeable object array to the stream. + + + + + Writes an enumerated value array to the stream. + + + + + Writes an object array to the stream (converts to Variant first). + + + + + Write the length of an array. Returns true if the array is empty. + + + + + Write the length of an array. Returns true if the array is empty. + + + + + Returns the node id encoding byte for a node id value. + + + + + Writes the body of a node id to the stream. + + + + + Writes an Variant to the stream. + + + + + The possible values for the node id encoding byte. + + + + + The possible values for the diagnostic info encoding byte. + + + + + The possible values for the localized text encoding byte. + + + + + The possible values for the data value encoding byte. + + + + + The possible values for the data value encoding byte. + + + + + The possible values for Variant encoding bits. + + + + + A concrete base class used by the autogenerated code. + + + + + + + + + + + + + + + + + + + + Checks if the value has changed. + + + + + Applies the data encoding to the value. + + + + + Encodes the object in XML or Binary + + + + + Encodes the object in XML. + + + + + Encodes the object in binary + + + + + Returns a deep copy of an encodeable object. + + + + + Creates encodeable objects based on the type id. + + + + This factory is used to store and retrieve underlying OPC UA system types. +
+ + You can manually add types. You can also import all types from a specified assembly. + Once the types exist within the factory, these types can be then easily queried. +
+
+
+ + + Creates a factory initialized with the types in the core library. + + + + + Creates a factory which is marked as shared and initialized with the types in the core library. + + + + + Creates a factory by copying the table from another factory. + + + + + Loads the types from an assembly. + + + + + The default factory for the process. + + + The default factory for the process. + + + + + Returns the xml qualified name for the specified system type id. + + + Returns the xml qualified name for the specified system type id. + + The underlying type to query and return the Xml qualified name of + + + + Returns the object used to synchronize access to the factory. + + + Returns the object used to synchronize access to the factory. + + + + + Returns a unique identifier for the table instance. Used to debug problems with shared tables. + + + + + Adds an extension type to the factory. + + + Adds an extension type to the factory. + + The underlying system type to add to the factory + + + + Associates an encodeable type with an encoding id. + + A NodeId for a Data Type Encoding node + The system type to use for the specified encoding. + + + + Adds all encodable types exported from an assembly to the factory. + + + + Adds all encodable types exported from an assembly to the factory. +
+ + This method uses reflection on the specified assembly to export all of the + types the assembly exposes, and automatically adds all types that implement + the interface, to the factory. +
+
+ The assembly containing the types to add to the factory +
+ + + Returns the system type for the specified type id. + + + Returns the system type for the specified type id. + + The type id to return the system-type of + + + + Interface implemented by complex data type instances. + + + + + Gets or sets the UA type identifier for the encodeable type. + + + The UA type identifier. + + + + + Defines functions used to dencode objects from a stream. + + + + + The type of encoding being used. + + + + + The message context associated with the decoder. + + + + + Initializes the tables used to map namespace and server uris during decoding. + + The namespaces URIs referenced by the data being decoded. + The server URIs referenced by the data being decoded. + + + + Pushes a namespace onto the namespace stack. + + + + + Pops a namespace from the namespace stack. + + + + + Reads a boolean from the stream. + + + + + Reads a sbyte from the stream. + + + + + Reads a byte from the stream. + + + + + Reads a short from the stream. + + + + + Reads a ushort from the stream. + + + + + Reads an int from the stream. + + + + + Reads a uint from the stream. + + + + + Reads a long from the stream. + + + + + Reads a ulong from the stream. + + + + + Reads a float from the stream. + + + + + Reads a double from the stream. + + + + + Reads a string from the stream. + + + + + Reads a UTC date/time from the stream. + + + + + Reads a GUID from the stream. + + + + + Reads a byte string from the stream. + + + + + Reads an XmlElement from the stream. + + + + + Reads an NodeId from the stream. + + + + + Reads an ExpandedNodeId from the stream. + + + + + Reads an StatusCode from the stream. + + + + + Reads an DiagnosticInfo from the stream. + + + + + Reads an QualifiedName from the stream. + + + + + Reads an LocalizedText from the stream. + + + + + Reads an Variant from the stream. + + + + + Reads an DataValue from the stream. + + + + + Reads an ExtensionObject from the stream. + + + + + Reads an encodeable object from the stream. + + The encodeable object field name + The system type of the encopdeable object to be read + The TypeId for the instance that will be read. + An object that was read from the stream. + + + + Reads an enumerated value from the stream. + + + + + Reads a boolean array from the stream. + + + + + Reads a sbyte array from the stream. + + + + + Reads a sbyte array from the stream. + + + + + Reads a short array from the stream. + + + + + Reads a ushort array from the stream. + + + + + Reads a int array from the stream. + + + + + Reads a uint array from the stream. + + + + + Reads a long array from the stream. + + + + + Reads a ulong array from the stream. + + + + + Reads a float array from the stream. + + + + + Reads a double array from the stream. + + + + + Reads a string array from the stream. + + + + + Reads a UTC date/time array from the stream. + + + + + Reads a GUID array from the stream. + + + + + Reads a byte string array from the stream. + + + + + Reads an XmlElement array from the stream. + + + + + Reads an NodeId array from the stream. + + + + + Reads an ExpandedNodeId array from the stream. + + + + + Reads an StatusCode array from the stream. + + + + + Reads an DiagnosticInfo array from the stream. + + + + + Reads an QualifiedName array from the stream. + + + + + Reads an LocalizedText array from the stream. + + + + + Reads an Variant array from the stream. + + + + + Reads an DataValue array from the stream. + + + + + Reads an extension object array from the stream. + + + + + Reads an encodeable array from the stream. + + The encodeable array field name + The system type of the encopdeable objects to be read object + The TypeId for the instances that will be read. + An array that was read from the stream. + + + + Reads an enumerated value array from the stream. + + + + + Defines methods used to encode and decode objects. + + + + + Returns the UA type identifier for the encodable type. + + The UA type identifier. + + + + Returns the UA type identifier for the default binary encoding for the type. + + The UA type identifier for binary encoding. + + + + Returns the UA type identifier for the default XML encoding for the type. + + The UA type identifier for the XML encoding id. + + + + Encodes the object in a stream. + + The encoder to be used for encoding the current value. + + + + Decodes the object from a stream. + + The decoder to be used for decoding the current value.. + + + + Checks if the value is equal to the another encodeable object. + + The encodeable. + + true if the specified instance of the type is equal; otherwise false. + + + + + A collection of encodeable objects. + + + + + Initializes an empty collection. + + + + + Initializes the collection from another collection. + + The collection whose elements are copied to the new list. + + is null. + + + + + Initializes the collection with the specified capacity. + + The initial capacity of the collection. + + + + Converts an array to a collection. + + The values to be converted to an instance of . + Instance of the containing + + + + Converts an array to a collection. + + The values to be converted to new instance of . + The result of the conversion. + + + + Defines functions used to encode objects in a stream. + + + + + The type of encoding being used. + + + + + Selects the reversible encoding type. + + + + + The message context associated with the encoder. + + + + + Sets the mapping tables to use during decoding. + + The namespace uris. + The server uris. + + + + Pushes a namespace onto the namespace stack. + + + + + Pops a namespace from the namespace stack. + + + + + Writes a boolean to the stream. + + + + + Writes a sbyte to the stream. + + + + + Writes a byte to the stream. + + + + + Writes a short to the stream. + + + + + Writes a ushort to the stream. + + + + + Writes an int to the stream. + + + + + Writes a uint to the stream. + + + + + Writes a long to the stream. + + + + + Writes a ulong to the stream. + + + + + Writes a float to the stream. + + + + + Writes a double to the stream. + + + + + Writes a string to the stream. + + + + + Writes a UTC date/time to the stream. + + + + + Writes a GUID to the stream. + + + + + Writes a GUID to the stream. + + + + + Writes a byte string to the stream. + + + + + Writes an XmlElement to the stream. + + + + + Writes an NodeId to the stream. + + + + + Writes an ExpandedNodeId to the stream. + + + + + Writes an StatusCode to the stream. + + + + + Writes an DiagnosticInfo to the stream. + + + + + Writes an QualifiedName to the stream. + + + + + Writes an LocalizedText to the stream. + + + + + Writes an Variant array to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an ExtensionObject to the stream. + + + + + Writes an encodeable object to the stream. + + + + + Writes an enumerated value array to the stream. + + + + + Writes a boolean array to the stream. + + + + + Writes a sbyte array to the stream. + + + + + Writes a sbyte array to the stream. + + + + + Writes a short array to the stream. + + + + + Writes a ushort array to the stream. + + + + + Writes a int array to the stream. + + + + + Writes a uint array to the stream. + + + + + Writes a long array to the stream. + + + + + Writes a ulong array to the stream. + + + + + Writes a float array to the stream. + + + + + Writes a double array to the stream. + + + + + Writes a string array to the stream. + + + + + Writes a UTC date/time array to the stream. + + + + + Writes a GUID array to the stream. + + + + + Writes a GUID array to the stream. + + + + + Writes a byte string array to the stream. + + + + + Writes a XmlElement array to the stream. + + + + + Writes an NodeId array to the stream. + + + + + Writes an ExpandedNodeId array to the stream. + + + + + Writes an StatusCode array to the stream. + + + + + Writes an DiagnosticInfo array to the stream. + + + + + Writes an QualifiedName array to the stream. + + + + + Writes an LocalizedText array to the stream. + + + + + Writes an Variant array to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an extension object array to the stream. + + + + + Writes an encodeable object array to the stream. + + + + + Writes an enumerated value array to the stream. + + + + + The type of encoding used by an encoder/decoder. + + + + + The UA Binary encoding. + + + + + XML + + + + + JSON + + + + + Interface implemented by structured type instances. + + + + + Gets the structure type. + + + + + Reads objects from a JSON stream. + + + + + Create a JSON decoder to decode a string. + + The JSON encoded string. + The service message context to use. + + + + Create a JSON decoder to decode a from a . + + The system type of the encoded JSON stram. + The text reader. + The service message context to use. + + + + Sets private members to default values. + + + + + Decodes a session-less message from a buffer. + + + + + Decodes a message from a buffer. + + + + + Decodes a message from a buffer. + + + + + Decodes an object from a buffer. + + + + + Initializes the tables used to map namespace and server uris during decoding. + + The namespaces URIs referenced by the data being decoded. + The server URIs referenced by the data being decoded. + + + + Closes the stream used for reading. + + + + + Closes the stream used for reading. + + + + + Reads the body extension object from the stream. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + The type of encoding being used. + + + + + The message context associated with the decoder. + + + + + Pushes a namespace onto the namespace stack. + + + + + Pops a namespace from the namespace stack. + + + + + Read a decoded JSON field. + + The name of the field. + The returned object token of the field. + + + + Reads a boolean from the stream. + + + + + Reads a sbyte from the stream. + + + + + Reads a byte from the stream. + + + + + Reads a short from the stream. + + + + + Reads a ushort from the stream. + + + + + Reads an int from the stream. + + + + + Reads a uint from the stream. + + + + + Reads a long from the stream. + + + + + Reads a ulong from the stream. + + + + + Reads a float from the stream. + + + + + Reads a double from the stream. + + + + + Reads a string from the stream. + + + + + Reads a UTC date/time from the stream. + + + + + Reads a GUID from the stream. + + + + + Reads a byte string from the stream. + + + + + Reads an XmlElement from the stream. + + + + + Reads an NodeId from the stream. + + + + + Reads an ExpandedNodeId from the stream. + + + + + Reads an StatusCode from the stream. + + + + + Reads an DiagnosticInfo from the stream. + + + + + Reads an QualifiedName from the stream. + + + + + Reads an LocalizedText from the stream. + + + + + Reads an Variant from the stream. + + + + + Reads an DataValue from the stream. + + + + + Reads an extension object from the stream. + + + + + Reads an encodeable object from the stream. + + The encodeable object field name + The system type of the encopdeable object to be read + The TypeId for the instance that will be read. + An object that was read from the stream. + + + + Reads an enumerated value from the stream. + + + + + Reads a boolean array from the stream. + + + + + Reads a sbyte array from the stream. + + + + + Reads a byte array from the stream. + + + + + Reads a short array from the stream. + + + + + Reads a ushort array from the stream. + + + + + Reads a int array from the stream. + + + + + Reads a uint array from the stream. + + + + + Reads a long array from the stream. + + + + + Reads a ulong array from the stream. + + + + + Reads a float array from the stream. + + + + + Reads a double array from the stream. + + + + + Reads a string array from the stream. + + + + + Reads a UTC date/time array from the stream. + + + + + Reads a GUID array from the stream. + + + + + Reads a byte string array from the stream. + + + + + Reads an XmlElement array from the stream. + + + + + Reads an NodeId array from the stream. + + + + + Reads an ExpandedNodeId array from the stream. + + + + + Reads an StatusCode array from the stream. + + + + + Reads an DiagnosticInfo array from the stream. + + + + + Reads an QualifiedName array from the stream. + + + + + Reads an LocalizedText array from the stream. + + + + + Reads an Variant array from the stream. + + + + + Reads an DataValue array from the stream. + + + + + Reads an array of extension objects from the stream. + + + + + Reads an encodeable array from the stream. + + The encodeable array field name + The system type of the encopdeable objects to be read object + The TypeId for the instances that will be read. + An array that was read from the stream. + + + + Reads an enumerated value array from the stream. + + + + + Writes objects to a JSON stream. + + + + + Initializes the object with default values. + + + + + Sets private members to default values. + + + + + Writes the root element to the stream. + + + + + Encodes a session-less message to a buffer. + + + + + Encodes a message in a stream. + + + + + Encodes a message with its header. + + + + + Initializes the tables used to map namespace and server uris during encoding. + + The namespaces URIs referenced by the data being encoded. + The server URIs referenced by the data being encoded. + + + + Completes writing and returns the JSON text. + + + + + Completes writing and returns the text length. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + The type of encoding being used. + + + + + The message context associated with the encoder. + + + + + The Json encoder reversible encoding option + + + + + The Json encoder to encoder namespace URI instead of + namespace Index in NodeIds. + + + + + The Json encoder default value option. + + + + + The Json encoder default value option. + + + + + Pushes a namespace onto the namespace stack. + + + + + Pops a namespace from the namespace stack. + + + + + Push the begin of a structure on the decoder stack. + + The name of the structure field. + + + + Push the begin of an array on the decoder stack. + + The name of the array field. + + + + Pop the structure from the decoder stack. + + + + + Pop the array from the decoder stack. + + + + + Writes a boolean to the stream. + + + + + Writes a sbyte to the stream. + + + + + Writes a byte to the stream. + + + + + Writes a short to the stream. + + + + + Writes a ushort to the stream. + + + + + Writes an int to the stream. + + + + + Writes a uint to the stream. + + + + + Writes a long to the stream. + + + + + Writes a ulong to the stream. + + + + + Writes a float to the stream. + + + + + Writes a double to the stream. + + + + + Writes a string to the stream. + + + + + Writes a UTC date/time to the stream. + + + + + Writes a GUID to the stream. + + + + + Writes a GUID to the stream. + + + + + Writes a byte string to the stream. + + + + + Writes an XmlElement to the stream. + + + + + Writes an NodeId to the stream. + + + + + Writes an ExpandedNodeId to the stream. + + + + + Writes an StatusCode to the stream. + + + + + Writes an DiagnosticInfo to the stream. + + + + + Writes an QualifiedName to the stream. + + + + + Writes an LocalizedText to the stream. + + + + + Writes an Variant to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an ExtensionObject to the stream. + + + + + Writes an encodeable object to the stream. + + + + + Writes an enumerated value to the stream. + + + + + Writes an enumerated Int32 value to the stream. + + + + + Writes a boolean array to the stream. + + + + + Writes a sbyte array to the stream. + + + + + Writes a sbyte array to the stream. + + + + + Writes a short array to the stream. + + + + + Writes a ushort array to the stream. + + + + + Writes a int array to the stream. + + + + + Writes a uint array to the stream. + + + + + Writes a long array to the stream. + + + + + Writes a ulong array to the stream. + + + + + Writes a float array to the stream. + + + + + Writes a double array to the stream. + + + + + Writes a string array to the stream. + + + + + Writes a UTC date/time array to the stream. + + + + + Writes a GUID array to the stream. + + + + + Writes a GUID array to the stream. + + + + + Writes a byte string array to the stream. + + + + + Writes an XmlElement array to the stream. + + + + + Writes an NodeId array to the stream. + + + + + Writes an ExpandedNodeId array to the stream. + + + + + Writes an StatusCode array to the stream. + + + + + Writes an DiagnosticInfo array to the stream. + + + + + Writes an QualifiedName array to the stream. + + + + + Writes an LocalizedText array to the stream. + + + + + Writes an Variant array to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an extension object array to the stream. + + + + + Writes an encodeable object array to the stream. + + + + + Writes an enumerated value array to the stream. + + + + + Writes the contents of an Variant to the stream. + + + + + Write multi dimensional array in structure. + + + + + Write multi dimensional array in Variant. + + + + + Writes an Variant array to the stream. + + + + + Reads objects from a XML stream. + + + + + Initializes the object with default values. + + + + + Initializes the object with an XML element to parse. + + + + + Initializes the object with a XML reader. + + + + + Sets private members to default values. + + + + + Initializes the tables used to map namespace and server uris during decoding. + + The namespaces URIs referenced by the data being decoded. + The server URIs referenced by the data being decoded. + + + + Initializes a string table from an XML stream. + + Name of the table. + Name of the element. + The string table. + True if the table was found. False otherwise. + + + + Closes the stream used for reading. + + + + + Closes the stream used for reading. + + + + + Returns the qualified name for the next element in the stream. + + + + + Returns true if the specified field is the next element to be extracted. + + + + + Returns the qualified name for the next element in the stream. + + + + + Skips to the end of the specified element. + + The qualified name of the element to skip. + + + + Reads the contents of an Variant object. + + + + + + Reads the body extension object from the stream. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + The type of encoding being used. + + + + + The message context associated with the decoder. + + + + + Pushes a namespace onto the namespace stack. + + + + + Pops a namespace from the namespace stack. + + + + + Reads a boolean from the stream. + + + + + Reads a sbyte from the stream. + + + + + Reads a byte from the stream. + + + + + Reads a short from the stream. + + + + + Reads a ushort from the stream. + + + + + Reads an int from the stream. + + + + + Reads a uint from the stream. + + + + + Reads a long from the stream. + + + + + Reads a ulong from the stream. + + + + + Reads a float from the stream. + + + + + Reads a double from the stream. + + + + + Reads a string from the stream. + + + + + Reads a UTC date/time from the stream. + + + + + Reads a GUID from the stream. + + + + + Reads a byte string from the stream. + + + + + Exracts the XML from the reader. + + + + + Reads an XmlElement from the stream. + + + + + Reads an NodeId from the stream. + + + + + Reads an ExpandedNodeId from the stream. + + + + + Reads an StatusCode from the stream. + + + + + Reads an DiagnosticInfo from the stream. + + + + + Reads an DiagnosticInfo from the stream. + + + + + Reads an QualifiedName from the stream. + + + + + Reads an LocalizedText from the stream. + + + + + Reads an Variant from the stream. + + + + + Reads an DataValue from the stream. + + + + + Reads an extension object from the stream. + + + + + Reads an encodeable object from the stream. + + The encodeable object field name + The system type of the encopdeable object to be read + The TypeId for the instance that will be read. + An object that was read from the stream. + + + + Reads an enumerated value from the stream. + + + + + Reads a boolean array from the stream. + + + + + Reads a sbyte array from the stream. + + + + + Reads a byte array from the stream. + + + + + Reads a short array from the stream. + + + + + Reads a ushort array from the stream. + + + + + Reads a int array from the stream. + + + + + Reads a uint array from the stream. + + + + + Reads a long array from the stream. + + + + + Reads a ulong array from the stream. + + + + + Reads a float array from the stream. + + + + + Reads a double array from the stream. + + + + + Reads a string array from the stream. + + + + + Reads a UTC date/time array from the stream. + + + + + Reads a GUID array from the stream. + + + + + Reads a byte string array from the stream. + + + + + Reads an XmlElement array from the stream. + + + + + Reads an NodeId array from the stream. + + + + + Reads an ExpandedNodeId array from the stream. + + + + + Reads an StatusCode array from the stream. + + + + + Reads an DiagnosticInfo array from the stream. + + + + + Reads an QualifiedName array from the stream. + + + + + Reads an LocalizedText array from the stream. + + + + + Reads an Variant array from the stream. + + + + + Reads an DataValue array from the stream. + + + + + Reads an array of extension objects from the stream. + + + + + Reads an encodeable array from the stream. + + The encodeable array field name + The system type of the encopdeable objects to be read object + The TypeId for the instances that will be read. + An array that was read from the stream. + + + + Reads an enumerated value array from the stream. + + + + + Reads an Matrix from the stream. + + + + + Reads a string from the stream. + + + + + Reads the start of filed where the presences of the xsi:nil attribute is not significant. + + + + + Reads the start of field. + + + + + Reads the end of a field. + + + + + Moves to the next start element. + + + + + Writes objects to a XML stream. + + + + + Initializes the object with default values. + + + + + Initializes the object with a system type to encode and a XML writer. + + + + + Initializes the object with a system type to encode and a XML writer. + + + + + Sets private members to default values. + + + + + Writes the root element to the stream. + + + + + Initializes the tables used to map namespace and server uris during encoding. + + The namespaces URIs referenced by the data being encoded. + The server URIs referenced by the data being encoded. + + + + Saves a string table from an XML stream. + + Name of the table. + Name of the element. + The string table. + + + + Writes a start element. + + The name of the element. + The namespace that qualifies the element name. + + + + Writes an end element. + + + + + Completes writing and returns the XML text. + + + + + Frees any unmanaged resources. + + + + + An overrideable version of the Dispose. + + + + + The type of encoding being used. + + + + + The message context associated with the encoder. + + + + + Xml Encoder always produces reversible encoding. + + + + + Pushes a namespace onto the namespace stack. + + + + + Pops a namespace from the namespace stack. + + + + + Writes a boolean to the stream. + + + + + Writes a sbyte to the stream. + + + + + Writes a byte to the stream. + + + + + Writes a short to the stream. + + + + + Writes a ushort to the stream. + + + + + Writes an int to the stream. + + + + + Writes a uint to the stream. + + + + + Writes a long to the stream. + + + + + Writes a ulong to the stream. + + + + + Writes a float to the stream. + + + + + Writes a double to the stream. + + + + + Writes a string to the stream. + + + + + Writes a UTC date/time to the stream. + + + + + Writes a GUID to the stream. + + + + + Writes a GUID to the stream. + + + + + Writes a byte string to the stream. + + + + + Writes an XmlElement to the stream. + + + + + Writes an NodeId to the stream. + + + + + Writes an ExpandedNodeId to the stream. + + + + + Writes an StatusCode to the stream. + + + + + Writes an DiagnosticInfo to the stream. + + + + + Writes an QualifiedName to the stream. + + + + + Writes an LocalizedText to the stream. + + + + + Writes an Variant array to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an ExtensionObject to the stream. + + + + + Writes an encodeable object to the stream. + + + + + Writes an enumerated value array to the stream. + + + + + Writes a boolean array to the stream. + + + + + Writes a sbyte array to the stream. + + + + + Writes a sbyte array to the stream. + + + + + Writes a short array to the stream. + + + + + Writes a ushort array to the stream. + + + + + Writes a int array to the stream. + + + + + Writes a uint array to the stream. + + + + + Writes a long array to the stream. + + + + + Writes a ulong array to the stream. + + + + + Writes a float array to the stream. + + + + + Writes a double array to the stream. + + + + + Writes a string array to the stream. + + + + + Writes a UTC date/time array to the stream. + + + + + Writes a GUID array to the stream. + + + + + Writes a GUID array to the stream. + + + + + Writes a byte string array to the stream. + + + + + Writes an XmlElement array to the stream. + + + + + Writes an NodeId array to the stream. + + + + + Writes an ExpandedNodeId array to the stream. + + + + + Writes an StatusCode array to the stream. + + + + + Writes an DiagnosticInfo array to the stream. + + + + + Writes an QualifiedName array to the stream. + + + + + Writes an LocalizedText array to the stream. + + + + + Writes an Variant array to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an extension object array to the stream. + + + + + Writes an encodeable object array to the stream. + + + + + Writes an enumerated value array to the stream. + + + + + Writes the contents of an Variant to the stream. + + + + + Writes the body of an ExtensionObject to the stream. + + + + + Writes an DataValue array to the stream. + + + + + Writes an Variant array to the stream. + + + + + Writes the start element for a field. + + + + + Writes the end element for a field. + + + + + Compares values taking into account semantically equivalent values that would fail the simple IsEqual test. + + + + + Constructs an instance of the data comparer. + + + + + Gets or set a flag indicating whether an exception should be thrown on error. + + + + + This method compares two Boolean values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two SByte values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two Byte values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two Int16 values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two UInt16 values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two Int32 values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two UInt32 values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two Int64 values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two UInt64 values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two Float values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two Double values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two String values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two DateTime values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two Guid values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two ByteString values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two XmlElement values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two NodeId values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two ExpandedNodeId values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two StatusCode values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two DiagnosticInfo values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two QualifiedName values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two LocalizedText values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two Variant values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two DataValues. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + This method compares two DataValues. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + The factory to use when decoding extension objects. + + + + + Extracts the extension object body. + + Extension object. + IEncodeable object + + + + This method compares two ExtensionObject values. + + First Value. + Second Value. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + Compares the value of two extension object body. + + + + + The delegate used to compare two values. + + + + + This method compares two arrays. + + IEnumerable object of type T + IEnumerable object of type T + Method name to compare the arrays. + True in case of equal values. + False or ServiceResultException in case of unequal values. + + + + In case of errors, throw exception. + + First Value. + Second Value. + Throws ServiceResultException in case of unequal values. + + + + An interface to a source of random numbers. + + + + + Fills a range in array of bytes with random numbers. + + The array to update. + The start of the range generate. + The number of bytes to generate. + Thrown if the bytes parameter is null. + Thrown if the offset or count parameters do not specify a valid range within the bytes parameter. + + + + Returns a random non-negative integer which does not exeed the specified maximum. + + The maximum value to return. + A random value greater than 0 but less than or equal to max. + Thrown if the max parameter is less than zero. + + + + Uses the Pseudo random generator as a source. + + + + + Initializes the source with a time dependent seed. + + + + + Initializes the source with a seed. + + The number used to initialize the Pseudo random sequence. + + + + + + + + + + A class that generates data. + + + + + Initializes the data generator. + + + + + The maximum length for generated arrays. + + + + + The maximum length for generated strings. + + + + + The minimum value for generated date time values. + + + + + The maximum value for generated date time values. + + + + + The maximum number of attributes in generated XML elements. + + + + + The maximum number of child elements in generated XML elements. + + + + + The table namespace uris to use when generating NodeIds. + + + + + The table server uris to use when generating NodeIds. + + + + + How frequently boundary values should be used expressed as percentage between 0 and 100. + + + + + Returns true of a boundary value should be used. + + + + + Returns a random value of the specified built-in type. + + + + + Returns a random value of the specified built-in type. + + + + + Returns a random value of the specified built-in type. + + + + + Returns an array wrapped in a variant. + + + + + This method returns a random value of values for the type. + + + + + This method returns a random array of values for the type. + + + + + This method returns a random array of values for the type. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a random string with a random locale. + + + + + Creates a random string for the locale. + + + + + Creates a random symbol with a random locale. + + + + + Creates a random symbol for the locale. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a random variant containing a scalar or array value. + + + + + + + + Get a random DataValue. + + + + + Get random diagnostic info. + + + + + Stores the boundary values for a data type. + + + + + Boundary values used or testing. + + + + + Loads some string data from a resource. + + + + + Randomly selects a boundary value for type. + + + + + Returns a positive integer between the specified values. + + + + + Returns a random value of the specified type. + + + + + Returns a random locale. + + + + + Creates a string from the tokens for the locale. + + + + + Produces high resolution timestamps. + + + + + Returns the current UTC time with a high resolution. + + + This Utc time does not change if the system time is changed. + It returns the Utc time elapsed since the application started. + + + + + Returns a monotonic increasing tick count in milliseconds. + + + + + Return the frequency of the ticks. + + + + + Return the number of ticks per millisecond. + + + + + Disables the hires clock. + + + + + Reset the baseline and allow a new initialization. + + + + + Constructs a HiRes clock class. + + + + + Defines a global instance. + + + + + A thread safe table of string constants. + + + + + Creates an empty collection. + + + + + Creates an empty collection which is marked as shared. + + + + + Copies a list of strings. + + + + + The synchronization object. + + + + + Returns a unique identifier for the table instance. Used to debug problems with shared tables. + + + + + Updates the table of namespace uris. + + + + + Adds a string to the end of the table. + + + + + Returns the namespace uri at the specified index. + + + + + Returns the index of the specified namespace uri. + + + + + Returns the index of the specified namespace uri, adds it if it does not exist. + + + + + Returns the contexts of the table. + + + + + Returns the number of entries in the table. + + + + + Creates a mapping between the URIs in a source table and the indexes in the current table. + + The string table to map. + if set to true if missing URIs should be added to the current tables. + A list of indexes in the current table. + + + + The table of namespace uris for a server. + + + + + Creates an empty collection. + + + + + Creates an empty collection which is marked as shared. + + + + + Copies a list of strings. + + + + + Updates the table of namespace uris. + + + + + A class that stores a numeric range. + + + A class that stores a numeric range. + + + + + Initializes the object with a begin index. + + + Initializes the object with a begin index. + + The starting point of the range + Thrown when the parameter is less than -1 + + + + Initializes the object with a begin and end indexes. + + + Initializes the object with a begin and end indexes. + + The end of the range + The beginning of the range + + + + The begining of the numeric range. + + + The begining of the numeric range. + + Thrown when the value is less than -1, or when the value is greater than the end + + + + The end of the numeric range. + + + The end of the numeric range. + + Thrown when the value is less + than -1 or when the end is less than the beginning + + + + The number of elements specified by the range. + + + The number of elements specified by the range. + + + + + Gets the number of dimensions in the range. + + The number of dimensions. + + + + Gets or sets the sub ranges for multidimensional ranges. + + The sub ranges. + + + + Ensures the bounds are valid values for the object passed in. + + + Returns false if the object is not indexable or if the numeric range is out-of-bounds. + + The value to check + + + + Ensures the bounds are valid values for a collection with the specified length. + + + Returns false if the numeric range is out-of-bounds. + + The value to check is within range + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + The object to test against this + + + + Returns true if the objects are equal. + + + Returns true if the objects are equal. + + The first value to compare + The second value to compare + + + + Returns true if the objects are not equal. + + + Returns true if the objects are not equal. + + The first value to compare + The second value to compare + + + + Returns a suitable hash code for the object. + + + Returns a suitable hash code for the object. + + + + + Returns the string representation of the object. + + + Returns the string representation of the object. + + + + + Formats the numeric range as a string. + + + Formats the numeric range as a string. + + (Unused) Always pass NULL/NOTHING + (Unused) Always pass NULL/NOTHING + Thrown when a non null/nothing is passed for either parameter + + + + An empty numeric range. + + + An empty numeric range. + + + + + Parses a string representing a numeric range. + + The text to parse, prior to checking it is within the allowed range + The parsed range. + The reason for any error. + + + + Applies the multidimensional index range. + + + + + Applies the multidimensional index range. + + + + + Applys the index range to an array value. + + + Replaces the value + + The array to subset. + The reason for the failure if the range could not be applied. + + + + Parses a string representing a numeric range. + + + Parses a string representing a numeric range. + + The text to parse, prior to checking it is within the allowed range + Thrown when the numeric value of the parsed text is out of range + + + + A template list class that can be used to expose members of immutable classes. + + + + + Wraps an exising list. + + + + + Makes a shallow copy of an exising list. + + + + + The number of items in the list. + + + + + Adds new item to the list (not supported). + + + + + Removes all item from the list (not supported). + + + + + Returns true if the item is in the list. + + + + + Copies the elements of the list to an array. + + + + + Indicates that the list is read only. + + + + + Removes an item from the list (not supported). + + + + + Returns the list of the specified item in the list. + + + + + Inserts an item into the list (not supported). + + + + + Removes an item from the list (not supported). + + + + + Gets the item at the specified index. + + + + + Returns an enumerator for the list. + + + + + Returns an enumerator for the list. + + + + + Creates a read-only list from a list. + + The list of values. + The read-only list. + + + + Creates a read-only list from a list. + + The list of values. + The read-only list. + + + + Adds an item to the . + + + + + Removes all items from the . + + + + + Determines whether the contains a specific value. + + + + + Determines the index of a specific item in the . + + + + + Inserts an item to the at the specified index. + + + + + Gets a value indicating whether the has a fixed size. + + + + + Gets a value indicating whether the is read-only. + + + + + Removes the first occurrence of a specific object from the . + + + + + Removes the item at the specified index. + + + + + Gets or sets the at the specified index. + + + + + Copies the elements of the to an , starting at a particular index. + + + + + Gets the number of elements contained in the . + + + + + Gets a value indicating whether access to the is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the . + + + + + A class that stores a relative path string + + + + + Initializes the object the default values. + + + + + Initializes the object the default values. + + + + + The elements in the relative path. + + + The elements in the relative path. + + + + + Updates the namespace table with URI used in the relative path. + + The current table. + The target table. + + + + Updates the path to use the indexes from the target table. + + The NamespaceTable which the RelativePathString currently references + The NamespaceTable which the RelativePathString should reference + + + + Formats the relative path as a string. + + + Formats the relative path as a string. + + + + + Formats the relative path as a string. + + + Formats the relative path as a string. + + (Unused) Always pass null + (Unused) Always pass null + Thrown if non-null parameters are passed + + + + Returns true if the relative path does not specify any elements. + + + + + Parses a string representing a relative path and translates the namespace indexes. + + + Parses a string representing a relative path. + + Thrown if any errors occur during parsing + + + + Parses a string representing a relative path. + + + Parses a string representing a relative path. + + Thrown if any errors occur during parsing + + + + A element in a relative path string. + + + + + Initializes the object from a RelativePathElement + + + + + Initializes the object the default values. + + + + + The type of element. + + + + + The browse name of the reference type to follow. + + + + + Whether to include subtypes of the reference type. + + + + + The browse name of the target to find. + + + + + Formats the relative path element as a string. + + + + + Formats the numeric range as a string. + + (Unused) Always pass null + (Unused) Always pass null + Thrown if non-null parameters are passed + + + + Extracts a relative path element from a string. + + The string read stream containing the text to convert to a RelativePathStringElement + + + + Extracts a browse name with an optional namespace prefix from the reader. + + + + + Encodes a name using the relative path syntax. + + + + + The type of relative path element. + + + + + Any hierarchial reference should be followed ('/'). + + + + + Any component reference should be followed ('.'). + + + + + The forward reference identified by the browse name should be followed. + + + + + The inverse reference identified by the browse name should be followed. + + + + + Stores context information associated with a UA server that is used during message processing. + + + + + Initializes the object with default values. + + + + + The default context for the process (used only during XML serialization). + + + + + The default context for the thread (used only during XML serialization). + + + + + Returns the object used to synchronize access to the context. + + + + + The maximum length for any string, byte string or xml element. + + + + + The maximum length for any array. + + + + + The maximum length for any ByteString. + + + + + The maximum length for any Message. + + + + + The maximum nesting level accepted while encoding or decoding objects. + + + + + The table of namespaces used by the server. + + + + + The table of servers used by the server. + + + + + The factory used to create encodeable objects. + + + + + A class that combines the status code and diagnostic info structures. + + + + + Initializes the object with default values. + + + + + Constructs a object by specifying each property. + + + + + Copy constructor taking an inner result as second argument, to build chains of service results. + + + + + + + Constructs a object by specifying each property. + + + + + Constructs a object by specifying each property. + + + + + Constructs a object by specifying each property. + + + + + Constructs a object by specifying each property. + + + + + Constructs a object by specifying each property. + + + + + Constructs a object by specifying each property. + + + + + Constructs a object from a StatusCode. + + + + + Constructs a object from a StatusCode. + + + + + Constructs a object by specifying each property. + + + The innerException is used to construct the inner result. + + + + + Constructs a object by specifying each property. + + + The innerException is used to construct the innerResult. + + + + + Constructs a object by specifying each property. + + + The innerException is used to construct the innerResult. + + + + + Constructs a object by specifying each property. + + + The innerException is used to construct the innerResult. + + + + + Constructs a object by specifying each property. + + + The innerException is used to construct the innerResult. + + + + + Constructs a object from an exception. + + + The code, symbolicId, namespaceUri and localizedText parameters are ignored for ServiceResultExceptions. + + + + + Constructs a object from an exception. + + + The defaultCode and defaultLocalizedText parameters are ignored for ServiceResultExceptions. + + + + + Constructs a object from an exception. + + + The code, symbolicId and namespaceUri parameters are ignored for ServiceResultExceptions. + + + + + Constructs a object from an exception. + + + The code parameter is ignored for ServiceResultExceptions. + + + + + Constructs a object from an exception. + + + + + Initializes the object with a status code and a diagnostic info structure. + + + + + Initializes the object with a status code and a diagnostic info structure. + + + + + A result representing a good status. + + + + + Creates a new instance of a ServiceResult + + + + + Creates a new instance of a ServiceResult + + + + + Creates a new instance of a ServiceResult + + + + + Creates a new instance of a ServiceResult + + + + + Returns true if the status code is good. + + + + + Returns true if the status is bad or uncertain. + + + + + Returns true if the status code is uncertain. + + + + + Returns true if the status is good or uncertain. + + + + + Returns true if the status code is bad. + + + + + Returns true if the status is good or uncertain. + + + + + Converts a 32-bit code a ServiceResult object. + + + + + Converts a StatusCode a ServiceResult object. + + + + + Converts a StatusCode object to a 32-bit code. + + + + + Looks up the symbolic name for a status code. + + + + + Returns a string containing all nested exceptions. + + + + + The status code associated with the result. + + + + + The status code associated with the result. + + + + + The namespace that qualifies symbolic identifier. + + + + + The qualified name of the symbolic identifier associated with the status code. + + + + + The localized description for the status code. + + + + + Additional diagnostic/debugging information associated with the operation. + + + + + Nested error information. + + + + + Converts the value to a human readable string. + + + + + Returns a formatted string with the contents of exception. + + + + + Looks up a string in a string table. + + + + + Extract a default message from an exception. + + + + + + An exception thrown when a UA defined error occurs. + + + + + The default constructor. + + + + + Initializes the exception with a message. + + + + + Initializes the exception with a message and an exception. + + + + + Initializes the exception with a message and an exception. + + + + + Initializes the exception with a status code. + + + + + Initializes the exception with a status code and a message. + + + + + Initializes the exception with a status code and an inner exception. + + + + + Initializes the exception with a status code, a message and an inner exception. + + + + + Initializes the exception with a Result object. + + + + + The identifier for the status code. + + + + + The namespace that qualifies symbolic identifier. + + + + + The qualified name of the symbolic identifier associated with the status code. + + + + + The localized description for the status code. + + + + + Additional diagnostic/debugging information associated with the operation. + + + + + Returns the status result associated with the exception. + + + + + Nested error information. + + + + + Returns a formatted string with the contents of exception. + + + + + Creates a new instance of a ServiceResultException + + + + + Creates a new instance of a ServiceResultException + + + + + Creates a new instance of a ServiceResultException + + + + + Extracts an exception message from a Result object. + + + + + Wraps string constants defined in the class. + + + + + The set of built-in data types for UA type descriptions. + + + An enumeration that lists all of the built-in data types for OPC UA Type Descriptions. + + + + + An invalid or unspecified value. + + + + + A boolean logic value (true or false). + + + + + An 8 bit signed integer value. + + + + + An 8 bit unsigned integer value. + + + + + A 16 bit signed integer value. + + + + + A 16 bit signed integer value. + + + + + A 32 bit signed integer value. + + + + + A 32 bit unsigned integer value. + + + + + A 64 bit signed integer value. + + + + + A 64 bit unsigned integer value. + + + + + An IEEE single precision (32 bit) floating point value. + + + + + An IEEE double precision (64 bit) floating point value. + + + + + A sequence of Unicode characters. + + + + + An instance in time. + + + + + A 128-bit globally unique identifier. + + + + + A sequence of bytes. + + + + + An XML element. + + + + + An identifier for a node in the address space of a UA server. + + + + + A node id that stores the namespace URI instead of the namespace index. + + + + + A structured result code. + + + + + A string qualified with a namespace. + + + + + A localized text string with an locale identifier. + + + + + An opaque object with a syntax that may be unknown to the receiver. + + + + + A data value with an associated quality and timestamp. + + + + + Any of the other built-in types. + + + + + A diagnostic information associated with a result code. + + + + + The following BuiltInTypes are for coding convenience + internally used in the .NET Standard library. + The enumerations are not used for encoding/decoding. + + + Any numeric value. + + + + + A signed integer. + + + + + An unsigned integer. + + + + + An enumerated value + + + + + Stores information about a type. + + + + + Constructs an unknown type. + + + + + Construct the object with a built-in type and a value rank. + + Type of the built in. + The value rank. + + + + Returns the data type id that describes a value. + + The value instance to check the data type. + An data type identifier for a node in a server's address space. + + + + Returns the data type id that describes a value. + + The framework type. + An data type identifier for a node in a server's address space. + + + + Returns the data type id that describes a value. + + The type info. + An data type identifier for a node in a server's address space. + + + + Returns the array rank for a value. + + The value instance to check the array rank. + The array rank of the + + + + Returns the array rank for a type. + + The framework type to check the array rank. + The array rank of the + + + + Returns the BuiltInType type for the DataTypeId. + + The data type identifier. + An for + + + + Returns true if the built-in type is a numeric type. + + The built-in type to check. + + True if the built-in type is a numeric type. + + + + + Returns true if the built-in type is a type that cannot be null. + + The built in type to check. + + True if the built-in type is a type that cannot be null. + + + + + Returns true if a 'null' value exists for the built-in type + in all data encodings. + + The built in type to check. + + True if the built-in type is a type that is nullable. + + + + + Returns the BuiltInType type for the DataTypeId. + + The data type identyfier for a node in a server's address space.. + The type tree for a server. . + + A value for + + + + + Returns the system type for the datatype. + + The datatype id. + The factory used to store and retrieve underlying OPC UA system types. + The system type for the . + + + + A constant representing an unknown type. + + The constant representing an unknown type. + + + + The built-in type. + + The type of the type represented by this instance. + + + + The value rank. + + The value rank of the type represented by this instance. + + + + Returns the type info if the value is an instance of the data type with the specified value rank. + + The value instance to check. + The expected data type identifier for a node. + The expected value rank. + The namespace URI's. + The type tree for a server. + + An data type info if the value is an instance of the data type with the specified value rank; otherwise null. + + + + + Returns the data type id that describes a value. + + The value to describe. + The namespace uris. + The type tree for a server. + Returns the data type identifier that describes a value. + + + + Returns the system type a scalar or array instance of the built-in type. + + A built-in type. + The value rank. + A system type equivalent to the built-in type. + + + + Returns the type info for the provided value. + + The value. + instance storing information about the type. + + + + Returns the type info for the specified system type. + + The specified system (framework) type. + instance storing information equivalent to the type. + + + + Returns the default value for the specified built-in type. + + The Built-in type. + The default value. + + + + Returns the default value for the specified data type and value rank. + + The data type. + The value rank. + The default value. + + + + Returns the default value for the specified data type and value rank. + + The data type. + The value rank. + The type tree for a server. + A default value. + + + + Returns the default value for the specified built-in type. + + The built-in type. + The dimensions. + The default value for the specified built-in type + + + + Casts a value to the specified target type. + + The instance of a source value. + Type of the target. + Return casted value. + if imposible to cast. + + + + Casts a value to the specified target type. + + The instance of a source value. + Type of the source. + Type of the target. + Return casted value. + if imposible to cast. + + + + Converts the array using the specified conversion function. + + The destination array (must have the same size as the source array). + The data type of the elements in the destination array. + The source array. + The data type of the elements in the source array. + The handler which does the conversion. + + + + Converts the array. + + The source array. + The type of the source array. + The type of the converted array. + The handler which does the conversion. + The converted array. + + + + A delegate for a function that converts an array element. + + The element to be converted. + The type of the source element. + The type of the converted value. + The converted + + + + Maps the type name to a built-in type. + + + + + Converts a value to a Boolean + + + + + Converts a value to a SByte + + + + + Converts a value to a Byte + + + + + Converts a value to a Int16 + + + + + Converts a value to a UInt16 + + + + + Converts a value to a Int32 + + + + + Converts a value to a UInt32 + + + + + Converts a value to a Int64 + + + + + Converts a value to a UInt64 + + + + + Converts a value to a Float + + + + + Converts a value to a Double + + + + + Converts a value to a String + + + + + Converts a value to a DateTime + + + + + Converts a value to a Guid + + + + + Converts a value to a ByteString + + + + + Converts a value to a XmlElement + + + + + Converts a value to a NodeId + + + + + Converts a value to a ExpandedNodeId + + + + + Converts a value to a StatusCode + + + + + Converts a value to a QualifiedName + + + + + Converts a value to a LocalizedText + + + + + Converts a value to a Variant + + + + + Delegate for a function used to cast a value to the specified type. + + + + + Casts a scalar or array value to the specified type. + + + + + Casts an array to an array of the specified type. + + + + + Constants for scalar types. + + + + + A boolean logic value (true or false). + + + + + An 8 bit signed integer value. + + + + + An 8 bit unsigned integer value. + + + + + A 16 bit signed integer value. + + + + + A 16 bit signed integer value. + + + + + A 32 bit signed integer value. + + + + + A 32 bit unsigned integer value. + + + + + A 64 bit signed integer value. + + + + + A 64 bit unsigned integer value. + + + + + An IEEE single precision (32 bit) floating point value. + + + + + An IEEE double precision (64 bit) floating point value. + + + + + A sequence of Unicode characters. + + + + + An instance in time. + + + + + A 128-bit globally unique identifier. + + + + + A sequence of bytes. + + + + + An XML element. + + + + + An identifier for a node in the address space of a UA server. + + + + + A node id that stores the namespace URI instead of the namespace index. + + + + + A structured result code. + + + + + A string qualified with a namespace. + + + + + A localized text string with an locale identifier. + + + + + An opaque object with a syntax that may be unknown to the receiver. + + + + + A data value with an associated quality and timestamp. + + + + + Any of the other built-in types. + + + + + A diagnostic information associated with a result code. + + + + + Constants for one dimensional array types. + + + + + A boolean logic value (true or false). + + + + + An 8 bit signed integer value. + + + + + An 8 bit unsigned integer value. + + + + + A 16 bit signed integer value. + + + + + A 16 bit signed integer value. + + + + + A 32 bit signed integer value. + + + + + A 32 bit unsigned integer value. + + + + + A 64 bit signed integer value. + + + + + A 64 bit unsigned integer value. + + + + + An IEEE single precision (32 bit) floating point value. + + + + + An IEEE double precision (64 bit) floating point value. + + + + + A sequence of Unicode characters. + + + + + An instance in time. + + + + + A 128-bit globally unique identifier. + + + + + A sequence of bytes. + + + + + An XML element. + + + + + An identifier for a node in the address space of a UA server. + + + + + A node id that stores the namespace URI instead of the namespace index. + + + + + A structured result code. + + + + + A string qualified with a namespace. + + + + + A localized text string with an locale identifier. + + + + + An opaque object with a syntax that may be unknown to the receiver. + + + + + A data value with an associated quality and timestamp. + + + + + Any of the other built-in types. + + + + + A diagnostic information associated with a result code. + + + + + Formats the type information as a string. + + + + + Formats the type information as a string. + + + + + Determines if the specified object is equal to the object. + + + Determines if the specified object is equal to the object. + + + + + Returns a suitable hash code. + + + + + Defines various static utility functions. + + + + + The URI scheme for the HTTP protocol. + + + + + The URI scheme for the HTTPS protocol. + + + + + The URI scheme for the UA TCP protocol. + + + + + The URI scheme for the UA TCP protocol over Secure WebSockets. + + + + + The URI scheme for the UDP protocol. + + + + + The URI schemes which are supported in the core server. + + + + + The default port for the UA TCP protocol. + + + + + The default port for the UA TCP protocol over WebSockets. + + + + + The urls of the discovery servers on a node. + + + + + The default certificate store's type. + + + + + The path to the default certificate store. + + + + + The default LocalFolder. + + + + + The full name of the Opc.Ua.Core assembly. + + + + + The name of the Opc.Ua.Core assembly. + + + + + List of known default bindings hosted in other assemblies. + + + + + The possible trace output mechanisms. + + + + + No tracing + + + + + Only write to file (if specified). Default for Release mode. + + + + + Write to debug trace listeners and a file (if specified). Default for Debug mode. + + + + + The masks used to filter trace messages. + + + + + Do not output any messages. + + + + + Output error messages. + + + + + Output informational messages. + + + + + Output stack traces. + + + + + Output basic messages for service calls. + + + + + Output detailed messages for service calls. + + + + + Output basic messages for each operation. + + + + + Output detailed messages for each operation. + + + + + Output messages related to application initialization or shutdown + + + + + Output messages related to a call to an external system. + + + + + Output messages related to security + + + + + Output all messages. + + + + + Sets the output for tracing (thead safe). + + + + + Gets the current trace mask settings. + + + + + Sets the mask for tracing (thead safe). + + + + + Returns Tracing class instance for event attaching. + + + + + Writes a trace statement. + + + + + Sets the path to the log file to use for tracing. + + + + + Writes an informational message to the trace log. + + + + + Writes an informational message to the trace log. + + + + + Writes an exception/error message to the trace log. + + + + + Writes an exception/error message to the trace log. + + + + + Writes a message to the trace log. + + + + + Writes a message to the trace log. + + + + + Writes a message to the trace log. + + + + + Replaces a prefix enclosed in '%' with a special folder or environment variable path (e.g. %ProgramFiles%\MyCompany). + + + + + Maps a special folder to environment variable with folder path. + + + + + Replaces a prefix enclosed in '%' with a special folder or environment variable path (e.g. %ProgramFiles%\MyCompany). + + + + + Finds the file by search the common file folders and then bin directories in the source tree + + Name of the file. + The path to the file. Null if not found. + + + + Checks if the file path is a relative path and returns an absolute path relative to the EXE location. + + + + + Checks if the file path is a relative path and returns an absolute path relative to the EXE location. + + + + + Creates an empty file. + + + + + Checks if the file path is a relative path and returns an absolute path relative to the EXE location. + + + + + Checks if the file path is a relative path and returns an absolute path relative to the EXE location. + + + + + Truncates a file path so it can be displayed in a limited width view. + + + + + Supresses any exceptions while disposing the object. + + + Writes errors to trace output in DEBUG builds. + + + + + The earliest time that can be represented on with UA date/time values. + + + + + Normalize a DateTime to Opc Ua UniversalTime. + + + + + Returns an absolute deadline for a timeout. + + + + + Returns a timeout as integer number of milliseconds + + + + + + + + + + + If the platform returns a FQDN, only the host name is returned. + + + + Get the FQDN of the local computer. + + + + + Normalize ipv4/ipv6 address for comparisons. + + + + + Replaces the localhost domain with the current host name. + + + + + Replaces the cert subject name DC=localhost with the current host name. + + + + + Parses a URI string. Returns null if it is invalid. + + + + + Parses the URLs, returns true of they have the same domain. + + The first URL to compare. + The second URL to compare. + True if they have the same domain. + + + + Checks if the domains are equal. + + The first domain to compare. + The second domain to compare. + True if they are equal. + + + + Substitutes the local machine name if "localhost" is specified in the instance uri. + + + + + Increments a identifier (wraps around if max exceeded). + + + + + Increments a identifier (wraps around if max exceeded). + + + + + Safely converts an UInt32 identifier to a Int32 identifier. + + + + + Safely converts an Int32 identifier to a UInt32 identifier. + + + + + Converts a multidimension array to a flat array. + + + The higher rank dimensions are written first. + e.g. a array with dimensions [2,2,2] is written in this order: + [0,0,0], [0,0,1], [0,1,0], [0,1,1], [1,0,0], [1,0,1], [1,1,0], [1,1,1] + + + + + Converts a buffer to a hexadecimal string. + + + + + Converts a hexadecimal string to an array of bytes. + + + + + Formats an object using the invariant locale. + + + + + Formats a message using the invariant locale. + + + + + Checks if a string is a valid locale identifier. + + + + + Returns the language identifier from a locale. + + + + + Returns the localized text from a list of available text + + + + + Returns a deep copy of the value. + + + + + Checks if two values are equal. + + + + + Tests if the specified string matches the specified pattern. + + + + + Returns the TimeZone information for the current local time. + + The TimeZone information for the current local time. + + + + Looks for an extension with the specified type and uses the DataContractSerializer to parse it. + + The type of extension. + The list of extensions to search. + Name of the element (use type name if null). + + The deserialized extension. Null if an error occurs. + + + + + Looks for an extension with the specified type and uses the DataContractSerializer to serializes its replacement. + + The type of the extension. + The list of extensions to update. + Name of the element (use type name if null). + The value. + + Adds a new extension if the it does not already exist. + Deletes the extension if the value is null. + The containing element must use the name and namespace uri specified by the DataContractAttribute for the type. + + + + + Returns the public static field names for a class. + + + + + Returns the data member name for a property. + + + + + Returns the numeric constant associated with a name. + + + + + Returns the linker timestamp for an assembly. + + + + + Returns the major/minor version number for an assembly formatted as a string. + + + + + Returns the build/revision number for an assembly formatted as a string. + + + + + Appends a list of byte arrays. + + + + + Creates a X509 certificate object from the DER encoded bytes. + + + + + Creates a X509 certificate collection object from the DER encoded bytes. + + The certificate data. + + + + + Compare Nonce for equality. + + + + + Cryptographic Nonce helper functions. + + + + + Generates a Nonce for cryptographic functions. + + + + + Returns the length of the symmetric encryption key for a security policy. + + + + + Validates the nonce for a message security mode and security policy. + + + + + Validates the nonce for a message security mode and a minimum length. + + + + + Generates a Pseudo random sequence of bits using the P_SHA1 alhorithm. + + + + + Generates a Pseudo random sequence of bits using the P_SHA256 alhorithm. + + + + + Generates a Pseudo random sequence of bits using the HMAC algorithm. + + + + + Checks if the target is in the list. Comparisons ignore case. + + + + + Lazy helper to allow runtime check for Mono. + + + + + Determine if assembly uses mono runtime. + + true if running on Mono runtime + + + + Used as underlying tracing object for event processing. + + + + + Private constructor. + + + + + Public Singleton Instance getter. + + + + + Occurs when a trace call is made. + + + + + The event arguments provided when a trace event is raised. + + + + + Initializes a new instance of the TraceEventArgs class. + + The trace mask. + The format. + The message. + The exception. + The arguments. + + + + Gets the trace mask. + + + + + Gets the format. + + + + + Gets the arguments. + + + + + Gets the message. + + + + + Gets the exception. + + + + diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Security.Certificates.dll b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Security.Certificates.dll new file mode 100644 index 0000000000000000000000000000000000000000..e5f83bb86fce4132db2d68488cd53752c2fe6329 GIT binary patch literal 51712 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 VvbIy;Ui=UDL<@gh*#Er;{s98OEJFYQ literal 0 HcmV?d00001 diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Security.Certificates.xml b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Security.Certificates.xml new file mode 100644 index 0000000..53f9596 --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/Opc.Ua.Security.Certificates.xml @@ -0,0 +1,1721 @@ + + + + Opc.Ua.Security.Certificates + + + + + Converts a buffer to a hexadecimal string. + + + + + Converts a hexadecimal string to an array of bytes. + + + + + Writer for Public Key parameters. + + + https://www.itu.int/rec/T-REC-X.690-201508-I/en + section 8.3 (Encoding of an integer value). + + The writer + The key parameter + + + + Oid constants defined for ASN encoding/decoding. + + + + + The Oid string of the Digital Signature Algorithm (DSA) subject public key. + + + + + The Oid string for the RSA encryption scheme with PKCS#1. + + + + + The Oid string for the RSA encryption scheme with OAEP. + + + + + The Oid string for the RSA encryption scheme with PSS. + + + + + The Oid string for RSA signature, PKCS#1 padding with SHA1 hash. + + + + + The Oid string for RSA signature, PKCS#1 padding with SHA256 hash. + + + + + The Oid string for RSA signature, PKCS#1 padding with SHA384 hash. + + + + + The Oid string for RSA signature, PKCS#1 padding with SHA512 hash. + + + + + The Oid string for ECDsa signature with SHA1 hash. + + + + + The Oid string for ECDsa signature with SHA256 hash. + + + + + The Oid string for ECDsa signature with SHA384 hash. + + + + + The Oid string for ECDsa signature with SHA512 hash. + + + + + The Oid string for the CRL extension of a CRL Number. + + + + + The Oid string for the CRL extension of a CRL Reason Code. + + + + + The Oid string for Transport Layer Security(TLS) World Wide Web(WWW) + server authentication. + + + + + The Oid string for Transport Layer Security(TLS) World Wide Web(WWW) + client authentication. + + + + + The Oid string for Authority Information access. + + + + + The Oid string for Online Certificate Status Protocol. + + + + + The Oid string for Certificate Authority Issuer. + + + + + The Oid string for CRL Distribution Point. + + + + + Get the RSA oid for a hash algorithm signature. + + The hash algorithm name. + + + + Get the ECDsa oid for a hash algorithm signature. + + The hash algorithm name. + + + + Get the hash algorithm used to sign a certificate. + + The signature algorithm oid. + + + + Defines internal helper functions to implement RSA cryptography. + + + + + Dispose RSA object only if not running on Mono runtime. + Workaround due to a Mono bug in the X509Certificate2 implementation of RSA. + see also: https://github.com/mono/mono/issues/6306 + On Mono GetRSAPrivateKey/GetRSAPublickey returns a reference instead of a disposable object. + Calling Dispose on RSA makes the X509Certificate2 keys unusable on Mono. + Only call dispose when using .Net and .Net Core runtimes. + + RSA object returned by GetRSAPublicKey/GetRSAPrivateKey + + + + Lazy helper to allow runtime check for Mono. + + + + + Determine if assembly uses mono runtime. + + true if running on Mono runtime + + + + The defaults used in the library for Certificates. + + + + + The default key size for RSA certificates in bits. + + + Supported values are 1024(deprecated), 2048, 3072 or 4096. + + + + + The min supported size for a RSA key. + + + + + The max supported size for a RSA key. + + + + + The default hash algorithm to use for signatures. + + + Supported values are SHA-1(deprecated) or 256, 384 and 512 for SHA-2. + + + + + The default lifetime of certificates in months. + + + + + The recommended min serial numbers length in octets. + + + + + The max serial numbers length in octets. + + + + + The Opc.Ua.Security.Certificates namespace defines classes which can be used to implement + functions to create X509 certificates, to encode and decode X509 Certificate Revocation Lists (CRL), + X509 Certificate Signing Requests (CSR) and related X509 extensions needed for the OPC UA certificate + specification. + + + + + + Stores the authority key identifier extension. + + + id-ce-authorityKeyIdentifier OBJECT IDENTIFIER ::= { id-ce 35 } + AuthorityKeyIdentifier ::= SEQUENCE { + keyIdentifier[0] KeyIdentifier OPTIONAL, + authorityCertIssuer[1] GeneralNames OPTIONAL, + authorityCertSerialNumber[2] CertificateSerialNumber OPTIONAL + } + KeyIdentifier::= OCTET STRING + + + + + Creates an empty extension. + + + + + Creates an extension from ASN.1 encoded data. + + + + + Creates an extension from ASN.1 encoded data. + + + + + Build the X509 Authority Key extension. + + The subject key identifier + + + + Build the X509 Authority Key extension. + + The subject key identifier as a byte array. + The distinguished name of the issuer. + The serial number of the issuer certificate as little endian byte array. + + + + Creates an extension from ASN.1 encoded data. + + + + + Returns a formatted version of the Authority Key Identifier as a string. + + + + + Initializes the extension from ASN.1 encoded data. + + + + + The OID for a Authority Key Identifier extension. + + + + + The alternate OID for a Authority Key Identifier extension. + + + + + The identifier for the key as a little endian hexadecimal string. + + + + + The identifier for the key as a byte array. + + + + + A list of distinguished names for the issuer. + + + + + The serial number of the authority key as a big endian hexadecimal string. + + + + + The serial number of the authority key as a byte array in little endian order. + + + + + Authority Key Identifier extension string + definitions see RFC 5280 4.2.1.1 + + + + + The CRL Number extension. + + + id-ce-cRLNumber OBJECT IDENTIFIER::= { id-ce 20 } + CRLNumber::= INTEGER(0..MAX) + + + + + Creates an empty extension. + + + + + Creates an extension from ASN.1 encoded data. + + + + + Creates an extension from an Oid and ASN.1 encoded raw data. + + + + + Creates an extension from ASN.1 encoded data. + + + + + Build the CRL Number extension (for CRL extensions). + + + + + Returns a formatted version of the Abstract Syntax Notation One (ASN.1)-encoded data as a string. + + + + + Initializes the extension from ASN.1 encoded data. + + + + + The OID for a CRL Number extension. + + + + + Gets the CRL Number. + + The uris. + + + + Encode the CRL Number extension. + + + + + Decode CRL Number. + + + + + CRL Number extension string + definitions see RFC 5280 5.2.3 + + + + + Supporting functions for X509 extensions. + + + + + Find a typed extension in a certificate. + + The type of the extension. + The certificate with extensions. + + + + Find a typed extension in a extension collection. + + The type of the extension. + The extensions to search. + + + + Build the Authority information Access extension. + + Array of CA Issuer Urls + optional, the OCSP responder + + + + Build the CRL Distribution Point extension. + + The CRL distribution point + + + + Read an ASN.1 extension sequence as X509Extension object. + + The ASN reader. + + + + Write an extension object as ASN.1. + + + + + + + Build the CRL Reason extension. + + + + + Build the Authority Key Identifier from an Issuer CA certificate. + + The issuer CA certificate + + + + Build the CRL number. + + + + + Patch serial number in a Url. byte version. + + + + + Patch serial number in a Url. string version. + + + + + The subject alternate name extension. + + + + id-ce-subjectAltName OBJECT IDENTIFIER::= { id-ce 17 } + + SubjectAltName::= GeneralNames + + GeneralNames::= SEQUENCE SIZE(1..MAX) OF GeneralName + + GeneralName ::= CHOICE { + otherName [0] OtherName, + rfc822Name[1] IA5String, + dNSName[2] IA5String, + x400Address[3] ORAddress, + directoryName[4] Name, + ediPartyName[5] EDIPartyName, + uniformResourceIdentifier[6] IA5String, + iPAddress[7] OCTET STRING, + registeredID[8] OBJECT IDENTIFIER + } + + OtherName::= SEQUENCE { + type-id OBJECT IDENTIFIER, + value[0] EXPLICIT ANY DEFINED BY type - id + } + + EDIPartyName::= SEQUENCE { + nameAssigner[0] DirectoryString OPTIONAL, + partyName[1] DirectoryString + } + + + + + + Creates an empty extension. + + + + + Creates an extension from ASN.1 encoded data. + + + + + Creates an extension from an Oid and ASN.1 encoded raw data. + + + + + Creates an extension from ASN.1 encoded data. + + + + + Build the Subject Alternative name extension (for OPC UA application certs). + + The application Uri + The domain names. DNS Hostnames, IPv4 or IPv6 addresses + + + + Returns a formatted version of the Abstract Syntax Notation One (ASN.1)-encoded data as a string. + + + + + Initializes the extension from ASN.1 encoded data. + + + + + The OID for a Subject Alternate Name extension. + + + + + The OID for a Subject Alternate Name 2 extension. + + + + + Gets the uris. + + The uris. + + + + Gets the domain names. + + The domain names. + + + + Gets the IP addresses. + + The IP addresses. + + + + Create a normalized IPv4 or IPv6 address from a 4 byte or 16 byte array. + + + + + Encode the Subject Alternative name extension. + + + + + Encode a list of general Names in a SAN builder. + + The subject alternative name builder + The general Names to add + + + + Decode if RawData is yet undecoded. + + + + + Decode URI, DNS and IP from Subject Alternative Name. + + + Only general names relevant for Opc.Ua are decoded. + + + + + Initialize the Subject Alternative name extension. + + The application Uri + The general names. DNS Hostnames, IPv4 or IPv6 addresses + + + + Subject Alternate Name extension string + definitions see RFC 5280 4.2.1.7 + + + + + Methods or read PEM data. + + + + + Import a PKCS#8 private key or RSA private key from PEM. + The PKCS#8 private key may be encrypted using a password. + + The PEM datablob as byte array. + The password to use (optional). + The RSA private key. + + + + Write certificate data in PEM format. + + + + + Returns a byte array containing the CSR in PEM format. + + + + + Returns a byte array containing the cert in PEM format. + + + + + Returns a byte array containing the public key in PEM format. + + + + + Returns a byte array containing the RSA private key in PEM format. + + + + + Returns a byte array containing the private key in PEM format. + + + + + Builds a Certificate. + + + + + Create a Certificate builder. + + + + + Create a Certificate builder. + + + + + Constructor of a Certificate builder. + + + + + Constructor of a Certificate builder. + + + + + + + + + + + + + + + + + + + + + + + Create some defaults needed to build the certificate. + + + + + Create the X509 extensions to build the certificate. + + A certificate request. + If the certificate is for ECDsa, not RSA. + + + + Set the basic constraints for various cases. + + + + + Builds a Certificate. + + + + + Initialize a Certificate builder. + + + + + Initialize a Certificate builder. + + + + + Default constructor. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The issuer CA certificate. + + + + + Validate and adjust settings to avoid creation of invalid certificates. + + + + + Create a new cryptographic random serial number. + + + + + If the certificate is a CA. + + + + + The path length constraint to sue for a CA. + + + + + The serial number length in octets. + + + + + If the serial number is preset by the user. + + + + + The serial number as a little endian byte array. + + + + + The collection of X509Extension to add to the certificate. + + + + + The RSA public to use when if a certificate is signed. + + + + + The size of a RSA key pair to create. + + + + + The ECDsa public to use when if a certificate is signed. + + + + + The ECCurve to use. + + + + + The certificate builder interface. + + + + + The interface to set an issuer. + + + + + The interface to set a public key. + + + + + The interface to set key parameters. + + + + + The interface to create a certificate. + + + + + The interface to use a signature generator. + + + + + The interface to create a RSA based certifcate. + + + + + The interface to create a ECDSA based certifcate. + + + + + The interface to set the mandatory certificate + fields for a certificate builder. + + + + + Set the length of the serial number. + + + The length of the serial number shall + not exceed octets. + + + + + + Set the value of the serial number directly + using a byte array. + + + The length of the serial number shall + not exceed octets. + + The serial number as an array of bytes in little endian order. + + + + Create a new serial number and preserve + it until the certificate is created. + + + The serial number may be needed to create an extension. + This function makes it available before the + cert is created. + + + + + Set the date when the certificate becomes valid. + + The date. + + + + Set the certificate expiry date. + + The date after which the certificate is expired. + + + + Set the lifetime of the certificate using Timespan. + + The lifetime as . + + + + Set the lifetime of the certificate in month starting now. + + The lifetime in months. + + + + Set the hash algorithm to use for the signature. + + The hash algorithm name. + + + + Set the CA flag and the path length constraints of the certificate. + + + The path length constraint to use. + -1 corresponds to None, other values constrain the chain length. + + + + + Add an extension to the certificate in addition to the default extensions. + + + By default the following X509 extensions are added to a certificate, + some depending on certificate type: + CA/SubCA/OPC UA application: + X509BasicConstraintsExtension + X509SubjectKeyIdentifierExtension + X509AuthorityKeyIdentifierExtension + X509KeyUsageExtension + OPC UA application: + X509SubjectAltNameExtension + X509EnhancedKeyUsageExtension + Adding a default extension to the list overrides the default + value of the extensions. + Adding an extension with a already existing Oid overrides + the existing extension in the list. + + The extension to add + + + + The interface to select an issuer for the cert builder. + + + + + Set the issuer certificate which is used to sign the certificate. + + + The issuer certificate must contain a private key which matches + the selected sign algorithm if no generator is avilable. + If a is used for signing the + the issuer certificate can be set with a public key to create + the X509 extensions. + + The issuer certificate. + + + + The interface to select the RSA key size parameter. + + + + + Set the RSA key size in bits. + + The size of the RSA key. + + + + The interface to select the ECCurve. + + + + + Set the ECC Curve parameter. + + The ECCurve. + + + + The interface to set a RSA public key for a certificate. + + + + + Set the public key using a ASN.1 encoded byte array. + + The public key as encoded byte array. + + + + Set the public key using a RSA public key. + + The RSA public key. + + + + The interface to set a ECDSA public key for a certificate. + + + + + Set the public key using a ASN.1 encoded byte array. + + The public key as encoded byte array. + + + + Set the public key using a ECDSA public key. + + The ECDsa public key. + + + + The interface to create a certificate using the RSA algorithm. + + + + + Create the RSA certificate with signature. + + The signed certificate. + + + + The interface to create a certificate using a signature generator. + + + + + Create the RSA certificate with signature using an external generator. + + The signed certificate. + + + + The interface to create a certificate using the ECDSA algorithm. + + + + + Create the ECC certificate with signature. + + The signed certificate. + + + + The interface to create a certificate using a signature generator for ECDSA. + + + + + Create the ECDSA certificate with signature using an external generator. + + The signed certificate. + + + + Properties of a X.509v3 certificate. + + + + + The subject distinguished name from a certificate. + + + + + The distinguished name of the certificate issuer. + + + + + The date in UTC time on which a certificate becomes valid. + + + + + The date in UTC time after which a certificate is no longer valid. + + + + + The serial number of the certificate + as a big-endian hexadecimal string. + + + + + The serial number of the certificate + as an array of bytes in little-endian order. + + + + + The hash algorithm used to create the signature. + + + + + A collection of X509 extensions. + + + + + Utilities to create a Pfx. + + + + + The size of the block used to test a sign or encrypt operation. + + + + + Return the key usage flags of a certificate. + + + + + Verify RSA key pair of two certificates. + + + + + Creates a certificate from a PKCS #12 store with a private key. + + The raw PKCS #12 store data. + The password to use to access the store. + The certificate with a private key. + + + + Verify a RSA key pair using a encryption. + + + + + Verify a RSA key pair using a signature. + + + + + Verify ECDsa key pair of two certificates. + + + + + Verify a ECDsa key pair using a signature. + + + + + Builds a CRL. + + + + + Create a CRL builder initialized with a decoded CRL. + + The decoded CRL + + + + Initialize the CRL builder with Issuer. + + Issuer name + + + + Initialize the CRL builder with Issuer and hash algorithm. + + Issuer distinguished name + The signing algorithm to use. + + + + Create a CRL builder initialized with a decoded CRL. + + The decoded CRL + + + + Initialize the CRL builder with Issuer. + + Issuer name + + + + Initialize the CRL builder with Issuer and hash algorithm. + + Issuer distinguished name + The signing algorithm to use. + + + + Default constructor. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Set this update time. + + + + + Set next update time (optional). + + + + + Set the hash algorithm. + + + + + Add array of serialnumbers of revoked certificates. + + The array of serial numbers to revoke. + The revocation reason + + + + Add a revoked certificate. + + The certificate to revoke. + The revocation reason + + + + Add a revoked certificate. + + + + + Add a list of revoked certificate. + + + + + Add a revoked certificate. + + + + + Create the CRL with signature generator. + + The RSA or ECDsa signature generator to use. + The signed CRL. + + + + Create the CRL with signature for RSA. + + The signed CRL. + + + + Create the CRL with signature for ECDsa. + + The signed CRL. + + + + Constructs Certificate Revocation List raw data in X509 ASN format. + + + CRL fields -- https://tools.ietf.org/html/rfc5280#section-5.1 + + CertificateList ::= SEQUENCE { + tbsCertList TBSCertList, + signatureAlgorithm AlgorithmIdentifier, + signatureValue BIT STRING + } + + TBSCertList ::= SEQUENCE { + version Version OPTIONAL, + -- if present, MUST be v2 + signature AlgorithmIdentifier, + issuer Name, + thisUpdate Time, + nextUpdate Time OPTIONAL, + revokedCertificates SEQUENCE OF SEQUENCE { + userCertificate CertificateSerialNumber, + revocationDate Time, + crlEntryExtensions Extensions OPTIONAL + -- if present, version MUST be v2 + } OPTIONAL, + crlExtensions [0] EXPLICIT Extensions OPTIONAL + -- if present, version MUST be v2 + } + + + + + CRL Reason codes. + + + id-ce-cRLReasons OBJECT IDENTIFIER ::= { id-ce 21 } + -- reasonCode::= { CRLReason } + CRLReason::= ENUMERATED { + unspecified(0), + keyCompromise(1), + cACompromise(2), + affiliationChanged(3), + superseded(4), + cessationOfOperation(5), + certificateHold(6), + --value 7 is not used + removeFromCRL(8), + privilegeWithdrawn(9), + aACompromise(10) } + + + + + Provides access to an X509 CRL object. + + + + + The name of the issuer for the CRL. + + + + + The name of the issuer for the CRL. + + + + + When the CRL was last updated. + + + + + When the CRL is due for its next update. + + + + + The hash algorithm used to sign the CRL. + + + + + The revoked user certificates + + + + + The X509Extensions of the CRL. + + + + + The raw data for the CRL. + + + + + Represents a revoked certificate in the + revoked certificates sequence of a CRL. + + + CRL fields -- https://tools.ietf.org/html/rfc5280#section-5.1 + + ... + revokedCertificates SEQUENCE OF SEQUENCE { + userCertificate CertificateSerialNumber, + revocationDate Time, + crlEntryExtensions Extensions OPTIONAL + -- if present, version MUST be v2 + } OPTIONAL, + ... + + + + + Construct revoked certificate with serialnumber, + actual UTC time and the CRL reason. + + The serial number + The reason for revocation + + + + Construct revoked certificate with serialnumber, + actual UTC time and the CRL reason. + + The serial number + The reason for revocation + + + + Construct minimal revoked certificate + with serialnumber and actual UTC time. + + + + + + Construct minimal revoked certificate + with serialnumber and actual UTC time. + + + + + + The serial number of the revoked certificate as + big endian hex string. + + + + + The serial number of the revoked user certificate + as a little endian byte array. + + + + + The UTC time of the revocation event. + + + + + The list of crl entry extensions. + + + + + Decodes a X509 CRL and provides access to information. + + + + + Loads a CRL from a file. + + + + + Loads a CRL from a memory buffer. + + + + + Create CRL from IX509CRL interface. + + + + + + Default constructor, also internal test hook. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Verifies the signature on the CRL. + + + + + Returns true if the certificate is revoked in the CRL. + + + + + Decode the complete CRL. + + The raw signed CRL + + + + Decode the Tbs of the CRL. + + The raw TbsCertList of the CRL. + + + + Decode if RawData is yet undecoded. + + + + + Describes the three required fields of a X509 Certificate and CRL. + + + + + The field contains the ASN.1 data to be signed. + + + + + The signature of the data. + + + + + The encoded signature algorithm that was used for signing. + + + + + The signature algorithm as Oid string. + + + + + The hash algorithm used for signing. + + + + + Initialize and decode the sequence with binary ASN.1 encoded CRL or certificate. + + + + + + Initialize the X509 signature values. + + The data to be signed. + The signature of the data. + The algorithm used to create the signature. + + + + Encode Tbs with a signature in ASN format. + + X509 ASN format of EncodedData+SignatureOID+Signature bytes. + + + + Decoder for the signature sequence. + + The encoded CRL or certificate sequence. + + + + Verify the signature with the public key of the signer. + + + true if the signature is valid. + + + + Verify the signature with the RSA public key of the signer. + + + + + Verify the signature with the ECC public key of the signer. + + + + + Decode the algorithm that was used for encoding. + + The ASN.1 encoded algorithm oid. + + + + + Encode a ECDSA signature as ASN.1. + + The signature to encode as ASN.1 + + + + Decode a ECDSA signature from ASN.1. + + The signature to decode from ASN.1 + The keySize in bits. + + + diff --git a/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/System.ServiceModel.Primitives.dll b/SampleOPCUAClient/SampleOPCUAClient/OPC依赖项/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000000000000000000000000000000000000..3a0af13686db8054237572a619cc5c13dcc77673 GIT binary patch literal 21384 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 T(DF7>Z*EuBFWE^15(x5NLNkC= literal 0 HcmV?d00001 diff --git a/SampleOPCUAClient/SampleOPCUAClient/Pro_OPCUA.cs b/SampleOPCUAClient/SampleOPCUAClient/Pro_OPCUA.cs new file mode 100644 index 0000000..43c9d0a --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/Pro_OPCUA.cs @@ -0,0 +1,635 @@ +//****************************************************************************************************** +// +//文件名(FileName): Pro_OPCUA.cs +// +//功能描述(Description): OPCUA通讯协议库,包含OPCUA Client 和 Server +// +//数据表(Tables): Nothing +// +//作者(Author): wudehang +// +//日期(Create Date): 2021-03-09 +// +//CLR版本(CLR Version): net Core 5.0 +// +//版本(Version): 1.0.0 +// +//公司(Company): 南京埃斯顿自动化股份有限公司 +// +//****************************************************************************************************** +using Newtonsoft.Json.Linq; +using Opc.Ua; +using Opc.Ua.Client; +using Opc.Ua.Configuration; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml.Linq; +using Treasure.DataModel; + +namespace Treasure.通讯协议 +{ + /// + /// OPCUA 通讯协议 + /// + public partial class Pro_OPCUA : ProtocolBase + { + /// + /// 应用程序对象 + /// + private ApplicationInstance m_application = new ApplicationInstance(); + /// + /// 连接地址 + /// + private string m_ConnectStr { get; set; } + /// + /// OPC连接状态 + /// + private bool isCconnect { get; set; } + /// + /// 构造函数 + /// + public Pro_OPCUA(string ConnectStr) + { + m_ConnectStr = ConnectStr; + m_application.ApplicationType = ApplicationType.Client; + m_application.ConfigSectionName = "Treasure.OPCUAClient"; + try + { + Console.WriteLine("加载客户端配置"); + // 加载opcua客户端配置 + m_application.LoadApplicationConfiguration(false).Wait(); + m_configuration = m_application.ApplicationConfiguration; + // 核对客户端证书 + m_application.CheckApplicationInstanceCertificate(true, 0).Wait(); + //建立会话 + Connect(); + } + catch (Exception ex) + { + throw new Exception("OPUAConfiguration:" + ex.ToString()); + } + } + /// + /// 通讯协议参数初始化 + /// + public override void ProtocolInit(string IP, short Port, string ConnectStr) + { + + } + /// + /// 开始采集 + /// + public override void ReadItems(List itemBases) + { + int j = 20; + for (int i = 0; i < itemBases.Count; i += 20) + { + + //读取数据 + ReadNodes(itemBases.Take(j).Skip(i).ToList()); + j += 20; + } + } + public void readAndWrite() + { + try + { + if (isCconnect) + { + //Console.WriteLine("数据节点转换"); + //节点格式转换 + ReadValueIdCollection nodesToRead = new ReadValueIdCollection(); + nodesToRead.Add(new ReadValueId() + { + NodeId = new NodeId("ns=2;s=WRITEVAR"), + AttributeId = Attributes.Value + }); + DataValueCollection resultsValues = null; + DiagnosticInfoCollection diagnosticInfos = null; + m_session.Read( + null, + 0, + TimestampsToReturn.Both, + nodesToRead, + out resultsValues, + out diagnosticInfos); + //验证结果 + ClientBase.ValidateResponse(resultsValues, nodesToRead); + + WriteValueCollection nodesToWrite = new WriteValueCollection(); + byte[] itt = (resultsValues[0].Value as ExtensionObject[])[0].Body as byte[]; + ExtensionObject[] AA = new ExtensionObject[100]; + for (int i = 0; i < AA.Length; i++) + { + AA[i] = new ExtensionObject() + { + Body = itt + }; + } + var aa = resultsValues[0].Value; + nodesToWrite.Add(new WriteValue() + { + NodeId = new NodeId("ns=2;s=WRITEVAR"), + AttributeId = Attributes.Value, + Value = new DataValue() + { + Value = AA + // resultsValues[0].Value + + } + }); + StatusCodeCollection resultsValues1 = null; + DiagnosticInfoCollection diagnosticInfos1 = null; + + //Console.WriteLine("数据读取开始"); + // Call Read Service + m_session.Write( + null, + nodesToWrite, + out resultsValues1, + out diagnosticInfos1); + //验证结果 + ClientBase.ValidateResponse(resultsValues1, nodesToWrite); + } + else + { + Connect(); + } + + } + catch (Exception ex) + { + throw new Exception("OPUAReadNodes:" + ex.Message + ex.StackTrace); + } + } + /// + /// 开始采集 + /// + public override void ReadItem(ItemBase itemBases) + { + //读取数据 + //itemBases.ItemValue = ReadNode(itemBases.ItemAdress).Value.ToString(); + } + /// + /// 连接初始化 + /// + public override async void Connect() + { + try + { + //待修改 sessionTimeout 设置长一些 + await ConnectServer(m_ConnectStr, false); + } + catch (Exception) + { + + throw; + } + + } + /// + /// 连接校验(在每次读取时,进行连接校验),连接校验失败,则进行一次重连 + /// + public override void CheckConnect() + { + + } + /// + /// 连接断开 + /// + public override void Close() + { + if (m_session != null) + { + m_session.Close(); + m_session.Dispose(); + m_session = null; + } + } + /// + /// OPCUA单个Tag读取 + /// + /// + /// + public Node ReadNode(string Tag) + { + try + { + return m_session.ReadNode(new NodeId(Tag)); + } + catch (Exception ex) + { + throw new Exception("OPUAReadNode:" + ex.Message + ex.StackTrace); + } + } + Subscription m_subscription; + /// + /// 订阅 + /// + /// + public void subscription(List itemBases) + { + if (m_session == null || m_session.Connected == false) + { + Console.WriteLine("Session not connected!"); + return; + } + + try + { + // Create a subscription for receiving data change notifications + + // Define Subscription parameters + m_subscription = new Subscription(m_session.DefaultSubscription); + + m_subscription.DisplayName = "Console ReferenceClient Subscription"; + m_subscription.PublishingEnabled = true; + m_subscription.PublishingInterval = 200; + for (int i = 0; i < itemBases.Count; i++) + { + // Create MonitoredItems for data changes + + MonitoredItem intMonitoredItem = new MonitoredItem(m_subscription.DefaultItem); + // Int32 Node - Objects\CTT\Scalar\Simulation\Int32 + intMonitoredItem.StartNodeId = new NodeId(itemBases[i].ItemAdress); + intMonitoredItem.AttributeId = Attributes.Value; + intMonitoredItem.DisplayName = itemBases[i].ItemID + itemBases[i].ItemName; + intMonitoredItem.SamplingInterval = 200; + intMonitoredItem.Notification += OnMonitoredItemNotification; + + m_subscription.AddItem(intMonitoredItem); + } + var aa = m_session.AddSubscription(m_subscription); + // Create the subscription on Server side + m_subscription.Create(); + } + catch (Exception ex) + { + Console.WriteLine("Subscribe error: {0}", ex.Message); + } + } + /// + /// 停止订阅 + /// + public void EndSubscription() + { + + } + /// + /// Handle DataChange notifications from Server + /// + private void OnMonitoredItemNotification(MonitoredItem monitoredItem, MonitoredItemNotificationEventArgs e) + { + try + { + // Log MonitoredItem Notification event + MonitoredItemNotification notification = e.NotificationValue as MonitoredItemNotification; + Console.WriteLine("Notification Received for Variable \"{0}\" and Value = {1}.", monitoredItem.DisplayName, notification.Value); + } + catch (Exception ex) + { + Console.WriteLine("OnMonitoredItemNotification error: {0}", ex.Message); + } + } + public string structItem(string ItemAdress) + { + DataValue item = m_session.ReadValue(new NodeId(ItemAdress)); + string aaa = ReadStruct(ItemAdress, item); + return aaa; + } + /// + /// 读取结构体数据 + /// + public string ReadStruct(string ItemAdress, DataValue value) + { + NodeId node = new NodeId(ItemAdress); + //获取Node 信息 验证Node的数据类型 + VariableNode nodeInfo = m_session.ReadNode(node) as VariableNode; + string aa1 = Newtonsoft.Json.JsonConvert.SerializeObject(nodeInfo); + //DataValue value = m_session.ReadValue(node); + var datatypeNode = (m_session.ReadNode(nodeInfo.DataType)) as DataTypeNode; + var typeDefine = datatypeNode.DataTypeDefinition.Body as StructureDefinition; + //var datatypeNode1 = (m_session.ReadNode(new NodeId("ns=2;i=3073"))) as DataTypeNode; + string aa = Newtonsoft.Json.JsonConvert.SerializeObject(datatypeNode); + //string aaa = Newtonsoft.Json.JsonConvert.SerializeObject(datatypeNode1); + int index = 0; + if (value.Value is ExtensionObject[])//数组 + { + JArray res = new JArray(); + foreach (var item in value.Value as ExtensionObject[]) + { + + res.Add(GetJsonFromExtensionObject(ItemAdress, item, typeDefine, ref index)); + } + return res.ToString(); + } + else //非数组 + { + return GetJsonFromExtensionObject(ItemAdress, value.Value as ExtensionObject, typeDefine, ref index).ToString(); + } + + } + private JObject GetJsonFromExtensionObject(string address, ExtensionObject value, StructureDefinition structure, ref int index) + { + JObject res = new JObject(); + var data = value.Body as byte[]; + foreach (var field in structure.Fields) + { + if (field.ValueRank == 1) + { + //是数组,需要读取数组长度 + string fieldNodeId = $"{address}.{field.Name}"; // 例如:"StationStatus1.AlarmA1" + VariableNode fieldNode = m_session.ReadNode(new NodeId(fieldNodeId)) as VariableNode; + if (fieldNode.ArrayDimensions != null && fieldNode.ArrayDimensions.Count > 0) + { + int count = (int)BitConverter.ToUInt32(data.Skip(index).Take(4).ToArray(), 0); + index += 4; + for (int i = 0; i < count; i++) + { + res[$"{field.Name}[{i}]"] = BitConverter.ToBoolean(data.Skip(index + i).Take(1).ToArray(), 0); + } + index += count; + } + + } + else if (field.DataType.NamespaceIndex == 2) + { + //结构体嵌套 + var count = BitConverter.ToUInt32(data.Skip(index).Take(4).ToArray(), 0); + index += 4; + var datatypeNode1 = (m_session.ReadNode(field.DataType)) as DataTypeNode; + var typeDefine = datatypeNode1.DataTypeDefinition.Body as StructureDefinition; + for (int i = 0; i < count; i++) + { + res[field.Name + i] = GetJsonFromExtensionObject(address, value, typeDefine, ref index); + } + } + else + { + string name = field.Name; + if (field.DataType == DataTypeIds.String) + { + int length = (int)BitConverter.ToUInt32(data.Skip(index).Take(4).ToArray(), 0); + index += 4; + string re = Encoding.Default.GetString(data.Skip(index).Take(length).ToArray()); + res[name] = re; + index += length; + } + if (field.DataType == DataTypeIds.UInt32) + { + UInt32 re = BitConverter.ToUInt32(data.Skip(index).Take(4).ToArray(), 0); + index += 4; + res[name] = re; + } + if (field.DataType == DataTypeIds.Float) + { + float re = BitConverter.ToSingle(data.Skip(index).Take(4).ToArray(), 0); + index += 4; + res[name] = re; + } + if (field.DataType == DataTypeIds.Boolean) + { + bool re = BitConverter.ToBoolean(data.Skip(index).Take(1).ToArray()); + res[name] = re; + index += 1; + } + if (field.DataType == DataTypeIds.Double) + { + double re = BitConverter.ToDouble(data.Skip(index).Take(8).ToArray()); + res[name] = re; + index += 8; + } + } + + + } + return res; + } + + /// + /// OPCUA批量Tag读取 + /// + /// 需要读取的节点 + /// + public void ReadNodes(List itemBases) + { + try + { + if (isCconnect) + { + //Console.WriteLine("数据节点转换"); + //节点格式转换 + ReadValueIdCollection nodesToRead = new ReadValueIdCollection(); + for (int i = 0; i < itemBases.Count; i++) + { + nodesToRead.Add(new ReadValueId() + { + NodeId = new NodeId(itemBases[i].ItemAdress), + AttributeId = Attributes.Value + }); + } + NodeId ss = itemBases[0].ItemAdress; + //EncodeableFactory.GlobalFactory.AddEncodeableType(typeof(QTI_Data)); + // Read the node attributes + DataValueCollection resultsValues = null; + DiagnosticInfoCollection diagnosticInfos = null; + //Console.WriteLine("数据读取开始"); + // Call Read Service + m_session.Read( + null, + 0, + TimestampsToReturn.Both, + nodesToRead, + out resultsValues, + out diagnosticInfos); + //验证结果 + ClientBase.ValidateResponse(resultsValues, nodesToRead); + for (int i = 0; i < resultsValues.Count; i++) + { + if (resultsValues[i].Value == null) + { + itemBases[i].ItemValue = ""; + } + else + { + //若是字符串数据的话,则进行直接赋值 + if (resultsValues[i].WrappedValue.TypeInfo.BuiltInType == BuiltInType.String) + { + itemBases[i].ItemValue = resultsValues[i].Value.ToString(); + } + else + { + itemBases[i].ItemValue = Newtonsoft.Json.JsonConvert.SerializeObject(resultsValues[i].Value); + } + } + //在这里进行结构体类型数据处理 + if (itemBases[i].ItemType == DataType.Struct) + { + // itemBases[i].ItemValue = ReadStruct(itemBases[i].ItemAdress, resultsValues[i]); + } + } + } + else + { + Connect(); + } + + } + catch (Exception ex) + { + throw new Exception("OPUAReadNodes:" + ex.Message + ex.StackTrace); + } + } + /// + /// OPCUATag写入 + /// + /// 需要写入节点的地址 + /// 需要写入节点的值 + /// + public bool WriteNode(WriteValueCollection value) + { + try + { + if (isCconnect) + { + StatusCodeCollection resultsValues = null; + DiagnosticInfoCollection diagnosticInfos = null; + + //Console.WriteLine("数据读取开始"); + // Call Read Service + var result = m_session.Write( + null, + value, + out resultsValues, + out diagnosticInfos); + //写入返回值为bad,则写入失败 + if (StatusCode.IsBad(result.ServiceResult)) + { + return false; + } + //验证结果 + ClientBase.ValidateResponse(resultsValues, value); + return true; + } + return false; + } + catch (Exception ex) + { + throw new Exception("OPUAReadNodes:" + ex.Message + ex.StackTrace); + } + } + /// + /// 从对象中获取对象所有的值,并转化为byte[] + /// + /// 需要写入节点的值组成的byte数组列表 + /// + public ExtensionObject GetValueByteFromObj(WriteVar value) + { + List result = new List(); + //前4位为字符串数据长度 + var length = BitConverter.GetBytes(value.Name.Length); + result.AddRange(length); + //数据项名称 + var Name = Encoding.Default.GetBytes(value.Name); + result.AddRange(Name); + //数据类型 + var DataType = BitConverter.GetBytes(value.DataType); + result.AddRange(DataType); + //字符串数据转换 + if (value.StringValue.Length == 0) + { + result.AddRange(new byte[4] { 0, 0, 0, 0 }); + } + else + { + //前4位为字符串数据长度 + length = BitConverter.GetBytes(value.StringValue.Length); + result.AddRange(length); + //字符串数据 + var StringValue = Encoding.Default.GetBytes(value.StringValue); + result.AddRange(StringValue); + } + //整数数据 + var IntValue = BitConverter.GetBytes(value.IntValue); + result.AddRange(IntValue); + //浮点数数据 + var FloatValue = BitConverter.GetBytes(value.FloatValue); + result.AddRange(FloatValue); + + return new ExtensionObject { Body = result.ToArray() }; + } + /// + /// OPCUATag写入 + /// + /// 需要写入节点的值组成的byte数组列表 + /// + public void WriteVarStruct(ExtensionObject[] value) + { + WriteValueCollection nodesToWrite = new WriteValueCollection(); + nodesToWrite.Add(new WriteValue() + { + NodeId = new NodeId("ns=2;s=WRITEVAR"), + AttributeId = Attributes.Value, + Value = new DataValue() + { + Value = value + } + }); + WriteNode(nodesToWrite); + } + + ///// + ///// OPCUATag写入 + ///// + ///// 需要写入节点的值组成的byte数组列表 + ///// + //public void WriteVarStruct(WriteVar writeVar) + //{ + // List result = new List(); + // WriteValueCollection nodesToWrite = new WriteValueCollection(); + // nodesToWrite.Add(new WriteValue() + // { + // NodeId = new NodeId("ns=2;s=WRITEVAR"), + // AttributeId = Attributes.Value, + // Value = new DataValue() + // { + // Value = value + // } + // }); + // WriteNode(nodesToWrite); + //} + } + /// + /// writevar对象 + /// + public class WriteVar + { + /// + /// 数组索引 + /// + public int index = 0; + /// + /// 数据项名称 + /// + public string Name = ""; + /// + /// 数据类型 + /// + public int DataType = 0; + /// + /// 字符串值 + /// + public string StringValue = ""; + /// + /// 整数值 + /// + public int IntValue = 0; + /// + /// 浮点数值 + /// + public float FloatValue = 0.0F; + } +} diff --git a/SampleOPCUAClient/SampleOPCUAClient/Program.cs b/SampleOPCUAClient/SampleOPCUAClient/Program.cs new file mode 100644 index 0000000..53d89d6 --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SampleOPCUAClient +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/SampleOPCUAClient/SampleOPCUAClient/ProtocolBase.cs b/SampleOPCUAClient/SampleOPCUAClient/ProtocolBase.cs new file mode 100644 index 0000000..5ef9f81 --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/ProtocolBase.cs @@ -0,0 +1,70 @@ +//****************************************************************************************************** +// +//文件名(FileName): ProtocolBase.cs +// +//功能描述(Description): 通讯协议 基类,定义了通讯协议包含的基本功能及必要属性 +// +//数据表(Tables): Nothing +// +//作者(Author): wudehang +// +//日期(Create Date): 2021-03-09 +// +//CLR版本(CLR Version): net Core 5.0 +// +//版本(Version): 1.0.0 +// +//公司(Company): 南京埃斯顿自动化股份有限公司 +// +//****************************************************************************************************** +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Treasure.DataModel; + +namespace Treasure.通讯协议 +{ + /// + /// 通讯协议 基类 + /// + public abstract class ProtocolBase + { + /// + /// ip地址 + /// + protected string m_IP { get; set; } + /// + /// 端口 + /// + protected short m_Port { get; set; } + /// + /// 连接字符串 + /// + protected string m_MonnectStr { get; set; } + /// + /// 通讯协议参数初始化 + /// + public abstract void ProtocolInit(string IP, short Port, string ConnectStr); + /// + /// 批量读取数据,包含数据类型分类,数据读取等 + /// + public abstract void ReadItems(List itemBases); + /// + /// 单个读取数据,包含数据类型分类,数据读取等 + /// + public abstract void ReadItem(ItemBase itemBase); + /// + /// 连接初始化 + /// + public abstract void Connect(); + /// + /// 连接校验(在每次读取时,进行连接校验),连接校验失败,则进行一次重连 + /// + public abstract void CheckConnect(); + /// + /// 连接断开 + /// + public abstract void Close(); + } +} diff --git a/SampleOPCUAClient/SampleOPCUAClient/SampleOPCUAClient.csproj b/SampleOPCUAClient/SampleOPCUAClient/SampleOPCUAClient.csproj new file mode 100644 index 0000000..3e7abcd --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/SampleOPCUAClient.csproj @@ -0,0 +1,41 @@ + + + + WinExe + net9.0-windows7.0 + true + + + + + + + + + + OPC依赖项\Opc.Ua.Bindings.Https.dll + + + OPC依赖项\Opc.Ua.Client.dll + + + OPC依赖项\Opc.Ua.Configuration.dll + + + OPC依赖项\Opc.Ua.Core.dll + + + OPC依赖项\Opc.Ua.Security.Certificates.dll + + + + + + PreserveNewest + + + PreserveNewest + + + + \ No newline at end of file diff --git a/SampleOPCUAClient/SampleOPCUAClient/Treasure.OPCUAClient.Config.xml b/SampleOPCUAClient/SampleOPCUAClient/Treasure.OPCUAClient.Config.xml new file mode 100644 index 0000000..f1448a2 --- /dev/null +++ b/SampleOPCUAClient/SampleOPCUAClient/Treasure.OPCUAClient.Config.xml @@ -0,0 +1,89 @@ + + + Quickstart Console Reference Client + urn:localhost:Quickstarts:Console ReferenceClient + uri:opcfoundation.org:Quickstarts:Console ReferenceClient + Client_1 + + + + + + Directory + %CommonApplicationData%\OPC Foundation\pki\own + CN=Quickstart Console Reference Client, C=US, S=Arizona, O=OPC Foundation, DC=localhost + + + + + Directory + %CommonApplicationData%\OPC Foundation\pki\issuer + + + + + Directory + %CommonApplicationData%\OPC Foundation\pki\trusted + + + + + Directory + %CommonApplicationData%\OPC Foundation\pki\rejected + + + + false + + + + + + + 600000 + 1048576 + 1048576 + 65535 + 4194304 + 65535 + 300000 + 3600000 + + + + 60000 + + opc.tcp://{0}:4840 + http://{0}:52601/UADiscovery + http://{0}/UADiscovery/Default.svc + + + 10000 + + + + + + + %CommonApplicationData%\OPC Foundation\Logs\Quickstarts.ConsoleReferenceClient.log.txt + true + + + + + + + + + + + + + + + \ No newline at end of file

HPXv&q2l~I&|*`CeZI@7a^uIq{fy|z?^ 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 !D7H42hLF) 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 z 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�>qAOHGIE-4BJF(RIG3g&HlL zygTVsSZ*pX9%|};s6Px>n^$!_%t}@<%GI4a-q7mBRu5b85QA+2mD2E?o)Pq8q8wWD zXg?wd6Wkyp?*Sa)#f#UpslfP`U(CNUYAt8v5If&+_1Du#zG8NksdL?FVbINbjdE(A zU@$&`Vw*WZD`tXM5Nqz`3=fw^_)q`p*Pi>o|NBb^|L9-;Z2Dh+^11)Ex<|(pd~D0a z#OjrLS-**o>sD@AF|lsl$Mtc;!u$62#~N zd%M1R(}wrAOli3)V z`$GNx-TM89_4{wt?|-j;|GoPC59{||)bIZ^y|4f7pVsgHs{a1p*6;sI{r(^8_y26~ z->d5P)%E+Q>i1u&-?yaq_1}A}ZttkyU#Q>f)%)JTx;wK@9V#Jy>5TA ze*aGW{u}lCPwID;NtE}!zhA%qLH+)Z>-T?BzyC@7{x9qIe^bBzyZZgl>-YayzyGKD z{lD1z-~3qp{>l3NucY_&fAgWb{ptGsGxhh+*6*LIzn`hw2kZ8H{r=_p`!jX>V%@%8 zx4&7xf2V%`jr#p3_507$`})86_v`i_)bIbee*Y)+?|)Li|I7OOe^a;rUETgK_Wu2k z)$jHCe!pJd@7wxr_dTm`2ZQX*1|JyZ^{`U2iF!PG^`myx7GQEC0y{<~HtJCY6^!kbPdT)CD zWO`kjUe_hMwq1Gy3rl z%Nf<}-i&B}Qn&uTX84<*ny|({^oBI)L&C@Vo9g*#esA9f*X!R<6x8d8HR_oi(BkezvaW9PHgz; zKlKlQ{?lK?h(CK)5dHLDP9z{dvHpXfs(EU~x`*yrB|Bo(#QN|5@MEhcHhhMcExh~{ zUOvamL0-PBYc~9NFCTwNx2&MK@bk^9KDFV;p98LSE7E_fH{42}nEbj=Xex;mH&!xQ zH1}22iWM7fZMY@;$abmLfAHHFGaIW!?z|jd`fuI=XJt=rT2TPYTd^_HBoK;tJOW9n0RR8s#O~nez0NTM;ku1 zV#B94Ec{fLd}7Nz6YJK0@cZjO_=mEF9@?<*4}kq=qP_JC|4bdO(KCGbq&3SL=`tXsFT(#yJa0(9Yb)WwE{-`6NBt7^jsf1C`j5B~U*)jb-! z9_ijnQ0fw0_&W*GdVPQYp)~kW-MN0@e@X)#O~3!cjjQfmx8bIcm}YxZunUnNzenS0 z;E#P`;;&Xh4KvqpylD|uuU_@>l`B@RTgPgw|Nft{IM;c($jh6$V%5r3_pDfP&&R8K z0RH1NHeA&AYd^i}zRl}4Jf?~NpA#ECz2Rr`D>koNy>7$LURkkv#R{$2|D|tN=$QlQ z0;tz6{MeRC_^2jUtP^#mi(rF?e(7G8H+`d@#T`(T2m>%47Jea={9@g@)u84V z`k!9jqQjqkd39RV4ew7REPr{GmhP?9;#+?FTKev5>GPTN`Aqu!=Eu`bE7DhQrmrrh z&lmMsVqwiH5wwh)_svMuI}i)~D^_e?DdcQk3GnMyd~(&A4cCn$_*Dz`XQ{KdYM|7F z#thQy>GSn;!Oisf=Eha`ty`^CR##dN`(LP74Jw4+dseds_ZTJI^Z2UuD>l5pR%2-8 z;6y&z$NFpkS*##@tpDJDerN?m_x{>MdVluNDzVs~ZC+_N$<9vyuh5%jC3%8YS@<)p z_}jdHqPhnmhn)LlwKB;&KCgaY)hE??>PUBi5PcTCy+0v1HJLxVZ`In>{E+_Bd(sIT zzPY-_={G+q)ES+9bHg`liu)!DdW)Bvk^~!W_I_Wn;pVPY8}$Xt@y#U4HhljlVz}NF zYNnAOmiY4K$B`^QSf^=8`ste0qOgtCr#4O?fHzhfC+=S*V1Fc5Oe$i7V9{9rFK_Py zTXlBjc|IPt-}Ap$em`7QRAN_LiPKGWs5F&OJ*1b~CNs{;(b5`c23FJ#HA8iiX=jF- zraROQwL^CNjGfr{Jsaa^!$^)qwA3zwERy{awZRYlNb0&EC~qkYmntE< z3aPjxb5yj%O1b>mQngY>7a#@i)7D5lEnE07MRF=-60SO{p8R?D2tmV}t0#X^E^J0G z)+)uVp=Zx=wHzfUK3gLDp}?|ax`2~~b9|u-Y4|$n+_H%rDlU~tZ8y*A)Rf%y9WJFA zlw7C_v{CZDFeL`kEwp!1IMiM0ghb$Ksf!#;-7h8!clB4Z%9#34jMh%LnVhK5%vN>_ zJ9(etkUE}TB{PWgFDgS6Il5f^$@_FL@VUeP+r%Iz=)YE~!Z^wXMOE7)PN}dM;534y zW{aY%?HMZd2ru=T2Bf4mjFXtl6*W=yYRUWV%4q3$hC3^zvfAZPXq?3^YGG)g7^QIP zBigeSTvB^g0$O{O&J();mHL;|85+O#YBEzTm5SBEg9l0D=RqM0g%=W>9$O79xdz%zu(0s73Vpt(PudG$4HliHg}?dwVH8x{UbyOB0J zxv9)GLxF(uO%xW9;8b;?7{BeJ`7ymdo)4cJ>45bsgjZ`n#vcnNDDm1iY$(ipZIf(W zRTnSCBYm-o0^c&QNl`nO2EAM;Vyg%Z#Y#O>1T$|ci`F4CUzbz_fUJnxH=V=}DGfAg z?VBZc;!_{l!uW^;6Rhsfi7$)bO{6VBi6Jtz-$tI3+P5TiF3wjeP8I8`wk2>=Kcz65yVUp6-y4Z;e$~tv zFxi3&{b#ek)E#0?YHyJ?$xQj6{Jh=g<(|5Rh9Yh=syJ;V zDk=3;Ywz%3_LLlS`yN|10MusC|%D!)f_j16*Ag2EnBSH5ZyhI<^p>|bm`f|dCX{;Jvm;iLhxz5;LrHC}6A<wCaA1 zM5_C%`$tNQD6t@g3?le*B}&H#snQ2if)=5l!Rk>Pr1IvK?9}2SIVb=Zy){Zh z8ox5!`9i4=Wz--zO)N!8;ztTSodxw1Un#vr!`L6QAL=Z_b>XS`so!EX$jp(+Ei^O=|y6aj5lAH5eXII=DWd(;V(Z3ae|E_)BU(vI_i> z#vbSy^`jxAEW@{qG6Gy=AmTT=BaBbUG6qg%q;r^mWvcGSsLhC6d~T$RJeM&q1N;T` zsc)9~2|F+VK?#D1ddA{QrCx=S9Fp-9h$*vxSV9cMOvVhWNU zoyasKwGM&%RAzr1g&_2UwLem>sx$9eCS(|^ZKAA&sgX|Yr;;YD96FwvKaiH0dC#f* zX}2>ffe$tHQI(9;{y55;HQNiAOoG5Ojs`4$ua;i4D5Ua0Uno6A^?7vRH{y&MBcHJ! zn|YrOOqKeLVx?CNnYV~~3teRfid5;zkNQgBOZjPlV&p%GdiPJZlsc-l_kvof{Vb{d z3}3&Mi@U*OdRWS>_Oqyh?2rno{Y+V|y+?_(lB|>l<8J1Ap$cYdR6)N?QVn+;{N>W; z?L*L!Z`84Up}!J_IxhW>Ka8jH@MeZGYDsEL7VtkUssq(f$OG85EAAPt*n0F(^P{pF zK<&rH;y|ejlkX$_r>Fg>SV2$AQ=OTooeeP#aCk_CZ18HSJRF*&M%oo1lwUG+h4`+} zUoc`s?qWZpkoss*|0|Uqqyy1VK3&MD+HPv*%w1$=Pv+X4x|(}5n?h)jhjN884V(Iy zuA{obSlIM#zQUBHimGIg-L1Z55Di4&AfNsK-4&%}f+KhI0D2ou0=TEe! zI|ea5>f4g~cG5>_p5BMKeO@W3Zv!%m5&KM-3C5B-hJXnUW&~pyL0gy!_9pd-NN_kK z*qafwg_&SqQa=z0j${NRE+(lh%mn9?`h`evEF-`ghy-n6Cb*o`sZQsCF=Nd1<&2;$ z%mmky`i)31lM!6c2-?C-a675ri3IhG;C4pP7AAs5A!&3(f@Vt4pjJX2+QUo$Oyh5?Ihne7B zvUood^koE;S0rc)Gr@yo@#9D^m=RE3k)SQi1P_zNN0DGCBcQw@L0gy!9w&=WA_0{Y zWNDG|iUe(8CU}}GQKTx?|HwlEXyNtVVU0f8Y& zOM5bcwlEV+Buo1u0fCWVA|q%EGr@sm>0l(-n-Lty2-?Cl#HsD3TVir2>zMAV@0hyZ zk4-~=?A~kYelVaJ3DS#s5=cmESK}P&!d>^yR~>qec_=%sB@5SNc&%Nt;RTW`sZ~~k zX8s-V&JR(py&hKJfa}PPO`Cw- zupFbl0%J~~LY>V=HJV1%MwdbJsM|M0&7hf4Q|ohq54t!WCJV6zp3a)W!o#dM+QLlm zG^rP2`R&dM{Ao(i9#)~ukVIx7&pgT%;UGo0Gfix(qZLO-4n0kdcpOZ5w4r9uJnG>M zQ8Q>B^~i>(88nZ2Y(vxxnnyjcA!-KAqt0xInnClZ^$k%oXdbn>A!-KAqpoj=nnClZ z7dAxApn23w8=_{=JnEGVQ8Q>B_1cE088nZ2V?)#onn%60A!-KAqu$vNHG}3+?`?>h zLG!2&Hbl*!dDMp+qGr%M>f;SjGiV<5>4vBoG>5v}u@Pzunn&&15H*A5Q3p3f&7gVI zp$$fQ}eGboCg(el)k zXAJ(c7E-G-njb4x&)id()`Y@)cNi?!W^Lx&QZLh6>R^&;%2ptgW{mg&DmZ|covWba z>2Mfn<6ver`aS*!(gQBbVw$ti9Ma4Oe*U-v_xs|raGvROZ8>5y=a$0et}O-D<s)8$s-F}@hvo&f$8iR#ygjSJhwf+8H>Gi)+vO|LU!%GVxN_&iQdfa6< z;pag;YsWrI($nH;O8_3@dB@E3u>>J}2G7B+tm)&=m!5kz7zSz0R+kP-!t?Z@qzFh0 zh$-nH5Nzi@5|Up@lfQH%7kDCrvR9xlpXS#~U&`Y6bXA>3-mAQv+~(&FKX>`L$4?jA z$%%f}&04=Nm$v=aL>6-7c+N~_xv8GIrxujZiIHXCqRb57-~elvsK zR5hF#$clL=md#L_hU(H}Oz={x`jVwp<}F8pzTi<#vf}cPa^vO~^aF&%l{h)T|hU@TjzhHWgnfeJ-oWjUE4@bU3TbPuB)F z=JP3_st-=8teg&6vo0o$&P>SRsLLL5TrV7XF*ktHkmV`;Ef`Rx-RBQn1!Kj-{B ztsPO#u_19uNrONdWX2)lEZB6R04@epHZ8_P^_6;5)8W@@7ISxV?&D@~#m{SgS}0H6 zvipvoS+_lRH*H39$2AL1mgbmyB>$mxkbjqE2sv&a&1|Mj^J>-St+YOGDNH9H^xhiZ z8WGCBExvc~X5R#D^8n3LA-jRJa3$l^lCh6QtP^cmE0)TcV~&63gf@g(#Br8V7#c!_I@7F{o=fW{ zzJIf{^KYt*)707I2{F^A6fc?N75ZKEsE4R36amIiviw+MT57DA%#W?Vj} z{S={TFxFjdVeN=m8eoDSTS}1l=iDNgI6wu8X=vPop;gbE|6=KLpCWTo1dvFa*dSqT z$}k1@&>$Od;OgX3Udik(QV_(hY-ngZ4%!`)nFH;KAoAy=zfc-{ru6M~)wnfGhq}C+ z>Zq=lN-u6i0qh@@_I`@2{SxAh!9gK*>2--?p%e$j&F{H5Ka^>V@jWhWDq}O3&7|ho7AvQ;WRqF6)`?G)wt$`^m|9h#pE)qpFVUcz zq0@1xVV$bo1E!h`xxti0^~_=Z*!CDRpoB@rlpP_>PWtIKvHZlfGke@2XSRN+^uGM}Z*4M-Mur12$-b2-g38slC}#|(>eX=`5^ZQ-r#O`$7$Q%1w-03JsM zV^@>AUCfZB$a|R0X%v7Vu}#y$sK(GS(l6Q~{MZ+-{#g*lx(qlu4FggRl8{z)x5D5611DNYNjraT;vV z|G}i)*Zp)Be{jt18-C9D>E`i+spm^uKB@YO|3hidf2m1qK=ldG^R{ACyUD4+tdbCy zQ-g_vnD{;QG|hnEPg^B-YS8IC?dQ3)6i*FmXLykD?u=z|(a=V~>%%%Az z&*b(_+I&vQ3Z9D=_M9wicjh~8TWX^W#p(G@pH$Gdjec@ooZoDMa-FqIc3Zl zFzuL2InG7Adc>P^a6OIvv^mDuPenYFkd7kGZ z?uCeZ-nbW1o)=S|7bD)Kh{p&4o|jUdm-9R?N8BqB7h@FMD=E*bDbK4B?^?vWYP@UU zX=@{CnWDY}Cd74hiVWj78#pNLUbw`;qcNq`Ys+2O*|pWlT2Y+`~u_NFGL#N0H>A zNghGsWIZ;rv;A1fP3HUjbc>%KLJ`cD^%&4&t5ftOpQ0y`{nN<)iP=Am?B@#^`}sn^ zobL#j^95nfcf_AR<Nc3 zcO=psjdVv$r=#Sd_Kq9QJvoLS2d-7)d5`U#NOLaIG);338jIPK#O#Dc zX1zt3Mz|h{&qv~Q6Q55Lb|J;P5b-WXybH$T_&~_$r4;W{#Je2vE*bA~nwaxW(p@EK zU5`61*DLvSxm>SAHdiB?D`s;wjqX|+-L;5!J>p$6-gWRa2{3;{jLq;yM7$XhZy50= zh?c2aPJuCRMa-7!&&;7%mF8_DjN>~5Okduc-MMZEhF@1F7Q zr+5!iyay5Q`Qk<2!v9D+8ycyGZ!|d zdr*9pu!U$7E<~Gf!8YN7Y(iDUf^FS}K^ptQfa+u+8i|oQnu!b1OkA*;xR9EO3o;WI zjw&Y$!Ax|N(MVi~M&g2v#043NuKNcn!3Ac1l7$1@4#T})E`;o19^078XNUj7w(6+| z{H1|9tH+sZAYd^?e@Gnbcg1lTc@aUf%q+uZ78*TG%p4@i)6iB+k0x4Xx{al9?t56i zXiPE(J}3@e2sSL7T(GiX?U1qRr0od)ovDAPt8yV2rpB;Ank*kz)XBnbC*A?ORmaKl zG0r)2VauL0S1p7+?!cF4v?I=^{QrPGSEY`Sc3wlw?X#k+IR|EvG**zXFSM)9g)!wQ zS)MAg_QF|?@feSjFdmX{n#H(MvamM_#SZK9;B2leun~1Eb2pw805nd`H+zhgUlGQ$2pkH zm?jI85&cL+pEUXr&|MKn)98`ehv`Pkf%!EtXZZ-Jy%B=V{YFUq?MM-FbUU)Y6WQN3 z`#Z3Q26>8FntN_kmeSIW_Fg{PdqHUK8|J9)a}>HSS;&+TA%;JQTtAMnJuugg;c89y zzyZ#d956E{-5Roo`!%cifZM6f;sx*pVC$@ zIA;h~4ptUPwca5SsrSW@ke7O&+11M`kNQBKYQU+k4+>`1g8{HL18jAP)lpq3%1|ho z`ba35y7O5dp=4Ah_0bmQsE3-ItIqu#%eIi9QEI<#qm9$p`Ja)thotOKfB`{Adw;h5 zJ3}$-ij;=!g2-FgkyQ@Sv+na81u}JoWiHU@P`TY|GwV-f?usC>yG?7#-EiafypNOv z{%c87o5r=&=?d5rqA~6s^33LV9gXj&Oe1@kyY$BbCQl=eg=CILsA1!wto9ma$lj3K z2|)~)2q^nnDEk8BKnucBEZuwkkRd7Ip@4R{g?2d9!(@u4x8sZ1l3 za@4k0{a8RsNsonG9gk3B9uKr9TC^uZ1XBUaNK*l6riB#E-TGV$G__Q{g<u?L>C>=r8J^T;>AW(r15eqqRXM+kYfGJ=SnEJ zt1U=Wxb>)T>sGjRDO@Rzx|D1EsySb85nT_QZx|9d2X$M&89*_*n=#q9VzO^K*|$>W zx5WIWncr?Pza5z0$uYkZK=*T?`$1RTb8C5!#v0NR^=>`t-MaN|U3ynNWBpNv9nc@e zR6dTWeB@Lse+$~ zb)zE}+TrXr$~jOufckQvKDVC6Kma)_je(G;#$ZTPV?c>&48}w?WX?C()!Uggwu($L z(b(#=GzR2p?ykIou4{6E!Pa;%;_OhuUt^$pc7#9SGvC5iptJ0H@PUf6Lm5d5XrmB` z3ZvmEk4CE(XvAKi5qp7#dx1vU3p7TZGpBJh=4)Hb*QoQgEzQ?9-1#WlE>~dfzt6c%VrScoQ17uH&!=3;cYeB}Wm$~7A zpR+R_Q?@sxthU=J+e^wEO@4{7c((o)O~3t_9>kcraF+LIuNN2Mydm*IvA-| z*fWaA9nKLPjs%mD;IIiMA+Yd9?H-bJB;p>8xJQh8G%&9=JS*J@s@}OhrUIc4)Di}F z!Eum^%bB>mus3rK4}G3Z?`tRq$oZqkT)V}FQjKONlg5k_8pN(ShO}4!8#6)Nz=%i@ zoCZhvT$$v^Fh{?1`A%a-+*s|@tzeBA90B^Pr7e+Iw>D1Ahh!+dNN=5y*%4MO@p17I zp_QQ_j%Ni&EQ{l@ERMM>j;GagT-9^T4bDB9%fnYdhVrQNnvaWPXe&nK+D+yCCi>!- zihvRz?;%5Lx4w*nf+dh_98<#Np5vJ-2@*WVj$RNrh{x^MRj%ek?1D??N#j_^-Ox~} zo77PVZpN)*WJR?xqf5UUb#G2MEso@$mYXaiG`~_B;h0mA15d7(U-r<+wv$}CS0mFx z=0KKi;G`{V#>XGFWLI=i(rj3+6uS!@Q~<}e{-bu~Oh31zoRRe`OB0?N1jJV5rhsg>JXz2G3pSb4l(KwqYg3Z5TlNMJu2F* zN@7Afh5&VnNoR*1V$vxlonq1{CY@r^DJGp_(kUjLx*f?m>dL34ON_e2s7py=NY6uz zy2PkUjJm|AON_e2sH>tK<0=|1O^QXsRvAJ{;#Cr_l6aMrvXXd}#H%D;CGjeWS4q4| z8L#p)ytvJkYmvmOEM8^tLbQ2^S6RHu;#C%}vUrsK3nV@#+?@Zt=px=Ap!O zi&wXJb&FTGcy(9w=uR`*^9;itG3*h;9x?0@L(YHl5W^m&utyAg#IQ#Ud$Pp!KEtb5 zyn4l}SG;<~i-yBPyn4l}S1IfjuU_%$&1$kQ;{~`+jQYf=PmKD+h~~yajQYf=PmKDM zvOY2D%NX_N8TE@%zZmt4QNI}Vi&4KA^@~xz81;)$zmnCT<&F!?Qjw_rl#q&eRm7_z zUKR1;s0cxoI7`4Cr6>aMfk%7u^U_=BKBLn*iRH$`ZKvRDLN z%q~5Hv^{w!>`~TjXCWe8y2gGpSW;ll6BB3-(zG6Pd|hZ@h1*;FA4^|o`2jhKa!gBn z0d^mescCf~bPqG0=@eI#FTc=3aHXIRimsfduVE&X(?psWX-vib?S%WcDT>|>^~~G`dgkv&==WoEMad<@4dbJ%{oLr4y&%8lHk{XbR2-77X-r4%VZga6T5~y36l8 zsJ4yItCH7UI2T$(7XqJ)h6FxwB-n@}!G=eIjY}z?gW_|*MR++-r3naAaSiXfYg}@q z7leFRkBg?b(oS(D#C|mw`_%xtmIGZ27UGRa>&)JuQp2`>Ln-7?PB&xbZ#eTeL!zq< z?*VMwR6=gp+`N@%cFQHS5{%s2xtMQ0t576AgH@cAGL=)3YppC)I1Jhj^%L} zH9RrMkSAf(@Kg{3Jfl}#^r&Pp4ks0`SO_^;>JqC3C4<3pDCNT-+vzaXf8UUEJYRE3!0TXCU5{1MRYaE$$AWK(8r2vK7XAk!Kk3 zEshz_v5dJk7sp$W@xXp>j=k4a$m2xJ<6h@+f;_se_O*!jg^HX|uJ=0S2XcH41l9+0 zpo38&4n@`n&05{9Q-3(1h8)GA-(np4Eqds;sG*;w=a3>j=oB4krRYcqoK)apr|4)d z`lD__i&KDH98MI^({1=xBXwjP+B zZ(|mw_Zr&HTU|WnB0TQ`x)9LJ?Lw@di?Mz#IO{TfoaRey94|%W%MqFNOv>qUT0s|8 z2NztlSMsU55~}F3f-gA*S92-28ieecK~B@P7|rz<%{51JJ(ZaodEPf7ZdB-tR_KdS zp(l&i73Vc4=~kXBsPaW=`o$Yg5|yZ*6A<+I;++5rurTw-wTS*1?QSTedl4<*-3!3` zZNU4XVLZqYKM0_YbD)nsE4cVDC5@?h7&tyk!H)Y;z2xT?3tuh$da~5a!akM5Y~$+sQZ((CY}zl$wAU8RrS&`~6RgLypO0x@ zciPWGV9~l@0%KkXkc%xyH0qb4QNLuPeo03CuQI}0x}1+}W49S!j!C!@lW^HdxB?s3 z`L#f5)Tr#2qOxDQW>hJAr}joGZBf-PMOD9KRlg)vZ_HaQ%v+in>+g59-j2z1WVf{| zqtEDfTj+NKgL^H=y-;bl)oCu>QU|(Z>vO41tuNgVgb!MT!9-s;Y(n*i3x~9kW+|%q zd|EyZqVzDr(wEcuFqG4y05s@PDAMH#eHLxuitj%?$4$1+p`X@tmF_HdEPo2F6_V4; zaLTKX9WC5Q7OwLxn}utHq~W72^o9G$0(YJA*`F+QdkAG(f&0UC!?@2o_Uk~S5bGl> zDswYdhQBZ1>xQuUcv2tJ@o5hF9mt^^3@ExNwLX#5x#cROJ{*EHCtN>})c55%9|>W) zfWLkrsdG;_=g9JWkL3`qu2vow?BbUZy_|8wk{-fPGRNK zz_+ke*h*xB*=jZ>JcF>FL)euxb|wvu+~ql32ned3#-60HoBP~y1#~Hds_Yu$NrT(P zva-7pf?h&}HLfHLuH&Ah@Ee!JzHuRkcr74GAR5<_2G?*4vBl^{2zMTCCyiUl%0zn- zZ?zB>2N{SZjr;8gcX9}$$>PW-%JE(f;Xtyuj}b>ZhX*-?qsbz-X0xP{FQ$h%gsaKo z6|B#8gvU9A+sPugV&7~>c$!1Fn=En$v0YA=I|9Os8cg0#7VkxbXVLm{d_GPVAAEw( zU_j8M(&D3J@nLsAyW+CqULFd;x&~wMNwWC3J#@6ieW{QvB2CYva(h6~+0Lci*bAIX z--a2~@d?D8X*`%kW62WNQ%gTYEwH>h7tg+AiMy!xwiVa%SPtP}vUK1R{PzX~zL)uq zb~`3(_fc0Y&#=*l3lbkC3lCe-osNldV=g2MpUBqfm>#Lmsi)c^xNxPY88>uTeBY1n zN8!y@B8RgRD7?4E_xAW6k8dvV6QBBl_`VR|kw4!C2;q0an`LnOxr9Hwcg6Rf_>O$J z;68+3i|^av%{+wR%mIXVjF)TRga2xLr}%fHKjv@oGeo!$~1soJqBWxzk#i{iim*`8uWMIu1Itxn19F<79oP!qe<4^=;O_(DjhZ>+xR5 zsSgCy_c(tH+$T1*VyRE!+SFgzrb?TB<%QC~FrSanUdnQrX_7FfQtaeX$>FkZiySWd zK8p#>kbC)!PO|u_wwrEa$7#Y=QC>ryiCGxaU8qE}d{KW32OM97D87XQzK0Xhhq%m;XaPEAc&g5Gi9oh*QZ>Ve+#~Kf7s=PQc{uM2-wD8Ff!6&@X9%|dXy{Er@t5) z(;abF1pz;z`zDuV?u4ij?iZ*!lG{Llg3AWP2ZYf zW5x23$or_A)#=w`npy!zvJYJ8Tf17yUOtM$2|5}+Rrs1eRj4ez7Rdz{GkwCaH^-K1 zRrQ@LOVjd^Z8#y zm%}I-y21njCQxxXa_(QX91VcPjgVK6I1%YP(q#r;$`r)3G9|H#S?eE3 zUBVq0;l5VM2w2>furfu55CLMQ`$QbdHv%)fLzoW3)R(_%JtT?k&V0|2rYwx_L1p@3 z`J%tM=PN(;p=UC{4Yysr+>eK_a}DlY{JIsh<MKo@<;mT((p84kVhw6Se^^*;$noQC0a}ho721i zQ`5Ql8*y_8k*8=I#rRBw#qBM!Sny>2&0J|9;OTe8{mo#7h7WY-v3goqQy2AZK^Koi zj>IV6?M$EXf>fRUhUDOxfM>ja%ghjuP>ZQJv}K$Mvy40oMC&}0tXQ?}Sqz%$Ym`;^ ztd)!HMPjnq@(c$GY$GtA_L~0s2E`II+BdAxUi>9Rr>{F876?CGMXPq`9@Tu8FAlU| zU&_f@TW(t@)M98-2Q}lCRqn>gekOC4fln6YC$Ug=7I@uH{nw_$s_8w6VO!R?i;(s+ z#5@Hxlr=V$fhwaq+iAhoyOpu_hAP~DQbHm89p&(UDVxdY65dky3R`J5PRK8*wPJDVf7cbopQ2T_3i;DE?@z(>Q?g1;n)PJuUbJ)8 z?r9!|-p5}dWmR7Gp!+{s*l9eV7PW#dZ}fdOenHZ+5#*UZDnr%PM*;4#4HQf_nZJ0k z(jI`UmV1>xWxJK0I-@j-qb?R-V1i8nliX-IX|C$^bS;p!^08S!U1v;Nj{E7?xM^2( zheVSyjOyHMbVH_0RdM5_m2W{zbF8qfrT&zx9bcOQAWLyY-!j`LC{PD2OmH-dV`y~J zOkWEbh-}EIRc#xQbU41@!x8)Z~;dc-|43H zWcr)oJJ8<@Fm_OPB+ECY&$!ogvze~le^KAFJ1AOqQ8vdhXO-!N3tQP0DvW2I*9FE)R(!}Zg zXkA?wL#I6TVR)Z;;M=SyJ1!<=JT)-H%q{j1pT5;S@Jw)J*V&)BLmS}k`qn$U&i>3D z&32u6Knu`P$C(Fmr%Qfk9=xpFHR0uY=S!}LtJ6TFq=ck}=#)mbk2r0J^VEl5U?!)H zFr{;A1R+q%*ftv!tEmQ(6=scgQ;JRyyGPd^W==l;&2|=ZT6;*RM@rt0F|R!wl~C=* z6c($shx)5AfQyXy0>b+QgRLmn9^wdi@vHHC@4L(o^kVTd@dK_D28-&PC0WgKZBb)? zB1ODU&*kfUbUckB+~ZGU&lje@LZtbe3ZqAfrY_1~;1ZyPJJIs@?f>|16FXPJB1dnr zb#quRRW6-Rg~8lg>=i?@-WrXGQ?W>MtUXL~BBv^mYt`O}pMBpDDNQaVg0odz2;F8r zOZ=kr*={N?AB1-o*BVL=RBYi(=e6NBl=$(1_??3Ib#zE#nR5s%CH83dJXvNXSKptY zG4b@V((^c8imBI13B|$(B5=5B7$j7xv;F7;8jj`6?d6g89C68aSr=FheWv71$J%Us z=9r{}AKK7>laEdGS}D~0>yi!2oB_O=;~{px^64G16wK3HS;Tb(E#Wq z{>;vrObMv2JrOA{^tBP#ednX8Ymc4$D7n7pbL}yllVwpPYmY}_r7k}T!u?no0j~N% z$k!hG0(QknBAn$XesLI9+kc6e|LHx*;eJ4x2bWcLR@h;U!t!;k48ES%X#|ew(u-C% zb%s4#a135CK2vsC@(N`MdzBV{2(ojSi%E%ZjZxJ;DwK9p2dLx{!uXPjw0N)6>mIAK%Hfr6L3;`Sc zBIg(BZkx=zQ8b05xkqW120=&jK@#R$WFz=%*{Jw4+k8Qt3xrNbCzZivaZXhFY0qN# zRZG1t{?xnngu^%XXwFnW86w_l$1yvly_=i?(6=N=V7GQcR=7tyls|&BjVll(3l?Bp zv7|V@jRb{fzZsKZLZE{ke)uoBCfURSRH7K$Xb1O53xD z9S~|IXkW7xT`Hm*IJt{4h02i%aR2A1BK6J_x%lM^zoGaY4c{z`nCV7gwNnc^;~C^A zOQu>jLGrVQ9G8}|j4K%qvck3alIiXErNzjgEf=V$5PiR9Q&aVUeX;n((qM+_ z1Z-FwGAi5iMk>ze+JC)u3v(!D)#s#Hr`0wYFAH~oBT&z^@3O(#vNK zp#%48ZpMAbG`FFH9^b@QY z>(QuQmoHkq(p9MLFWT5TGe;3rPhl34(&@K{DeZ-Af#_nS4QfzR!kYPS?n$SSf08su zW$aaFpI3KAz{*{ks`#zx!$^kQNt!$8=0X#OKJrvT1Vby7Er&0rW z1~0+|JHw^tOxC(P)_mMW)ITh2%ww^uGoAhpA3*9YUI2-q1f4wmg!GMs z#KBgdrkeiuTD&GeLkHghL3A?Ly-8OI@-!R$(()sxStd{}As`?yfhLX~nAK;ciKtfA z$pXw`=0XOwdK3bct>UlI9)!WB>>2Ky;LqOE2x}}5r2+oSk8~|0P`Yq;QKBZzWySF< z_*W3w{}NX?ss_&xmHzY{&og`qgH7Um&5_F_#Gd(i;!dlNg3itpJ@se>zgFzmo;pY^ zfiDNxt8z=H*Vmo`inGLWxX)R8>XTJA#Eqbl*ORCTFG~P0pNPkv`>1iSQ-($gc9T=ITwG zmjgIpYVpPRkm55}zeK+l@M4qVC2P{++lrD{%f!^IK)BykxZYp#d~Y zN%`}iW>luSQX9*bf-;0~i02U8Y{!Mt9SSB)(En^P@G^L@xV!XuYdIGMF2ss*&^~q~ zGd_?`dTBklLnb~@Bc#DSBP78AS?bU+Ir>kCB81ClBJvX|Jne;KGmw%$EbYz`AstDI zWoSsoai?w436hU=MT~Bz>KTv5{7R_a6v1S2DwL&ImYig2ZYY~jN<+h?YPsxh z(NptQNQx(|6Zal8olXUkiseW2AA0H2b7ux#F7TimRo!?^g4Wc>Ut8^Z;@?(xY;bAU zpiWg8hgiEr&N7WBQKPDhZ0D;nHcKb-0e)scHOdh0W$Y8ZG-19fdy9iPZJ6{*1c=W| z1DsDuk@GY~DF8Z)=aZ9f%MqqrajUOQk3d>@t?-ojR7lnAlO}1DEWb==vV4I>NO}x) ze3o0SX@ylt_y-6!2Q;E!vO&Fz`WV(J)xk)bHIL+uXXUQFpJPO(-X``f6p#wZPlxLe zDB);-v4~3Ed;%WGKCAHoBzzK2Yl3td@A7BM@q>y7tPMIAWRil?|8g*gJP&i`fOB2G)}w;8G!r2?Tf)>g!?5IL zC}DGCHYhbr!jOk-v>7JZ_@<2+sTk4B9goJU#@zvNd?T(`zMcu38x}+DHf) zwP!SVwuP5hVpp~YPgr8#5j;DMy)$@rh1c%z+7n)5h(7nfdZs}esrZzYI;`Q&5IoLT z4U?7eFtsuLHl`Gon|rkBx3w30B^}SGg&GE|YCx{hFFU(1iIQjmzO3h#h99*7+GftYdJ2ghPbXnYk-ZuZOa zEN|YtSqJ{QHhbKENXy;u!=_=37cZe_c2rR$47{jP7V3ac{eo|~iMSLFH^E}_W<5%S zagNqRN+;dBzZBHX8bi6l*(y!PV)&}Ba%*QV3U2*J=KK!1IqcjVj=2HpP?j4X7}pqp z-{*DHx28TwAa-p-|2c)&;2R6c)L$4yb1F)6H&?R|Qk|J+X?9o*x7a_hY16P&sI{WB z!SpYX+MyvgXXBW_-u;2%+Z++VJcIar)`cV z)63Am?Ff((bR5bGR%#@ad9rd;8^czP$`$n|QS(PG(Ke(GPgJAL4wuZ)STd8~4DppT zGE7v{^r@)1&B||O*!vzsj~S(I&a`upRt9KRs(ig_vu28umAco0XPNGt{w9$IN9T@B zvE{GSg}K5h_ol8rvcT{uA$?(<4CB==$O_Uxxl^x*9e*~w7=9sB7*~9)!_a?PdV`+% z-cY2rE~6c>g+s#QUqIBC8iH{^z$ZZg0ukrI`QD7b>Og8x^=16MEZLL+N)b^%k$$M7 zi!dENOF1gOFP1)oHk47+}n1{(Nbdh#(-tv$V~_=4m4>RElth#|f< z3^=?bJJc?3B8bSSl8mq#a5Gv_1U~)3$>3ko#7leRj>NIsm7x~@aVfFAf-PH}{*m&~ z3x;Qyl)bZkq|!FpkCcas>hDJ(8*mH0j9GLP!QsPqnKt)A1-_TpS zqg4SPScnwl7^>4BL~#-*R;_?p+RY~OxmFae4M8eNM-|r8-!SmGLbkg^Df5h>(-E*^ z1vq+TAVweZ;`o_a&&MzC8?EGER?&o8SyGd2Te4Q95`#gN5c3tWadGcKS`4YMP`+se zd|u;Cdt&2p*{g(9TVJ%asM#2$#GGOtJ(gP9Fe8bf93IK>ZIxnMLyH7iD06fgexah^ z5hg2wc42242E@9Q6TK#iN&T_#Dz;?j6|P=Y7}~~Wcj%mh7UIJzXrc2_3$25hX`yup z_<{}0{NVU9M#gUDQDxO&fTVAAm@s2)&=X24moTNOD;zSz#3Ndbe^_0Sm8nVE5bYJ= z)PAZ}31*d;l}1%oVwh*5P!Jx^%*KEgm6x!OU8nEdN44JBoY~x@t^UG zUGYuV$W50nJot+>B8IXWCdimaSrm?XEqzvK`gxL}(#F-p#21_yf3S}W=}-*(hWP+^ z`~o%CwbVW;^MAOTc>#HtxlLi5w_ZV-xv-QB`c2p5YfP~X1!efoimrQ1kCQ%-S+jD7 zxSJgszuBpIltZK;S-BuMRhDFM&<|^}pDx;FRk^|tkaoZXg&tU4=if3!;(GY>z;y^Qkhtq7qGm2+4^=!klE%j{2vpx0f zz_TOu?8LJ(_3Xm4EA{NgvpeMhf~iL zJXccB0Xzp%&v`uOQ_mcpxzuwL&&|{`foCH19K~}qdZO8FTXE%Hb>-eyN}s{rr7o*0 zM579occdYhmfEf=+5cqwd{mDG;Q4(G;FcrjT+TO zId1J-OfyWMGt3<@!+rec+7+otUvLuiif=DrRPlCM7O(b%5R8NgNjH<=UiWjx&q+Ty z#uv1P5*b%EBzAVP3dL#abejy8jx z&DA+HfDS!6_2|;0q(`?NJ$m%&(buKRB-O4u)WoE{(a{J&53=rZ)8|#IsWUWoCx9*k^qoQgT>vy;`v=@yWIzc(ng8AV?{Pp+2ES5Y}V+`1#uzJSpO zpx*#(a)o(6-r@^2TGR>gtR6DF7*d*3TUxF0! zVZwB8(p1eO^LIa^87)kLKOtP58cudm+ZpWKKe3&w-S8=j+$oNiq<+TiqRwJyn(=2_ zIc0%@pZW>Oay!6o`}b-M%##3jLyE{4^IXxv(mD{NT9^uleMs_CN)O%7?$ z(@lR{;`-4h&Ym-=pki6M09(3G#-HkynjM~uaDjDv&X%1vzvR26%W}e2+0gG4Ni^$aDO`TaH3mp|bY|BYk;8be5SMR7JFAE0D9fxT7l!r-usqNk zj)a&8qIN!sNjXIz3nC%%9+aSZ`UvkUV3t;A-#}Iex^qZ9TrIdEQcn)47lU*|q~4*@ zK!~otuh>_t^u_2xMdst|W3x`gMj3QwAFL6m4`{?lt1RI zYs^=xf0cUhR3Z%l_n*6c&Ay5G$Sx8@I6P!lxEa=7!C*>L6LwOqu*X|VZ?^liwQ7ZJ z%K?DxXTa7Jfc^L(60vT!mpfYR%K;n>Oq4T4e}X)J!VIni|J`Y&SJ|FRW