From f597c7d2ae5993189d0bc32b909e05ccfddc4831 Mon Sep 17 00:00:00 2001 From: Ralf Schleicher Date: Fri, 6 Dec 2024 11:06:08 +0100 Subject: [PATCH] Fixed wrong comment. --- Stack/Opc.Ua.Core/Schema/ApplicationConfiguration.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Stack/Opc.Ua.Core/Schema/ApplicationConfiguration.cs b/Stack/Opc.Ua.Core/Schema/ApplicationConfiguration.cs index 8954694b9..63a7f7e31 100644 --- a/Stack/Opc.Ua.Core/Schema/ApplicationConfiguration.cs +++ b/Stack/Opc.Ua.Core/Schema/ApplicationConfiguration.cs @@ -2526,19 +2526,22 @@ public MessageTransportMode MessageTransportMode #region MessageTransportMode Enumeration /// - /// The type of binary encoding support allowed by a channel. + /// The mode of message transportation. /// + /// + /// When using TCP this affects the configuration of the . + /// [DataContract(Namespace = Namespaces.OpcUaConfig)] public enum MessageTransportMode { /// - /// The UA binary encoding may be used. + /// This mode signalizes, that delay in message transportation is accepted. /// [EnumMember()] DataEfficient, /// - /// The UA binary encoding must be used. + /// This mode signalizes, that delay in message transportation is not accepted. /// [EnumMember()] TimeCritical