From ac554feb2f8b84108ce0e02e363f8df328a47967 Mon Sep 17 00:00:00 2001 From: Hans Gschossmann Date: Fri, 27 Oct 2017 18:53:12 +0200 Subject: [PATCH] Update comment --- src/OpcSession.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpcSession.cs b/src/OpcSession.cs index f58ceb4..f9ffc8a 100644 --- a/src/OpcSession.cs +++ b/src/OpcSession.cs @@ -892,7 +892,7 @@ namespace OpcPublisher opcSubscription.OpcMonitoredItems.Add(opcMonitoredItem); Trace($"AddNodeForMonitoring: Added item with nodeId '{(expandedNodeId == null ? nodeId.ToString() : expandedNodeId.ToString())}' for monitoring."); - // update the publishing data + // trigger the actual OPC communication with the server to be done Task.Run(async () => await ConnectAndMonitorAsync(ct)); } } @@ -935,7 +935,7 @@ namespace OpcPublisher } } - // Stop publishing. + // trigger the actual OPC communication with the server to be done Task.Run(async () => await ConnectAndMonitorAsync(ct)); } catch (Exception e)