Class BugCreationHistory
Class that contains the creation history for a bug.
Inherited Members
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 SourceBugCreationHistory(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 SourceCreatedDate
Gets the date that the bug was created.
Declaration
public DateTime? CreatedDate { get; }
Property Value
Type | Description |
---|---|
DateTime? |
ID
Gets the ID of the bug in the database.
Declaration
public string ID { get; }
Property Value
Type | Description |
---|---|
string |
Link
Gets the link to the bug.
Declaration
public string Link { get; }
Property Value
Type | Description |
---|---|
string |
Title
Gets the title for the bug if available.
Declaration
public string Title { get; }
Property Value
Type | Description |
---|---|
string |