IssueBuilder.

NewIssue<T>(string, string, T) Method

Summary

Initiates the creation of a new IIssue.
Assembly
Cake.Issues.dll
Namespace
Cake.Issues
Containing Type
IssueBuilder

Syntax

public static IssueBuilder NewIssue<T>(string identifier, string message, T issueProvider) 
    where T : IIssueProvider

Type Parameters

Name Description
T Type of the issue provider which has the issue created.

Parameters

Name Type Description
identifier string The identifier of the message.
message string The message of the issue in plain text format.
issueProvider T Issue provider which has the issue created.

Return Value

Type Description
IssueBuilder Builder class for creating a new issue.
GitHub