Opc.Ua.BaseInstanceState.ReportEvent C# (CSharp) Method

ReportEvent() public method

Sets the flag which indicates whether event are being monitored for the instance and its children.
public ReportEvent ( ISystemContext context, IFilterTarget e ) : void
context ISystemContext The system context.
e IFilterTarget The event to report.
return void
        public override void ReportEvent(ISystemContext context, IFilterTarget e)
        {
            base.ReportEvent(context, e);

            // recusively notify the parent.
            if (m_parent != null)
            {
                m_parent.ReportEvent(context, e);
            }
        }