Table of Contents

Class ParseError

Namespace
MonoGame.Effect.TPGParser
Assembly
MonoGame.Framework.Content.Pipeline.dll
[Serializable]
public class ParseError
Inheritance
ParseError
Inherited Members

Constructors

ParseError()

public ParseError()

ParseError(string, int)

public ParseError(string message, int code)

Parameters

message string
code int

ParseError(string, int, ParseNode)

public ParseError(string message, int code, ParseNode node)

Parameters

message string
code int
node ParseNode

ParseError(string, int, Token)

public ParseError(string message, int code, Token token)

Parameters

message string
code int
token Token

ParseError(string, int, string, int, int, int, int)

public ParseError(string message, int code, string file, int line, int col, int pos, int length)

Parameters

message string
code int
file string
line int
col int
pos int
length int

Properties

Code

public int Code { get; }

Property Value

int

Column

public int Column { get; }

Property Value

int

File

public string File { get; }

Property Value

string

Length

public int Length { get; }

Property Value

int

Line

public int Line { get; }

Property Value

int

Message

public string Message { get; }

Property Value

string

Position

public int Position { get; }

Property Value

int