Class BugFilerMessage
The queue message used to trigger the bug filer function.
Inheritance
System.Object
BugFilerMessage
Implements
System.IEquatable<BugFilerMessage>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: CrashCABN.BugFiler
Assembly: CrashCABN.BugFiler.Abstractions.dll
Syntax
public sealed class BugFilerMessage : IEquatable<BugFilerMessage>
Constructors
View SourceBugFilerMessage(String, IReadOnlyCollection<AttachmentInfo>, ImmutableDictionary<String, MetadataItem>)
Declaration
public BugFilerMessage(string titleName, IReadOnlyCollection<AttachmentInfo> attachments, ImmutableDictionary<string, MetadataItem> metadata)
Parameters
Type | Name | Description |
---|---|---|
System.String | titleName | |
System.Collections.Generic.IReadOnlyCollection<AttachmentInfo> | attachments | |
System.Collections.Immutable.ImmutableDictionary<System.String, MetadataItem> | metadata |
Properties
View SourceAttachments
Declaration
public IReadOnlyCollection<AttachmentInfo> Attachments { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<AttachmentInfo> |
Metadata
Declaration
public ImmutableDictionary<string, MetadataItem> Metadata { get; }
Property Value
Type | Description |
---|---|
System.Collections.Immutable.ImmutableDictionary<System.String, MetadataItem> |
TitleName
Declaration
public string TitleName { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
View SourceEquals(BugFilerMessage)
Declaration
public bool Equals(BugFilerMessage other)
Parameters
Type | Name | Description |
---|---|---|
BugFilerMessage | other |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Overrides
System.Object.GetHashCode()
View Source
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()
Implements
System.IEquatable<T>