Interface
IBug

Represents the bug from the tracking system.

Definition

Namespace:ArtOfTest.WebAii.Design.Extensibility.BugTracking

Assembly:ArtOfTest.WebAii.Design.dll

Syntax:

cs-api-definition
public interface IBug

Derived Classes: Bug

Properties

AssignedTo

Get/set the bug assignee.

Declaration

cs-api-definition
string AssignedTo { get; set; }

Property Value

string

Attachments

Get the bug attachments.

Declaration

cs-api-definition
List<IBugAttachment> Attachments { get; }

Property Value

List<IBugAttachment>

Author

Get the bug author.

Declaration

cs-api-definition
string Author { get; }

Property Value

string

CreatedDate

Get the date the bug has been submitted.

Declaration

cs-api-definition
DateTime CreatedDate { get; }

Property Value

DateTime

Description

Get/set the bug description.

Declaration

cs-api-definition
string Description { get; set; }

Property Value

string

ID

Get the Id of bug in the bug tracking system.

Declaration

cs-api-definition
int ID { get; }

Property Value

int

Priority

Get/set the bug priority.

Declaration

cs-api-definition
int Priority { get; set; }

Property Value

int

Title

Get/set the bug title.

Declaration

cs-api-definition
string Title { get; set; }

Property Value

string