Summary
Base class for all optional pull request system capabilities.
- Assembly
- Cake
.Issues .PullRequests .dll - Namespace
- Cake
.Issues .PullRequests - Interfaces
- Base Types
-
- Object
- Derived Types
graph BT
Type-->Base0["Object"]
Type-.->Interface0["IPullRequestSystemCapability"]
click Interface0 "/api/Cake.Issues.PullRequests/IPullRequestSystemCapability"
Type["BasePullRequestSystemCapability<T>"]
class Type type-node
Derived0["BaseCheckingCommitIdCapability<T>"]-->Type
click Derived0 "/api/Cake.Issues.PullRequests/BaseCheckingCommitIdCapability_1"
Derived1["BaseDiscussionThreadsCapability<T>"]-->Type
click Derived1 "/api/Cake.Issues.PullRequests/BaseDiscussionThreadsCapability_1"
Derived2["BaseFilteringByModifiedFilesCapability<T>"]-->Type
click Derived2 "/api/Cake.Issues.PullRequests/BaseFilteringByModifiedFilesCapability_1"
Syntax
public abstract class BasePullRequestSystemCapability<T> : IPullRequestSystemCapability
where T : class, IPullRequestSystem
Type Parameters
Name | Description |
---|---|
T | Type of the pull request system. |
Constructors
Name | Summary |
---|---|
Base |
Initializes a new instance of the BasePullRequestSystemCapability<T> class.
|
Properties
Name | Value | Summary |
---|---|---|
Log | ICakeLog |
Gets the Cake log context.
|
PullRequestSystem | T |
Gets the pull request system to which the capability belongs.
|
Extension Methods
Name | Value | Summary |
---|---|---|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From IssuesArgumentChecks
|