Mono.TextEditor.TextDocument.InformLoadComplete C# (CSharp) Méthode

InformLoadComplete() public méthode

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