// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System.Web.Razor.Text; namespace System.Web.Razor { /// /// Arguments for the DocumentParseComplete event in RazorEditorParser /// public class DocumentParseCompleteEventArgs : EventArgs { /// /// Indicates if the tree structure has actually changed since the previous reparse. /// public bool TreeStructureChanged { get; set; } /// /// The results of the code generation and parsing /// public GeneratorResults GeneratorResults { get; set; } /// /// The TextChange which triggered the reparse /// public TextChange SourceChange { get; set; } } }