-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathListProperty.cs
49 lines (37 loc) · 1.09 KB
/
ListProperty.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
//Author: Antonio Leonardo de Abreu Freire, Microsoft Certified ID: 13271836
//My profile: https://br.linkedin.com/in/antonio-leonardo
//Contacts: [email protected]
using System;
using System.Xml.Serialization;
namespace CamlQueryApi
{
[Serializable, XmlRoot]
public sealed class ListProperty
{
[XmlElement]
public bool AutoHyperLink { get; set; }
[XmlElement]
public bool AutoHyperLinkNoEncoding { get; set; }
[XmlElement]
public bool AutoNewLine { get; set; }
[XmlElement]
public string Default { get; set; }
[XmlElement]
public bool ExpandXML { get; set; }
[XmlElement]
public bool HTMLEncode { get; set; }
[XmlElement]
public string Select { get; set; }
[XmlElement]
public bool StripWS { get; set; }
[XmlElement]
public bool URLEnconde { get; set; }
[XmlElement]
public bool URLEncondeAsURL { get; set; }
public override string ToString()
{
return this.ToCamlString();
}
}
}