Class BugInfo
Info about an existing bug.
Inherited Members
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public class BugInfo
Constructors
View SourceBugInfo()
Initializes a new instance of the BugInfo class.
Declaration
public BugInfo()
BugInfo(IDictionary<string, object>)
Initializes a new instance of the BugInfo class.
Declaration
public BugInfo(IDictionary<string, object> fieldValues)
Parameters
Type | Name | Description |
---|---|---|
IDictionary<string, object> | fieldValues | The field values to copy into the instance. |
Properties
View SourceBugKey
Gets or sets the bug key associated with this bug info.
Declaration
public string BugKey { get; set; }
Property Value
Type | Description |
---|---|
string |
CreationMetaData
Gets or sets Aruba-specific meta-data provided when creating the bug, if any.
Declaration
public BugCreationMetaData CreationMetaData { get; set; }
Property Value
Type | Description |
---|---|
BugCreationMetaData |
DisplayInfo
Gets or sets the display information for this bug. Example: The bug title.
Declaration
public string DisplayInfo { get; set; }
Property Value
Type | Description |
---|---|
string |
FieldValues
Gets the map of field names to their values. The IDictionary<TKey, TValue> can be modified but not assigned, as it is case-insensitive on its keys.
Declaration
public IDictionary<string, object> FieldValues { get; }
Property Value
Type | Description |
---|---|
IDictionary<string, object> |
Tags
Gets the list of tags this bug has.
Declaration
public List<string> Tags { get; }
Property Value
Type | Description |
---|---|
List<string> |