Show / Hide Table of Contents

Class BugCreationHistory

Class that contains the creation history for a bug.

Inheritance
object
BugCreationHistory
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public class BugCreationHistory
Remarks

Initializes a new instance of the BugCreationHistory class.

Constructors

View Source

BugCreationHistory(string, string, string, DateTime?)

Class that contains the creation history for a bug.

Declaration
public BugCreationHistory(string id, string link, string title, DateTime? createdDate)
Parameters
Type Name Description
string id

The ID of the bug in the bug database.

string link

The link to the bug in the bug database.

string title

The title for a bug.

DateTime? createdDate

The date that the bug was created.

Remarks

Initializes a new instance of the BugCreationHistory class.

Properties

View Source

CreatedDate

Gets the date that the bug was created.

Declaration
public DateTime? CreatedDate { get; }
Property Value
Type Description
DateTime?
View Source

ID

Gets the ID of the bug in the database.

Declaration
public string ID { get; }
Property Value
Type Description
string
View Source

Link

Gets the link to the bug.

Declaration
public string Link { get; }
Property Value
Type Description
string
View Source

Title

Gets the title for the bug if available.

Declaration
public string Title { get; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Generated by DocFX