In This Article

IParseError Interface

Provides the base requirements for an object that indicates a message, warning or error related to parsing.

public interface IParseError

Properties

ClassificationType

The optional IClassificationType associated with the error.

IClassificationType? ClassificationType { get; }

Property Value

IClassificationType

See Also

Description

The description of the error, which is displayed in the user interface.

string? Description { get; }

Property Value

string

See Also

Level

A ParseErrorLevel indicating the error level.

ParseErrorLevel Level { get; }

Property Value

ParseErrorLevel

See Also

PositionRange

The TextPositionRange of the error, if known.

TextPositionRange? PositionRange { get; }

Property Value

TextPositionRange?

See Also

Extension Methods

See Also