Class PlayerErrorSourceLocation
Represents logged source line numbers reported in an error. NOTE: file and line are from chromium c++ implementation code, not js.
public sealed record PlayerErrorSourceLocation : IEquatable<PlayerErrorSourceLocation>
- Inheritance
-
PlayerErrorSourceLocation
- Implements
- Inherited Members
Constructors
PlayerErrorSourceLocation(string, long)
Represents logged source line numbers reported in an error. NOTE: file and line are from chromium c++ implementation code, not js.
public PlayerErrorSourceLocation(string File, long Line)
Parameters
Properties
File
public string File { get; init; }
Property Value
Line
public long Line { get; init; }