FireOnUpdateBegin() private method

Fires 'update begin' event on the main thread context
private FireOnUpdateBegin ( ) : void
return void
Example #1
0
        private void ProcessChange(TextChangeContext context)
        {
            _editorTree.FireOnUpdateBegin();

            if (_pendingChanges.IsSimpleChange)
            {
                ProcessSimpleChange(context);
            }
            else
            {
                ProcessComplexChange(context);
            }
        }