forked from pgstath/Sharp.Xmpp
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathErrorType.cs
More file actions
33 lines (29 loc) · 735 Bytes
/
ErrorType.cs
File metadata and controls
33 lines (29 loc) · 735 Bytes
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
namespace XMPPEngineer
{
/// <summary>
/// Defines possible values for the type of XMPP errors.
/// </summary>
public enum ErrorType
{
/// <summary>
/// Do not retry (the error is unrecoverable).
/// </summary>
Cancel,
/// <summary>
/// Proceed (the condition was only a warning).
/// </summary>
Continue,
/// <summary>
/// Retry after changing the data sent.
/// </summary>
Modify,
/// <summary>
/// Retry after providing credentials.
/// </summary>
Auth,
/// <summary>
/// Retry after waiting (the error is temporary).
/// </summary>
Wait
}
}