Summary
Base class for all log file format implementations.
- Assembly
- Cake
.Issues .dll - Namespace
- Cake
.Issues - Interfaces
- Base Types
-
- Object
- Derived Types
graph BT
Type-->Base0["Object"]
Type-.->Interface0["ILogFileFormat<TIssueProvider, TSettings>"]
Type["BaseLogFileFormat<TIssueProvider, TSettings>"]
class Type type-node
Derived0["BaseMsBuildLogFileFormat"]-->Type
click Derived0 "/api/Cake.Issues.MsBuild/BaseMsBuildLogFileFormat"
Derived1["BaseEsLintLogFileFormat"]-->Type
click Derived1 "/api/Cake.Issues.EsLint/BaseEsLintLogFileFormat"
Derived2["FakeLogFileFormat"]-->Type
click Derived2 "/api/Cake.Issues.Testing/FakeLogFileFormat"
Derived3["BaseMarkdownlintLogFileFormat"]-->Type
click Derived3 "/api/Cake.Issues.Markdownlint/BaseMarkdownlintLogFileFormat"
Syntax
public abstract class BaseLogFileFormat<TIssueProvider, TSettings> :
ILogFileFormat<TIssueProvider, TSettings>
where TIssueProvider : BaseMultiFormatIssueProvider<TSettings, TIssueProvider> where TSettings : BaseMultiFormatIssueProviderSettings<TIssueProvider, TSettings>
Type Parameters
Name | Description |
---|---|
TIssueProvider | Type of the issue provider. |
TSettings | Type of the settings. |
Constructors
Name | Summary |
---|---|
BaseLogFileFormat |
Initializes a new instance of the BaseLogFileFormat<TIssueProvider, TSettings> class.
|
Properties
Name | Value | Summary |
---|---|---|
Log | ICakeLog |
Gets the Cake log instance.
|
Methods
Name | Value | Summary |
---|---|---|
ReadIssues |
IEnumerable |
Gets all issues.
|
Extension Methods
Name | Value | Summary |
---|---|---|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From IssuesArgumentChecks
|