Opc.Ua.AlarmConditionState.OnTimerExpired C# (CSharp) Method

OnTimerExpired() private method

Called when timed shelve period expires.
private OnTimerExpired ( object state ) : void
state object
return void
        private void OnTimerExpired(object state)
        {
            try
            {
                if (OnTimedUnshelve != null)
                {
                    OnTimedUnshelve((ISystemContext)state, this);
                }
            }
            catch (Exception e)
            {
                Utils.Trace(e, "Unexpected error unshelving alarm.");
            }
        }
        #endregion