Show / Hide Table of Contents

Class CrashAndBugDetails

Contains the details for a crash and whether or not it would be pull ingested, along with the details for a matching bug instance if it exists.

Inheritance
object
CrashAndBugDetails
Implements
IEquatable<CrashAndBugDetails>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: CrashCABN.PullIngestion
Assembly: CrashCABN.PullIngestion.dll
Syntax
public sealed record CrashAndBugDetails : IEquatable<CrashAndBugDetails>

Constructors

View Source

CrashAndBugDetails(string?, BugDetails?, string?)

Contains the details for a crash and whether or not it would be pull ingested, along with the details for a matching bug instance if it exists.

Declaration
public CrashAndBugDetails(string? Bucket = null, BugDetails? ExistingBug = null, string? IgnoreReason = null)
Parameters
Type Name Description
string Bucket
BugDetails ExistingBug
string IgnoreReason

Properties

View Source

Bucket

Declaration
public string? Bucket { get; init; }
Property Value
Type Description
string
View Source

ExistingBug

Declaration
public BugDetails? ExistingBug { get; init; }
Property Value
Type Description
BugDetails
View Source

IgnoreReason

Declaration
public string? IgnoreReason { get; init; }
Property Value
Type Description
string

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX