Class DupeCheckBugInfo
Represents the bug information to be displayed in the duplicate checking feature.
Inherited Members
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public class DupeCheckBugInfo : BugInfo
Constructors
View SourceDupeCheckBugInfo(string, IDictionary<string, object>, Uri, string)
Initializes a new instance of the DupeCheckBugInfo class.
Declaration
public DupeCheckBugInfo(string id, IDictionary<string, object> fields, Uri uri, string createdBy)
Parameters
Type | Name | Description |
---|---|---|
string | id | The ID of the bug. |
IDictionary<string, object> | fields | The properties of this bug. |
Uri | uri | The uri link to this bug. |
string | createdBy | The name of the user that created the bug. |
Properties
View SourceAttachments
Gets the attachment information for this bug.
Declaration
public List<DupeCheckAttachmentInfo> Attachments { get; }
Property Value
Type | Description |
---|---|
List<DupeCheckAttachmentInfo> |
ConfidenceMatch
Gets or sets the confidence in the percent match this bug is to the bug the user is filing.
Declaration
public int ConfidenceMatch { get; set; }
Property Value
Type | Description |
---|---|
int |
CreatedBy
Gets the name of the person that submitted the bug.
Declaration
public string CreatedBy { get; }
Property Value
Type | Description |
---|---|
string |
Description
Gets the description of the bug.
Declaration
public string Description { get; }
Property Value
Type | Description |
---|---|
string |
Distance
Gets or sets the distance the bug is away from the current bug.
Declaration
public float Distance { get; set; }
Property Value
Type | Description |
---|---|
float |
State
Gets the state of the bug.
Declaration
public string State { get; }
Property Value
Type | Description |
---|---|
string |
TimeCreated
Gets the time this bug was created in local time.
Declaration
public string TimeCreated { get; }
Property Value
Type | Description |
---|---|
string |
Remarks
The format of this string will be displayed on 12 hour clock, like '3:00 PM'.
Title
Gets the title of the bug.
Declaration
public string Title { get; }
Property Value
Type | Description |
---|---|
string |
UriLink
Gets the URI link to the bug.
Declaration
public Uri UriLink { get; }
Property Value
Type | Description |
---|---|
Uri |