Class TextChangeEventArgs
Inheritance
TextChangeEventArgs
Assembly: Microsoft.CodeAnalysis.dll
Syntax
public class TextChangeEventArgs : EventArgs
Constructors
TextChangeEventArgs(SourceText, SourceText, params TextChangeRange[])
Declaration
public TextChangeEventArgs(SourceText oldText, SourceText newText, params TextChangeRange[] changes)
Parameters
TextChangeEventArgs(SourceText, SourceText, IEnumerable<TextChangeRange>)
Declaration
public TextChangeEventArgs(SourceText oldText, SourceText newText, IEnumerable<TextChangeRange> changes)
Parameters
Properties
Changes
Declaration
public IReadOnlyList<TextChangeRange> Changes { get; }
Property Value
NewText
Declaration
public SourceText NewText { get; }
Property Value
OldText
Declaration
public SourceText OldText { get; }
Property Value