Skip to content

Commit

Permalink
Fixed wrong comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
sxleixer committed Dec 12, 2024
1 parent 8dd77e0 commit f597c7d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Stack/Opc.Ua.Core/Schema/ApplicationConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2526,19 +2526,22 @@ public MessageTransportMode MessageTransportMode

#region MessageTransportMode Enumeration
/// <summary>
/// The type of binary encoding support allowed by a channel.
/// The mode of message transportation.
/// </summary>
/// <remarks>
/// When using TCP this <see cref="MessageTransportMode"/> affects the configuration of the <seealso cref="System.Net.Sockets.Socket"/>.
/// </remarks>
[DataContract(Namespace = Namespaces.OpcUaConfig)]
public enum MessageTransportMode
{
/// <summary>
/// The UA binary encoding may be used.
/// This mode signalizes, that delay in message transportation is accepted.
/// </summary>
[EnumMember()]
DataEfficient,

/// <summary>
/// The UA binary encoding must be used.
/// This mode signalizes, that delay in message transportation is not accepted.
/// </summary>
[EnumMember()]
TimeCritical
Expand Down

0 comments on commit f597c7d

Please sign in to comment.