Class BugDetails
Contains the details for a bug instance along with any matching
crash instance IDs that have been filed for the given app version,
as well as any other bug IDs that are considered duplicate.
Assembly: CrashCABN.BugFiler.Abstractions.dll
Syntax
public sealed record BugDetails : IEquatable<BugDetails>
Constructors
View Source
BugDetails(object?, int?, IEnumerable<int>, IEnumerable<int>)
Contains the details for a bug instance along with any matching
crash instance IDs that have been filed for the given app version,
as well as any other bug IDs that are considered duplicate.
Declaration
public BugDetails(object? Bug, int? Id, IEnumerable<int> DuplicateBugIds, IEnumerable<int> CrashesForVersion)
Parameters
Properties
View Source
Bug
Declaration
public object? Bug { get; init; }
Property Value
View Source
CrashesForVersion
Declaration
public IEnumerable<int> CrashesForVersion { get; init; }
Property Value
View Source
DuplicateBugIds
Declaration
public IEnumerable<int> DuplicateBugIds { get; init; }
Property Value
View Source
Id
Declaration
public int? Id { get; init; }
Property Value
Implements