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
| namespace WIDESEA_Core.Enums
| {
| public enum LoggerType
| {
| System = 0,
| Info,
| Success,
| Error,
| Authorzie,
| Global,
| Login,
| Exception,
| ApiException,
| HandleError,
| OnActionExecuted,
| GetUserInfo,
| Edit,
| Search,
| Add,
| Del,
| AppHome,
| ApiLogin,
| ApiPINLogin,
| ApiRegister,
| ApiModifyPwd,
| ApiSendPIN,
| ApiAuthorize,
| Ask,
| JoinMeeting,
| JoinUs,
| EditUserInfo,
| Sell,
| Buy,
| ReportPrice,
| Reply,
| TechData,
| TechSecondData,
| DelPublicQuestion,
| DelexpertQuestion,
| CreateTokenError,
| IPhoneTest,
| SDKSuccess,
| SDKSendError,
| ExpertAuthority,
| ParEmpty,
| NoToken,
| ReplaceToeken
| }
| }
|
|