master
md 21 lines 511 Bytes
Rendered Raw
1 # ProcessCrashInformation
2
3 Crash information supplied by the `Session.ProcessCrashed` event.
4
5 ```csharp
6 public sealed class ProcessCrashInformation
7 {
8 public string DumpPath { get; }
9 public string ProcessName { get; }
10 public uint Pid { get; }
11 public uint Signal { get; }
12 public DateTimeOffset Timestamp { get; }
13 }
14 ```
15
16 Example:
17
18 ```csharp
19 session.ProcessCrashed += information =>
20 Console.WriteLine($"{information.ProcessName} ({information.Pid}) crashed at {information.Timestamp}");
21 ```