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 SourceBugRepositoryDetails()
Declaration
public BugRepositoryDetails()
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 SourceDefaultBugItemTypeText
Declaration
public const string DefaultBugItemTypeText = "Bug"
Field Value
Type | Description |
---|---|
System.String |
DefaultCrashInstanceItemTypeText
Declaration
public const string DefaultCrashInstanceItemTypeText = "Crash Instance"
Field Value
Type | Description |
---|---|
System.String |
Properties
View SourceBugItemType
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 |
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 |
Repository
Declaration
[Required]
public object Repository { get; }
Property Value
Type | Description |
---|---|
System.Object |
Implements
System.IEquatable<T>