Interface IErrorReport

An error report.

Namespace: PushTechnology.ClientInterface.Client.Types
Assembly: Diffusion.Client.dll
Syntax
public interface IErrorReport

Properties

Column

Returns a column number at which the problem was found.

Declaration
int Column { get; }
Property Value
Type Description
System.Int32

The column number at which the problem was found.

Line

Returns a line number at which the problem was found.

Declaration
int Line { get; }
Property Value
Type Description
System.Int32

The line number at which the problem was found.

Message

Returns an error message.

Declaration
string Message { get; }
Property Value
Type Description
System.String

The error message.

Back to top