Show / Hide Table of Contents

Class BugInfo

Info about an existing bug.

Inheritance
object
BugInfo
DupeCheckBugInfo
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 BugInfo

Constructors

View Source

BugInfo()

Initializes a new instance of the BugInfo class.

Declaration
public BugInfo()
View Source

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 Source

BugKey

Gets or sets the bug key associated with this bug info.

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

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
View Source

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
View Source

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>
View Source

Tags

Gets the list of tags this bug has.

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