SensorShare.ViewNotAvailableAnnotationControl.DoUpdateInvoke C# (CSharp) Method

DoUpdateInvoke() protected method

protected DoUpdateInvoke ( ) : void
return void
        protected void DoUpdateInvoke()
        {
            if (this.InvokeRequired)
            {
                this.Invoke(updateDel);
            }
            else
            {
                DoUpdate();
            }
        }