AvalonStudio.Languages.CSharp.CSharpLanguageService.UnregisterSourceFile C# (CSharp) Метод

UnregisterSourceFile() публичный Метод

public UnregisterSourceFile ( TextEditor editor, ISourceFile file ) : void
editor TextEditor
file ISourceFile
Результат void
        public void UnregisterSourceFile(TextEditor editor, ISourceFile file)
        {
            var association = GetAssociatedData(file);

            editor.RemoveHandler(InputElement.KeyUpEvent, association.KeyUpHandler);

            association.Solution = null;
            dataAssociations.Remove(file);
        }