Show / Hide Table of Contents

Class BugRepositoryDetails

Details about the bug storage system to use.

Inheritance
System.Object
BugRepositoryDetails
Implements
System.IEquatable<BugRepositoryDetails>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: CrashCABN.BugFiler
Assembly: CrashCABN.BugFiler.Abstractions.dll
Syntax
public class BugRepositoryDetails : IEquatable<BugRepositoryDetails>

Constructors

View Source

BugRepositoryDetails()

Declaration
public BugRepositoryDetails()
View Source

BugRepositoryDetails(Object, String, String)

Declaration
public BugRepositoryDetails(object repository, string bugItemType = null, string crashInstanceItemType = null)
Parameters
Type Name Description
System.Object repository
System.String bugItemType
System.String crashInstanceItemType

Fields

View Source

DefaultBugItemTypeText

Declaration
public const string DefaultBugItemTypeText = "Bug"
Field Value
Type Description
System.String
View Source

DefaultCrashInstanceItemTypeText

Declaration
public const string DefaultCrashInstanceItemTypeText = "Crash Instance"
Field Value
Type Description
System.String

Properties

View Source

BugItemType

Gets or sets the item type that crash bugs should be created as.

Declaration
[StringLength(2147483647, MinimumLength = 1)]
public string BugItemType { get; set; }
Property Value
Type Description
System.String
View Source

CrashInstanceItemType

Gets or sets the item type that each crash instance should be created as.

Declaration
[StringLength(2147483647, MinimumLength = 1)]
public string CrashInstanceItemType { get; set; }
Property Value
Type Description
System.String
View Source

Repository

Declaration
[Required]
public object Repository { get; }
Property Value
Type Description
System.Object

Implements

System.IEquatable<T>
  • View Source
In This Article
Back to top Generated by DocFX