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.SourceLocations.

Arguments:
Return type:

Microsoft.AspNetCore.Razor.SourceLocation

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:
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:
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:
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:
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.SourceLocations.

Arguments:
Return type:

Microsoft.AspNetCore.Razor.SourceLocation

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:
Return type:

Microsoft.AspNetCore.Razor.SourceLocation

Returns:

The advanced Microsoft.AspNetCore.Razor.SourceLocation.

public static SourceLocation Advance(SourceLocation left, string text)
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()