Mono.TextEditor.TextDocument.InformLoadComplete C# (CSharp) Method

InformLoadComplete() public method

Informs the document when the content is loaded. All outstanding actions are executed.
public InformLoadComplete ( ) : void
return void
		public void InformLoadComplete ()
		{
			if (isLoaded)
				return;
			isLoaded = true;
			loadedActions.ForEach (act => act ());
			loadedActions = null;
		}
		
TextDocument