SourceLocation 构造函数

定义

重载

SourceLocation(Int32, Int32, Int32)

初始化 SourceLocation 的新实例。

SourceLocation(String, Int32, Int32, Int32)

初始化 SourceLocation 的新实例。

SourceLocation(Int32, Int32, Int32)

初始化 SourceLocation 的新实例。

public:
 SourceLocation(int absoluteIndex, int lineIndex, int characterIndex);
public SourceLocation (int absoluteIndex, int lineIndex, int characterIndex);
new Microsoft.AspNetCore.Razor.SourceLocation : int * int * int -> Microsoft.AspNetCore.Razor.SourceLocation
Public Sub New (absoluteIndex As Integer, lineIndex As Integer, characterIndex As Integer)

参数

absoluteIndex
Int32

绝对索引。

lineIndex
Int32

行索引。

characterIndex
Int32

字符索引。

适用于

SourceLocation(String, Int32, Int32, Int32)

初始化 SourceLocation 的新实例。

public:
 SourceLocation(System::String ^ filePath, int absoluteIndex, int lineIndex, int characterIndex);
public SourceLocation (string filePath, int absoluteIndex, int lineIndex, int characterIndex);
new Microsoft.AspNetCore.Razor.SourceLocation : string * int * int * int -> Microsoft.AspNetCore.Razor.SourceLocation
Public Sub New (filePath As String, absoluteIndex As Integer, lineIndex As Integer, characterIndex As Integer)

参数

filePath
String

文件路径。

absoluteIndex
Int32

绝对索引。

lineIndex
Int32

行索引。

characterIndex
Int32

字符索引。

适用于