Class BugFilerMessage
The queue message used to trigger the bug filer function.
Inheritance
BugFilerMessage
Assembly: CrashCABN.BugFiler.Abstractions.dll
Syntax
public sealed record BugFilerMessage : IEquatable<BugFilerMessage>
Constructors
View Source
The queue message used to trigger the bug filer function.
Declaration
public BugFilerMessage(string TitleName, string ApplicationName, string ApplicationVersion, IReadOnlyCollection<AttachmentInfo> Attachments, ImmutableDictionary<string, MetadataItem> Metadata, DateTime? IngestionRequested = null, int? MaxRequestedCrashesForVersion = null)
Parameters
Properties
View Source
ApplicationName
Declaration
public string ApplicationName { get; init; }
Property Value
View Source
ApplicationVersion
Declaration
public string ApplicationVersion { get; init; }
Property Value
View Source
Attachments
Declaration
public IReadOnlyCollection<AttachmentInfo> Attachments { get; init; }
Property Value
View Source
IngestionRequested
Declaration
public DateTime? IngestionRequested { get; init; }
Property Value
View Source
MaxRequestedCrashesForVersion
Declaration
public int? MaxRequestedCrashesForVersion { get; init; }
Property Value
View Source
Declaration
public ImmutableDictionary<string, MetadataItem> Metadata { get; init; }
Property Value
View Source
TitleName
Declaration
public string TitleName { get; init; }
Property Value
Methods
View Source
Equals(BugFilerMessage?)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(BugFilerMessage? other)
Parameters
Type |
Name |
Description |
BugFilerMessage |
other |
An object to compare with this object.
|
Returns
Type |
Description |
bool |
true if the current object is equal to the other parameter; otherwise, false.
|
View Source
GetHashCode()
Serves as the default hash function.
Declaration
public override int GetHashCode()
Returns
Type |
Description |
int |
A hash code for the current object.
|
Overrides
View Source
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type |
Description |
string |
A string that represents the current object.
|
Overrides
Implements