Interface ICrashInstance
Internal crash instance details.
Namespace: CrashCABN.Metadata
Assembly: CrashCABN.Metadata.Abstractions.dll
Syntax
public interface ICrashInstance
Properties
View SourceApplicationName
Gets the package or application name of the crashed process.
Declaration
string? ApplicationName { get; }
Property Value
Type | Description |
---|---|
string |
ApplicationVersion
Gets the version of the package or application name.
Declaration
string? ApplicationVersion { get; }
Property Value
Type | Description |
---|---|
string |
Attachments
Gets a collection of attached files.
Declaration
IReadOnlyCollection<AttachmentInfo> Attachments { get; }
Property Value
Type | Description |
---|---|
IReadOnlyCollection<AttachmentInfo> |
Id
Gets a crash identifier.
Declaration
Guid Id { get; }
Property Value
Type | Description |
---|---|
Guid |
IsDevelopment
Gets a value indicating whether this is a development or retail crash.
Declaration
bool IsDevelopment { get; }
Property Value
Type | Description |
---|---|
bool |
Name
Gets a description of the crash.
Declaration
string? Name { get; }
Property Value
Type | Description |
---|---|
string |
ProcessName
Gets the name of the crashed process.
Declaration
string? ProcessName { get; }
Property Value
Type | Description |
---|---|
string |
Source
Gets the crash source.
Declaration
string Source { get; }
Property Value
Type | Description |
---|---|
string |
TitleName
Gets the title's name or secret code name.
Declaration
string? TitleName { get; }
Property Value
Type | Description |
---|---|
string |