SourceLocation Struct¶
A location in a Razor file.
- Namespace
Microsoft.AspNetCore.Razor
- Assemblies
- Microsoft.AspNetCore.Razor
Syntax¶
[Serializable]
public struct SourceLocation : IEquatable<SourceLocation>, IComparable<SourceLocation>
-
struct
Microsoft.AspNetCore.Razor.
SourceLocation
Constructors¶
-
SourceLocation
(System.Int32, System.Int32, System.Int32)¶ Initializes a new instance of
Microsoft.AspNetCore.Razor.SourceLocation
.Arguments: - absoluteIndex (System.Int32) – The absolute index.
- lineIndex (System.Int32) – The line index.
- characterIndex (System.Int32) – The character index.
public SourceLocation(int absoluteIndex, int lineIndex, int characterIndex)
-
SourceLocation
(System.String, System.Int32, System.Int32, System.Int32) Initializes a new instance of
Microsoft.AspNetCore.Razor.SourceLocation
.Arguments: - filePath (System.String) – The file path.
- absoluteIndex (System.Int32) – The absolute index.
- lineIndex (System.Int32) – The line index.
- characterIndex (System.Int32) – The character index.
public SourceLocation(string filePath, int absoluteIndex, int lineIndex, int characterIndex)
-
Properties¶
-
Microsoft.AspNetCore.Razor.SourceLocation.
AbsoluteIndex
¶ Return type: System.Int32 public int AbsoluteIndex { get; set; }
-
Microsoft.AspNetCore.Razor.SourceLocation.
CharacterIndex
¶ Return type: System.Int32 public int CharacterIndex { get; set; }
-
Microsoft.AspNetCore.Razor.SourceLocation.
FilePath
¶ Path of the file.
Return type: System.String public string FilePath { get; set; }
-
Microsoft.AspNetCore.Razor.SourceLocation.
LineIndex
¶ Gets the 1-based index of the line referred to by this Source Location.
Return type: System.Int32 public int LineIndex { get; set; }
-
Operators¶
-
Addition
(Microsoft.AspNetCore.Razor.SourceLocation, Microsoft.AspNetCore.Razor.SourceLocation)¶ Adds two
Microsoft.AspNetCore.Razor.SourceLocation
s.Arguments: - left (Microsoft.AspNetCore.Razor.SourceLocation) – The left operand.
- right (Microsoft.AspNetCore.Razor.SourceLocation) – The right operand.
Return type: Returns: A
Microsoft.AspNetCore.Razor.SourceLocation
that is the sum of the left and right operands.public static SourceLocation operator +(SourceLocation left, SourceLocation right)
-
Equality
(Microsoft.AspNetCore.Razor.SourceLocation, Microsoft.AspNetCore.Razor.SourceLocation)¶ Determines whether the operands are equal.
Arguments: - left (Microsoft.AspNetCore.Razor.SourceLocation) – The left operand.
- right (Microsoft.AspNetCore.Razor.SourceLocation) – The right operand.
Return type: System.Boolean
Returns: <code>true</code> if <em>left</em> and <em>right</em> are equal.
public static bool operator ==(SourceLocation left, SourceLocation right)
-
GreaterThan
(Microsoft.AspNetCore.Razor.SourceLocation, Microsoft.AspNetCore.Razor.SourceLocation)¶ Determines whether the first operand is greater than the second operand.
Arguments: - left (Microsoft.AspNetCore.Razor.SourceLocation) – The left operand.
- right (Microsoft.AspNetCore.Razor.SourceLocation) – The right operand.
Return type: System.Boolean
Returns: <code>true</code> if <em>left</em> is greater than <em>right</em>.
public static bool operator>(SourceLocation left, SourceLocation right)
-
Inequality
(Microsoft.AspNetCore.Razor.SourceLocation, Microsoft.AspNetCore.Razor.SourceLocation)¶ Determines whether the operands are not equal.
Arguments: - left (Microsoft.AspNetCore.Razor.SourceLocation) – The left operand.
- right (Microsoft.AspNetCore.Razor.SourceLocation) – The right operand.
Return type: System.Boolean
Returns: <code>true</code> if <em>left</em> and <em>right</em> are not equal.
public static bool operator !=(SourceLocation left, SourceLocation right)
-
LessThan
(Microsoft.AspNetCore.Razor.SourceLocation, Microsoft.AspNetCore.Razor.SourceLocation)¶ Determines whether the first operand is less than the second operand.
Arguments: - left (Microsoft.AspNetCore.Razor.SourceLocation) – The left operand.
- right (Microsoft.AspNetCore.Razor.SourceLocation) – The right operand.
Return type: System.Boolean
Returns: <code>true</code> if <em>left</em> is less than <em>right</em>.
public static bool operator <(SourceLocation left, SourceLocation right)
-
Subtraction
(Microsoft.AspNetCore.Razor.SourceLocation, Microsoft.AspNetCore.Razor.SourceLocation)¶ Subtracts two
Microsoft.AspNetCore.Razor.SourceLocation
s.Arguments: - left (Microsoft.AspNetCore.Razor.SourceLocation) – The left operand.
- right (Microsoft.AspNetCore.Razor.SourceLocation) – The right operand.
Return type: Returns: A
Microsoft.AspNetCore.Razor.SourceLocation
that is the difference of the left and right operands.public static SourceLocation operator -(SourceLocation left, SourceLocation right)
-
Methods¶
-
Advance
(Microsoft.AspNetCore.Razor.SourceLocation, System.String)¶ Advances the
Microsoft.AspNetCore.Razor.SourceLocation
by the length of the <em>text</em>.Arguments: - left (Microsoft.AspNetCore.Razor.SourceLocation) – The
Microsoft.AspNetCore.Razor.SourceLocation
to advance. - text (System.String) – The
System.String
to advance <em>left</em> by.
Return type: Returns: The advanced
Microsoft.AspNetCore.Razor.SourceLocation
.public static SourceLocation Advance(SourceLocation left, string text)
- left (Microsoft.AspNetCore.Razor.SourceLocation) – The
-
CompareTo
(Microsoft.AspNetCore.Razor.SourceLocation)¶ Return type: System.Int32 public int CompareTo(SourceLocation other)
-
Equals
(Microsoft.AspNetCore.Razor.SourceLocation)¶ Return type: System.Boolean public bool Equals(SourceLocation other)
-
Equals
(System.Object) Return type: System.Boolean public override bool Equals(object obj)
-
GetHashCode
()¶ Return type: System.Int32 public override int GetHashCode()
-
ToString
()¶ Return type: System.String public override string ToString()
-
Fields¶
-
Undefined
()¶ An undefined
Microsoft.AspNetCore.Razor.SourceLocation
.Return type: Microsoft.AspNetCore.Razor.SourceLocation public static readonly SourceLocation Undefined
-
Zero
()¶ A
Microsoft.AspNetCore.Razor.SourceLocation
withMicrosoft.AspNetCore.Razor.SourceLocation.AbsoluteIndex
,Microsoft.AspNetCore.Razor.SourceLocation.LineIndex
, andMicrosoft.AspNetCore.Razor.SourceLocation.CharacterIndex
initialized to 0.Return type: Microsoft.AspNetCore.Razor.SourceLocation public static readonly SourceLocation Zero
-