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
CrashAndBugDetails
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
Properties
View Source
Bucket
Declaration
public string? Bucket { get; init; }
Property Value
View Source
ExistingBug
Declaration
public BugDetails? ExistingBug { get; init; }
Property Value
View Source
IgnoreReason
Declaration
public string? IgnoreReason { get; init; }
Property Value
Implements