Opc.Ua.Sample.DataChangeMonitoredItem.SetSemanticsChanged C# (CSharp) Метод

SetSemanticsChanged() публичный Метод

Sets a flag indicating that the semantics for the monitored node have changed.
The StatusCode for next value reported by the monitored item will have the SemanticsChanged bit set.
public SetSemanticsChanged ( ) : void
Результат void
        public void SetSemanticsChanged()
        {
            lock (m_lock)
            {
                m_semanticsChanged = true;
            }
        }