BaseIssueComponent<T> Class

Summary

Base class for all Cake.Issues component.
graph BT Type-->Base0["Object"] Type-.->Interface0["IBaseIssueComponent<T>"] Type["BaseIssueComponent<T>"] class Type type-node Derived0["BaseIssueProvider"]-->Type click Derived0 "/api/Cake.Issues/BaseIssueProvider" Derived1["FakeIssueComponent"]-->Type click Derived1 "/api/Cake.Issues.Testing/FakeIssueComponent" Derived2["IssueReportFormat"]-->Type click Derived2 "/api/Cake.Issues.Reporting/IssueReportFormat" Derived3["BasePullRequestSystem"]-->Type click Derived3 "/api/Cake.Issues.PullRequests/BasePullRequestSystem"

Syntax

public abstract class BaseIssueComponent<T> : IBaseIssueComponent<T> 
    where T : class, IRepositorySettings

Type Parameters

Name Description
T Type of settings.

Constructors

Name Summary
BaseIssueComponent(ICakeLog) Initializes a new instance of the BaseIssueComponent<T> class.

Properties

Name Value Summary
Log ICakeLog
Gets the Cake log context.
Settings T
Gets the settings. Is set after Initialize(T) was called from the core add-in.

Methods

Name Value Summary
AssertInitialized() void
Asserts that Initialize(T) was called.
Initialize(T) bool
Initializes the component.

Extension Methods

Name Value Summary
NotNull<BaseIssueComponent<T>>(string) void
Throws an exception if the specified parameter's value is null.
GitHub