Class ProcessFileBoolResult
- Namespace
- SunamoRoslyn.Roslyns
- Assembly
- SunamoRoslyn.dll
Represents the result of processing a source file, including whether it was indexed and its syntax data.
public class ProcessFileBoolResult
- Inheritance
-
ProcessFileBoolResult
- Inherited Members
- Extension Methods
Constructors
ProcessFileBoolResult()
Initializes a new instance of the ProcessFileBoolResult class.
public ProcessFileBoolResult()
Properties
Indexed
Gets or sets a value indicating whether the file was successfully indexed.
public bool Indexed { get; set; }
Property Value
Root
Gets or sets the compilation unit syntax root of the processed file.
public CompilationUnitSyntax? Root { get; set; }
Property Value
Tree
Gets or sets the syntax tree of the processed file.
public SyntaxTree? Tree { get; set; }