-
Notifications
You must be signed in to change notification settings - Fork 0
/
IErrorInfo.cs
74 lines (73 loc) · 2.06 KB
/
IErrorInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using System;
namespace ErrorUnit.Interfaces
{
/// <summary>
/// Error Info
/// </summary>
public interface IErrorInfo
{
/// <summary>
/// Gets the error unit error identifier.
/// </summary>
/// <value>
/// The error unit error identifier.
/// </value>
Guid ErrorUnitErrorId { get; }
/// <summary>
/// Gets or sets the error unit web call identifier.
/// </summary>
/// <value>
/// The error unit web call identifier.
/// </value>
Guid? ErrorUnitWebCallId { get; set; }
/// <summary>
/// Gets or sets the exception message.
/// </summary>
/// <value>
/// The exception message.
/// </value>
string ExceptionMessage { get; set; }
/// <summary>
/// Gets or sets the type of the exception.
/// </summary>
/// <value>
/// The type of the exception.
/// </value>
string ExceptionType { get; set; }
/// <summary>
/// Gets or sets the name of the host.
/// </summary>
/// <value>
/// The name of the host.
/// </value>
string HostName { get; set; }
/// <summary>
/// Gets or sets the inner error information.
/// </summary>
/// <value>
/// The inner error information.
/// </value>
IErrorInfo InnerErrorInfo { get; set; }
/// <summary>
/// Gets or sets the stack trace.
/// </summary>
/// <value>
/// The stack trace.
/// </value>
string StackTrace { get; set; }
/// <summary>
/// Gets or sets the error thrown date time.
/// </summary>
/// <value>
/// The error thrown.
/// </value>
DateTime ErrorThrown { get; set; }
/// <summary>
/// Gets or sets the name of the machine.
/// </summary>
/// <value>
/// The name of the machine.
/// </value>
string MachineName { get; set; }
}
}