Interface ICrashSource
Represents a crash source, which may be used to load a crash instance for analysis.
Namespace: CrashCABN.CrashSources
Assembly: CrashCABN.CrashSources.Abstractions.dll
Syntax
public interface ICrashSource
Methods
View SourceLoadCrashAsync(IReadOnlyCollection<AdditionalFileInfo>?)
Loads the specific crash instance from the source.
Declaration
Task<CrashInstance?> LoadCrashAsync(IReadOnlyCollection<AdditionalFileInfo>? additionalFiles = null)
Parameters
Type | Name | Description |
---|---|---|
IReadOnlyCollection<AdditionalFileInfo> | additionalFiles |
Returns
Type | Description |
---|---|
Task<CrashInstance> | A crash instance, if it could be loaded. |