Show / Hide Table of Contents

    Class GitHubIssueResult.Issue

    Actual GitHub Issue type

    Inheritance
    System.Object
    GitHubIssueResult.Issue
    Implements
    IHaveRawContent
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Sloader.Result.Types
    Assembly: Sloader.Result.dll
    Syntax
    public class Issue : IHaveRawContent

    Properties

    View Source

    Actor

    Who issued the issue

    Declaration
    public string Actor { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    Body

    Initial body text of the PullRequest or Issue

    Declaration
    public string Body { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    CreatedAt

    DateTime when the event happend

    Declaration
    public DateTime CreatedAt { get; set; }
    Property Value
    Type Description
    System.DateTime
    View Source

    Id

    Each GitHubEvent has its own unique ID

    Declaration
    public string Id { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    IsPullRequest

    True if Issue is related to a Pull Request

    Declaration
    public bool IsPullRequest { get; set; }
    Property Value
    Type Description
    System.Boolean
    View Source

    Number

    Defines the Issue Number on GitHub

    Declaration
    public string Number { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    RawContent

    JSON serialized complete event data

    Declaration
    public string RawContent { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    RelatedDescription

    Some human readable information

    Declaration
    public string RelatedDescription { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    State

    State of the PullRequest or Issue, e.g. open or closed

    Declaration
    public string State { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    Title

    Readable title of the issue or PullRequest

    Declaration
    public string Title { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    Url

    Target URL of the Issue or PullRequest

    Declaration
    public string Url { get; set; }
    Property Value
    Type Description
    System.String

    Implements

    IHaveRawContent
    • View Source
    Back to top Sloader - MIT License