Interface IErrorListItem
Interface for a IErrorList item.
public interface IErrorListItem
Properties
Column
Gets the column in the file where the error occurred.
int? Column { get; }
Property Value
- int?
Description
Gets the description (the shown message) of the list item.
string Description { get; }
Property Value
File
Gets the name of the file where the error occurred.
string File { get; }
Property Value
ItemType
Gets the ErrorListItemType.
ErrorListItemType ItemType { get; }
Property Value
Line
Gets the line in the file where the error occurred.
int? Line { get; }
Property Value
- int?
OnClick
Gets the action on a click on the item in the list.
Action OnClick { get; }
Property Value
Path
Gets the path of the file where the error occurred.
string Path { get; }