In This Article

IParseErrorProvider Interface

Provides the base requirements for an object that returns a list of IParseError objects, and is generally implemented by IParseData instances if they support error reporting.

public interface IParseErrorProvider

Properties

Errors

Gets the collection of IParseError objects that specify parse errors.

IEnumerable<IParseError> Errors { get; }

Property Value

IEnumerable<IParseError>:

The collection of IParseError objects that specify parse errors.

See Also

Snapshot

Gets the ITextSnapshot, if known, from which the parse errors were created.

ITextSnapshot Snapshot { get; }

Property Value

ITextSnapshot:

The ITextSnapshot, if known, from which the parse errors were created.

See Also

See Also