-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.cs
More file actions
39 lines (32 loc) · 1.28 KB
/
error.cs
File metadata and controls
39 lines (32 loc) · 1.28 KB
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
namespace InsertDataIntoElasticSearch
{
using System;
using Nest;
//[ElasticType(IdProperty = "filePath")]
public class error
{
public string errorType { get; set; }
public string message { get; set; }
//public string source { get; set; }
//public string errorArea { get; set; }
//public string queryString { get; set; }
//public string siteId { get; set; }
//public string model { get; set; }
//public string modelState { get; set; }
//public string eolUserName { get; set; }
//public string name { get; set; }
//public string httpClientSrcIP { get; set; }
public string errorTime { get; set; }
//public string sessionId { get; set; }
//public string rpiSession { get; set; }
//public string isRPISessionIdEquaulToASPNetSessionId { get; set; }
//public string aspxAUTHCookie { get; set; }
//public string httpSoapAction { get; set; }
//public string pathTranslated { get; set; }
//public string httpReferer { get; set; }
//public string sessionStartQueryString { get; set; }
public string filePath { get; set; }
//public string host { get; set; }
//public string returnUrl { get; set; }
}
}