ISupportDiscussionThreads Interface

Summary

Interface describing that a pull request system supports discussion threads.
graph BT Type-.->Interface0["IPullRequestSystemCapability"] click Interface0 "/api/Cake.Issues.PullRequests/IPullRequestSystemCapability" Type["ISupportDiscussionThreads"] class Type type-node Implementing0["BaseDiscussionThreadsCapability<T>"]-.->Type click Implementing0 "/api/Cake.Issues.PullRequests/BaseDiscussionThreadsCapability_1"

Syntax

public interface ISupportDiscussionThreads : IPullRequestSystemCapability

Methods

Name Value Summary
FetchDiscussionThreads(string) IEnumerable<IPullRequestDiscussionThread>
Returns a list of all discussion threads.
ReopenDiscussionThreads(IEnumerable<IPullRequestDiscussionThread>) void
Marks a list of discussion threads as active.
ResolveDiscussionThreads(IEnumerable<IPullRequestDiscussionThread>) void
Marks a list of discussion threads as resolved.

Extension Methods

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