Show / Hide Table of Contents

Class BugCreationParams

Info used to edit (or create) a bug.

Inheritance
object
BugCreationParams
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 BugCreationParams

Constructors

View Source

BugCreationParams()

Initializes a new instance of the BugCreationParams class.

Declaration
public BugCreationParams()
View Source

BugCreationParams(IDictionary<string, object>, BugCreationMetaData)

Initializes a new instance of the BugCreationParams class.

Declaration
public BugCreationParams(IDictionary<string, object> fieldValues, BugCreationMetaData metaData)
Parameters
Type Name Description
IDictionary<string, object> fieldValues

The field values.

BugCreationMetaData metaData

The metadata.

Properties

View Source

FieldValues

Gets the map of field names to their values, used to create a bug.

Declaration
public IDictionary<string, object> FieldValues { get; }
Property Value
Type Description
IDictionary<string, object>
View Source

FilesToAttach

Gets or sets files that should be attached to the created bug.

Declaration
public IEnumerable<string> FilesToAttach { get; set; }
Property Value
Type Description
IEnumerable<string>
View Source

ItemsToLink

Gets the work items to be linked to this bug.

Declaration
public List<LinkedBugItem> ItemsToLink { get; }
Property Value
Type Description
List<LinkedBugItem>
View Source

MapFieldToTempImagePaths

Gets the map of fields to temporary image paths, used to create a bug.

Declaration
public IDictionary<string, IEnumerable<string>> MapFieldToTempImagePaths { get; }
Property Value
Type Description
IDictionary<string, IEnumerable<string>>
View Source

MetaData

Gets or sets metadata related to the bug.

Declaration
public BugCreationMetaData MetaData { get; set; }
Property Value
Type Description
BugCreationMetaData
View Source

Tags

Gets the tags to add to this bug.

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