Opc.Ua.Server.DataChangeMonitoredItem.SetStructureChanged C# (CSharp) Method

SetStructureChanged() public method

Sets a flag indicating that the structure of the monitored node has changed.
The StatusCode for next value reported by the monitored item will have the StructureChanged bit set.
public SetStructureChanged ( ) : void
return void
        public void SetStructureChanged()
        {
            lock (m_lock)
            {
                m_structureChanged = true;
            }
        }