Struct SourceInformation
Source information returned by ISourceInformationProvider.
public readonly struct SourceInformation
- Inherited Members
Constructors
SourceInformation(string?, int?)
Source information returned by ISourceInformationProvider.
public SourceInformation(string? sourceFile, int? sourceLine)
Parameters
Properties
SourceFile
Gets the source file, if known; null, otherwise
public string? SourceFile { get; }
Property Value
SourceLine
Gets the source line number, if known; null, otherwise
public int? SourceLine { get; }
Property Value
- int?