Summary
Base class for an issue.
- Assembly
- Cake
.Issues .dll - Namespace
- Cake
.Issues - Interfaces
- Base Types
-
- Object
graph BT
Type-->Base0["Object"]
Type-.->Interface0["IIssue"]
click Interface0 "/api/Cake.Issues/IIssue"
Type["Issue"]
class Type type-node
Syntax
public class Issue : IIssue
Constructors
Properties
Name | Value | Summary |
---|---|---|
Additional |
IReadOnlyDictionary |
Gets a dictionary with additional information regarding the issue.
|
Affected |
FilePath |
Gets the path to the file affected by the issue.
The path is relative to the repository root.
Can be
null if issue is not related to a change in a file.
|
Column | Nullable |
Gets the column in the file where the issues has occurred.
null if the issue affects the whole file or an assembly.
|
EndColumn | Nullable |
Gets the end of the column range in the file where the issues has occurred.
null if the issue affects the whole file, an assembly or only a single column.
|
EndLine | Nullable |
Gets the end of the line range in the file where the issues has occurred.
null if the issue affects the whole file, an assembly or only a single line.
|
FileLink | Uri |
Gets or sets a link to the position in the file where the issue occurred.
null if FileLinkSettings was not set while reading issue.
|
Identifier | string |
Gets the identifier for the message.
The identifier can be used to identify the same issue across multiple runs.
|
Line | Nullable |
Gets the line in the file where the issues has occurred.
null if the issue affects the whole file or an assembly.
|
MessageHtml | string |
Gets the message of the issue in HTML format.
|
MessageMarkdown | string |
Gets the message of the issue in Markdown format.
|
MessageText | string |
Gets the message of the issue in text format.
|
Priority | Nullable |
Gets the priority of the message. A higher value indicates a higher priority.
null if no priority was assigned.
|
PriorityName | string |
Gets the human friendly name of the priority.
null or System.String.Empty if no priority was assigned.
|
Project |
FilePath |
Gets the path to the project to which the file affected by the issue belongs.
The path is relative to the repository root.
Can be
null if issue is not related to a project.
|
ProjectName | string |
Gets the name of the project to which the file affected by the issue belongs.
Can be
null or System.String.Empty if issue is not related to a project.
|
ProviderName | string |
Gets the human friendly name of the issue provider.
|
ProviderType | string |
Gets the type of the issue provider.
|
RuleId | string |
Gets the id of the rule of the issue.
Can be
null or System.String.Empty if the issue provider provides no rule.
|
RuleName | string |
Gets the name of the rule of the issue.
Can be
null or System.String.Empty if the issue provider provides no rule.
|
RuleUrl | Uri |
Gets the URL containing information about the failing rule.
Can be
null if the issue provider provides no URL.
|
Run | string |
Gets or sets the description of the run.
Can be
null or System.String.Empty if no run information is provided.
|
Extension Methods
Name | Value | Summary |
---|---|---|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From IssuesArgumentChecks
|