AGS.Editor.ScriptEditor.AutoComplete_BackgroundCacheUpdateStatusChanged C# (CSharp) Метод

AutoComplete_BackgroundCacheUpdateStatusChanged() приватный Метод

private AutoComplete_BackgroundCacheUpdateStatusChanged ( BackgroundAutoCompleteStatus status, Exception errorDetails ) : void
status BackgroundAutoCompleteStatus
errorDetails System.Exception
Результат void
        private void AutoComplete_BackgroundCacheUpdateStatusChanged(BackgroundAutoCompleteStatus status, Exception errorDetails)
        {
            if (status == BackgroundAutoCompleteStatus.Finished)
            {
                if (this.IsHandleCreated)
                {
                    this.Invoke(new AnonymousDelegate(UpdateFunctionList));
                }
            }
        }