AGS.Editor.ScriptEditor.AutoComplete_BackgroundCacheUpdateStatusChanged C# (CSharp) Method

AutoComplete_BackgroundCacheUpdateStatusChanged() private method

private AutoComplete_BackgroundCacheUpdateStatusChanged ( BackgroundAutoCompleteStatus status, Exception errorDetails ) : void
status BackgroundAutoCompleteStatus
errorDetails System.Exception
return void
        private void AutoComplete_BackgroundCacheUpdateStatusChanged(BackgroundAutoCompleteStatus status, Exception errorDetails)
        {
            if (status == BackgroundAutoCompleteStatus.Finished)
            {
                if (this.IsHandleCreated)
                {
                    this.Invoke(new AnonymousDelegate(UpdateFunctionList));
                }
            }
        }