annotate Stocks/Stocks.Service/NLog.xsd @ 106:62477c2e8837

Command tests
author stevenhollidge <stevenhollidge@hotmail.com>
date Sun, 06 May 2012 13:00:46 +0100
parents 399398841fd0
children
rev   line source
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3 <xs:schema id="NLog" targetNamespace="http://www.nlog-project.org/schemas/NLog.xsd" elementFormDefault="qualified"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
4 xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.nlog-project.org/schemas/NLog.xsd">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
5 <xs:element name="nlog" type="NLogConfiguration" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
6 <xs:complexType name="NLogConfiguration">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
7 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
8 <xs:element name="extensions" type="NLogExtensions" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
9 <xs:element name="include" type="NLogInclude" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
10 <xs:element name="variable" type="NLogVariable" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
11 <xs:element name="targets" type="NLogTargets" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
12 <xs:element name="rules" type="NLogRules" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
13 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
14 <xs:attribute name="autoReload" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
15 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
16 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
17 Watch config file for changes and reload automatically.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
18 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
19 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
20 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
21 <xs:attribute name="internalLogToConsole" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
22 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
23 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
24 Print internal NLog messages to the console. Default value is: false
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
25 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
26 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
27 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
28 <xs:attribute name="internalLogToConsoleError" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
29 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
30 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
31 Print internal NLog messages to the console error output. Default value is: false
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
32 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
33 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
34 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
35 <xs:attribute name="internalLogFile" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
36 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
37 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
38 Write internal NLog messages to the specified file.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
39 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
40 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
41 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
42 <xs:attribute name="internalLogLevel" type="NLogLevel">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
43 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
44 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
45 Log level threshold for internal log messages. Default value is: Info.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
46 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
47 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
48 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
49 <xs:attribute name="globalThreshold" type="NLogLevel">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
50 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
51 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
52 Global log level threshold for application log messages. Messages below this level won't be logged..
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
53 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
54 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
55 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
56 <xs:attribute name="throwExceptions" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
57 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
58 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
59 Pass NLog internal exceptions to the application. Default value is: false.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
60 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
61 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
62 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
63 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
64 <xs:complexType name="NLogTargets">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
65 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
66 <xs:element name="default-wrapper" type="WrapperTargetBase" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
67 <xs:element name="default-target-parameters" type="Target" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
68 <xs:element name="target" type="Target" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
69 <xs:element name="wrapper-target" type="WrapperTargetBase" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
70 <xs:element name="compound-target" type="CompoundTargetBase" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
71 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
72 <xs:attribute name="async" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
73 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
74 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
75 Make all targets within this section asynchronous (creates additional threads but the calling thread isn't blocked by any target writes).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
76 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
77 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
78 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
79 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
80 <xs:complexType name="NLogRules">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
81 <xs:sequence minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
82 <xs:element name="logger" type="NLogLoggerRule" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
83 </xs:sequence>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
84 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
85 <xs:complexType name="NLogExtensions">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
86 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
87 <xs:element name="add" type="NLogExtensionsAdd" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
88 </xs:choice>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
89 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
90 <xs:complexType name="NLogExtensionsAdd">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
91 <xs:attribute name="prefix" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
92 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
93 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
94 Prefix for targets/layout renderers/filters/conditions loaded from this assembly.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
95 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
96 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
97 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
98 <xs:attribute name="assemblyFile" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
99 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
100 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
101 Load NLog extensions from the specified file (*.dll)
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
102 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
103 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
104 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
105 <xs:attribute name="assembly" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
106 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
107 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
108 Load NLog extensions from the specified assembly. Assembly name should be fully qualified.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
109 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
110 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
111 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
112 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
113 <xs:complexType name="NLogLoggerRule">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
114 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
115 <xs:element name="filters" type="NLogFilters" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
116 </xs:choice>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
117 <xs:attribute name="name" use="optional">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
118 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
119 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
120 Name of the logger. May include '*' character which acts like a wildcard. Allowed forms are: *, Name, *Name, Name* and *Name*
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
121 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
122 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
123 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
124 <xs:attribute name="levels" type="NLogLevelList">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
125 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
126 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
127 Comma separated list of levels that this rule matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
128 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
129 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
130 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
131 <xs:attribute name="minlevel" type="NLogLevel">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
132 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
133 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
134 Minimum level that this rule matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
135 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
136 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
137 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
138 <xs:attribute name="maxlevel" type="NLogLevel">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
139 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
140 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
141 Maximum level that this rule matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
142 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
143 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
144 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
145 <xs:attribute name="level" type="NLogLevel">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
146 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
147 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
148 Level that this rule matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
149 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
150 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
151 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
152 <xs:attribute name="writeTo" type="NLogTargetIDList">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
153 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
154 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
155 Comma separated list of target names.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
156 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
157 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
158 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
159 <xs:attribute name="final" type="xs:boolean" default="false">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
160 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
161 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
162 Ignore further rules if this one matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
163 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
164 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
165 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
166 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
167 <xs:complexType name="NLogFilters">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
168 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
169 <xs:element name="when" type="when" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
170 <xs:element name="whenContains" type="whenContains" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
171 <xs:element name="whenEqual" type="whenEqual" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
172 <xs:element name="whenNotContains" type="whenNotContains" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
173 <xs:element name="whenNotEqual" type="whenNotEqual" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
174 </xs:choice>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
175 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
176 <xs:simpleType name="NLogLevel">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
177 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
178 <xs:enumeration value="Off" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
179 <xs:enumeration value="Trace" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
180 <xs:enumeration value="Debug" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
181 <xs:enumeration value="Info" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
182 <xs:enumeration value="Warn" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
183 <xs:enumeration value="Error" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
184 <xs:enumeration value="Fatal" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
185 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
186 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
187 <xs:simpleType name="NLogLevelList">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
188 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
189 <xs:pattern value="(|Trace|Debug|Info|Warn|Error|Fatal)(,(Trace|Debug|Info|Warn|Error|Fatal))*" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
190 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
191 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
192 <xs:complexType name="NLogInclude">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
193 <xs:attribute name="file" type="SimpleLayoutAttribute" use="required">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
194 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
195 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
196 Name of the file to be included. The name is relative to the name of the current config file.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
197 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
198 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
199 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
200 <xs:attribute name="ignoreErrors" type="xs:boolean" use="optional" default="false">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
201 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
202 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
203 Ignore any errors in the include file.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
204 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
205 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
206 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
207 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
208 <xs:complexType name="NLogVariable">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
209 <xs:attribute name="name" type="xs:string" use="required">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
210 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
211 <xs:documentation>Variable name.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
212 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
213 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
214 <xs:attribute name="value" type="SimpleLayoutAttribute" use="required">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
215 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
216 <xs:documentation>Variable value.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
217 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
218 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
219 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
220 <xs:simpleType name="NLogTargetIDList">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
221 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
222 <xs:pattern value="(|([a-zA-Z][a-zA-Z0-9_\-]*))(,([a-zA-Z][a-zA-Z0-9_\-]*))*" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
223 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
224 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
225 <xs:complexType name="Target" abstract="true"></xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
226 <xs:complexType name="TargetRef">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
227 <xs:attribute name="name" type="xs:string" use="required" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
228 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
229 <xs:complexType name="WrapperTargetBase" abstract="true">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
230 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
231 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
232 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
233 <xs:element name="target" type="Target" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
234 <xs:element name="wrapper-target" type="WrapperTargetBase" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
235 <xs:element name="compound-target" type="CompoundTargetBase" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
236 <xs:element name="target-ref" type="TargetRef" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
237 <xs:element name="wrapper-target-ref" type="TargetRef" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
238 <xs:element name="compound-target-ref" type="TargetRef" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
239 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
240 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
241 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
242 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
243 <xs:complexType name="CompoundTargetBase" abstract="true">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
244 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
245 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
246 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
247 <xs:element name="target" type="Target" minOccurs="1" maxOccurs="unbounded" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
248 <xs:element name="wrapper-target" type="WrapperTargetBase" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
249 <xs:element name="compound-target" type="CompoundTargetBase" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
250 <xs:element name="target-ref" type="TargetRef" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
251 <xs:element name="wrapper-target-ref" type="TargetRef" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
252 <xs:element name="compound-target-ref" type="TargetRef" minOccurs="1" maxOccurs="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
253 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
254 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
255 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
256 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
257 <xs:complexType name="Layout"></xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
258 <xs:complexType name="Filter" abstract="true"></xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
259 <xs:simpleType name="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
260 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
261 <xs:pattern value=".*" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
262 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
263 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
264 <xs:simpleType name="Condition">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
265 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
266 <xs:minLength value="1" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
267 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
268 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
269 <xs:complexType name="AsyncWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
270 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
271 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
272 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
273 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
274 <xs:element name="queueLimit" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
275 <xs:element name="timeToSleepBetweenBatches" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
276 <xs:element name="batchSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
277 <xs:element name="overflowAction" minOccurs="0" maxOccurs="1"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
278 type="NLog.Targets.Wrappers.AsyncTargetWrapperOverflowAction" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
279 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
280 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
281 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
282 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
283 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
284 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
285 <xs:attribute name="queueLimit" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
286 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
287 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
288 Limit on the number of requests in the lazy writer thread request queue.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
289 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
290 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
291 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
292 <xs:attribute name="timeToSleepBetweenBatches" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
293 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
294 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
295 Time in milliseconds to sleep between batches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
296 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
297 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
298 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
299 <xs:attribute name="batchSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
300 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
301 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
302 Number of log events that should be processed in a batch by the lazy writer thread.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
303 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
304 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
305 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
306 <xs:attribute name="overflowAction" type="NLog.Targets.Wrappers.AsyncTargetWrapperOverflowAction">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
307 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
308 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
309 Action to be taken when the lazy writer thread request queue count exceeds the set limit.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
310 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
311 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
312 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
313 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
314 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
315 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
316 <xs:simpleType name="NLog.Targets.Wrappers.AsyncTargetWrapperOverflowAction">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
317 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
318 <xs:enumeration value="Grow" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
319 <xs:enumeration value="Discard" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
320 <xs:enumeration value="Block" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
321 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
322 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
323 <xs:complexType name="AutoFlushWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
324 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
325 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
326 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
327 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
328 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
329 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
330 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
331 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
332 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
333 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
334 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
335 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
336 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
337 <xs:complexType name="BufferingWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
338 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
339 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
340 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
341 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
342 <xs:element name="slidingTimeout" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
343 <xs:element name="bufferSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
344 <xs:element name="flushTimeout" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
345 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
346 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
347 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
348 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
349 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
350 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
351 <xs:attribute name="slidingTimeout" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
352 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
353 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
354 Indicates whether to use sliding timeout.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
355 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
356 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
357 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
358 <xs:attribute name="bufferSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
359 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
360 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
361 Number of log events to be buffered.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
362 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
363 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
364 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
365 <xs:attribute name="flushTimeout" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
366 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
367 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
368 Timeout (in milliseconds) after which the contents of buffer will be flushed if there's no write in the specified period of time. Use -1 to disable timed flushes.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
369 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
370 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
371 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
372 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
373 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
374 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
375 <xs:complexType name="Chainsaw">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
376 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
377 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
378 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
379 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
380 <xs:element name="newLine" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
381 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
382 <xs:element name="onOverflow" minOccurs="0" maxOccurs="1" type="NLog.Targets.NetworkTargetOverflowAction" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
383 <xs:element name="maxMessageSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
384 <xs:element name="encoding" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
385 <xs:element name="connectionCacheSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
386 <xs:element name="address" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
387 <xs:element name="keepConnection" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
388 <xs:element name="includeSourceInfo" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
389 <xs:element name="includeCallSite" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
390 <xs:element name="appInfo" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
391 <xs:element name="ndcItemSeparator" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
392 <xs:element name="includeNdc" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
393 <xs:element name="includeNLogData" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
394 <xs:element name="parameter" minOccurs="0" maxOccurs="unbounded" type="NLog.Targets.NLogViewerParameterInfo" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
395 <xs:element name="includeMdc" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
396 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
397 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
398 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
399 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
400 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
401 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
402 <xs:attribute name="newLine" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
403 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
404 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
405 Indicates whether to append newline at the end of log message.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
406 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
407 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
408 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
409 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
410 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
411 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
412 Instance of that is used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
413 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
414 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
415 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
416 <xs:attribute name="onOverflow" type="NLog.Targets.NetworkTargetOverflowAction">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
417 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
418 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
419 Action that should be taken if the message is larger than maxMessageSize.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
420 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
421 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
422 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
423 <xs:attribute name="maxMessageSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
424 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
425 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
426 Maximum message size in bytes.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
427 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
428 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
429 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
430 <xs:attribute name="encoding" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
431 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
432 <xs:documentation>Encoding to be used.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
433 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
434 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
435 <xs:attribute name="connectionCacheSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
436 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
437 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
438 Size of the connection cache (number of connections which are kept alive).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
439 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
440 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
441 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
442 <xs:attribute name="address" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
443 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
444 <xs:documentation>Network address.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
445 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
446 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
447 <xs:attribute name="keepConnection" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
448 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
449 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
450 Indicates whether to keep connection open whenever possible.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
451 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
452 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
453 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
454 <xs:attribute name="includeSourceInfo" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
455 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
456 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
457 Indicates whether to include source info (file name and line number) in the information sent over the network.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
458 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
459 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
460 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
461 <xs:attribute name="includeCallSite" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
462 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
463 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
464 Indicates whether to include call site (class and method name) in the information sent over the network.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
465 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
466 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
467 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
468 <xs:attribute name="appInfo" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
469 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
470 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
471 AppInfo field. By default it's the friendly name of the current AppDomain.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
472 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
473 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
474 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
475 <xs:attribute name="ndcItemSeparator" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
476 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
477 <xs:documentation>NDC item separator.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
478 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
479 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
480 <xs:attribute name="includeNdc" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
481 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
482 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
483 Indicates whether to include stack contents.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
484 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
485 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
486 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
487 <xs:attribute name="includeNLogData" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
488 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
489 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
490 Indicates whether to include NLog-specific extensions to log4j schema.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
491 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
492 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
493 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
494 <xs:attribute name="includeMdc" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
495 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
496 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
497 Indicates whether to include dictionary contents.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
498 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
499 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
500 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
501 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
502 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
503 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
504 <xs:simpleType name="NLog.Targets.NetworkTargetOverflowAction">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
505 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
506 <xs:enumeration value="Error" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
507 <xs:enumeration value="Split" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
508 <xs:enumeration value="Discard" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
509 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
510 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
511 <xs:complexType name="NLog.Targets.NLogViewerParameterInfo">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
512 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
513 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
514 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
515 </xs:choice>
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
516 <xs:attribute name="layout" type="SimpleLayoutAttribute">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
517 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
518 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
519 Layout that should be use to calcuate the value for the parameter.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
520 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
521 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
522 </xs:attribute>
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
523 <xs:attribute name="name" type="xs:string">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
524 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
525 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
526 Viewer parameter name.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
527 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
528 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
529 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
530 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
531 <xs:complexType name="Console">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
532 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
533 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
534 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
535 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
536 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
537 <xs:element name="footer" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
538 <xs:element name="header" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
539 <xs:element name="error" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
540 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
541 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
542 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
543 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
544 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
545 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
546 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
547 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
548 <xs:documentation>Text to be rendered.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
549 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
550 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
551 <xs:attribute name="footer" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
552 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
553 <xs:documentation>Footer.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
554 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
555 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
556 <xs:attribute name="header" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
557 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
558 <xs:documentation>Header.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
559 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
560 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
561 <xs:attribute name="error" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
562 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
563 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
564 Indicates whether to send the log messages to the standard error instead of the standard output.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
565 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
566 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
567 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
568 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
569 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
570 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
571 <xs:complexType name="Database">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
572 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
573 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
574 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
575 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
576 <xs:element name="dbUserName" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
577 <xs:element name="dbProvider" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
578 <xs:element name="useTransactions" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
579 <xs:element name="connectionStringName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
580 <xs:element name="connectionString" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
581 <xs:element name="keepConnection" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
582 <xs:element name="dbDatabase" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
583 <xs:element name="dbPassword" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
584 <xs:element name="dbHost" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
585 <xs:element name="install-command" minOccurs="0" maxOccurs="unbounded"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
586 type="NLog.Targets.DatabaseCommandInfo" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
587 <xs:element name="installConnectionString" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
588 <xs:element name="uninstall-command" minOccurs="0" maxOccurs="unbounded"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
589 type="NLog.Targets.DatabaseCommandInfo" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
590 <xs:element name="commandText" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
591 <xs:element name="parameter" minOccurs="0" maxOccurs="unbounded" type="NLog.Targets.DatabaseParameterInfo" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
592 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
593 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
594 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
595 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
596 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
597 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
598 <xs:attribute name="dbUserName" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
599 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
600 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
601 Database user name. If the ConnectionString is not provided this value will be used to construct the "User ID=" part of the connection string.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
602 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
603 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
604 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
605 <xs:attribute name="dbProvider" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
606 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
607 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
608 Name of the database provider.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
609 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
610 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
611 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
612 <xs:attribute name="useTransactions" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
613 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
614 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
615 Indicates whether to use database transactions. Some data providers require this.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
616 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
617 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
618 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
619 <xs:attribute name="connectionStringName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
620 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
621 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
622 Name of the connection string (as specified in &lt;connectionStrings&gt; configuration section.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
623 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
624 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
625 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
626 <xs:attribute name="connectionString" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
627 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
628 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
629 Connection string. When provided, it overrides the values specified in DBHost, DBUserName, DBPassword, DBDatabase.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
630 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
631 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
632 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
633 <xs:attribute name="keepConnection" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
634 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
635 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
636 Indicates whether to keep the database connection open between the log events.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
637 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
638 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
639 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
640 <xs:attribute name="dbDatabase" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
641 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
642 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
643 Database name. If the ConnectionString is not provided this value will be used to construct the "Database=" part of the connection string.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
644 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
645 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
646 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
647 <xs:attribute name="dbPassword" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
648 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
649 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
650 Database password. If the ConnectionString is not provided this value will be used to construct the "Password=" part of the connection string.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
651 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
652 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
653 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
654 <xs:attribute name="dbHost" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
655 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
656 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
657 Database host name. If the ConnectionString is not provided this value will be used to construct the "Server=" part of the connection string.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
658 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
659 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
660 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
661 <xs:attribute name="installConnectionString" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
662 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
663 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
664 Connection string using for installation and uninstallation. If not provided, regular ConnectionString is being used.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
665 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
666 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
667 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
668 <xs:attribute name="commandText" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
669 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
670 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
671 Text of the SQL command to be run on each log level.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
672 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
673 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
674 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
675 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
676 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
677 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
678 <xs:simpleType name="System.Data.CommandType">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
679 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
680 <xs:enumeration value="StoredProcedure" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
681 <xs:enumeration value="TableDirect" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
682 <xs:enumeration value="Text" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
683 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
684 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
685 <xs:complexType name="NLog.Targets.DatabaseCommandInfo">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
686 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
687 <xs:element name="commandType" minOccurs="0" maxOccurs="1" type="System.Data.CommandType" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
688 <xs:element name="connectionString" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
689 <xs:element name="ignoreFailures" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
690 <xs:element name="parameter" minOccurs="0" maxOccurs="unbounded" type="NLog.Targets.DatabaseParameterInfo" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
691 <xs:element name="text" minOccurs="0" maxOccurs="1" type="Layout" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
692 </xs:choice>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
693 <xs:attribute name="commandType" type="System.Data.CommandType">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
694 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
695 <xs:documentation>Type of the command.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
696 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
697 </xs:attribute>
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
698 <xs:attribute name="connectionString" type="SimpleLayoutAttribute">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
699 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
700 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
701 Connection string to run the command against. If not provided, connection string from the target is used.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
702 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
703 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
704 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
705 <xs:attribute name="ignoreFailures" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
706 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
707 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
708 Indicates whether to ignore failures.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
709 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
710 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
711 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
712 <xs:attribute name="text" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
713 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
714 <xs:documentation>Command text.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
715 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
716 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
717 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
718 <xs:complexType name="NLog.Targets.DatabaseParameterInfo">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
719 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
720 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
721 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
722 <xs:element name="precision" minOccurs="0" maxOccurs="1" type="xs:byte" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
723 <xs:element name="scale" minOccurs="0" maxOccurs="1" type="xs:byte" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
724 <xs:element name="size" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
725 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
726 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
727 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
728 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
729 Layout that should be use to calcuate the value for the parameter.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
730 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
731 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
732 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
733 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
734 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
735 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
736 Database parameter name.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
737 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
738 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
739 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
740 <xs:attribute name="precision" type="xs:byte">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
741 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
742 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
743 Database parameter precision.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
744 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
745 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
746 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
747 <xs:attribute name="scale" type="xs:byte">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
748 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
749 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
750 Database parameter scale.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
751 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
752 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
753 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
754 <xs:attribute name="size" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
755 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
756 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
757 Database parameter size.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
758 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
759 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
760 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
761 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
762 <xs:complexType name="Debug">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
763 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
764 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
765 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
766 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
767 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
768 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
769 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
770 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
771 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
772 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
773 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
774 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
775 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
776 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
777 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
778 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
779 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
780 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
781 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
782 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
783 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
784 <xs:complexType name="FallbackGroup">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
785 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
786 <xs:extension base="CompoundTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
787 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
788 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
789 <xs:element name="returnToFirstOnSuccess" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
790 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
791 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
792 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
793 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
794 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
795 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
796 <xs:attribute name="returnToFirstOnSuccess" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
797 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
798 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
799 Indicates whether to return to the first target after any successful write.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
800 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
801 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
802 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
803 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
804 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
805 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
806 <xs:complexType name="File">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
807 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
808 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
809 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
810 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
811 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
812 <xs:element name="header" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
813 <xs:element name="footer" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
814 <xs:element name="encoding" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
815 <xs:element name="lineEnding" minOccurs="0" maxOccurs="1" type="NLog.Targets.LineEndingMode" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
816 <xs:element name="archiveAboveSize" minOccurs="0" maxOccurs="1" type="xs:long" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
817 <xs:element name="maxArchiveFiles" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
818 <xs:element name="archiveFileName" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
819 <xs:element name="archiveNumbering" minOccurs="0" maxOccurs="1" type="NLog.Targets.ArchiveNumberingMode" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
820 <xs:element name="archiveEvery" minOccurs="0" maxOccurs="1" type="NLog.Targets.FileArchivePeriod" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
821 <xs:element name="replaceFileContentsOnEachWrite" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
822 <xs:element name="fileAttributes" minOccurs="0" maxOccurs="1" type="NLog.Targets.Win32FileAttributes" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
823 <xs:element name="fileName" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
824 <xs:element name="deleteOldFileOnStartup" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
825 <xs:element name="enableFileDelete" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
826 <xs:element name="createDirs" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
827 <xs:element name="concurrentWrites" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
828 <xs:element name="openFileCacheTimeout" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
829 <xs:element name="openFileCacheSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
830 <xs:element name="networkWrites" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
831 <xs:element name="concurrentWriteAttemptDelay" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
832 <xs:element name="concurrentWriteAttempts" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
833 <xs:element name="bufferSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
834 <xs:element name="autoFlush" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
835 <xs:element name="keepFileOpen" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
836 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
837 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
838 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
839 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
840 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
841 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
842 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
843 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
844 <xs:documentation>Text to be rendered.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
845 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
846 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
847 <xs:attribute name="header" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
848 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
849 <xs:documentation>Header.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
850 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
851 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
852 <xs:attribute name="footer" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
853 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
854 <xs:documentation>Footer.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
855 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
856 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
857 <xs:attribute name="encoding" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
858 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
859 <xs:documentation>File encoding.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
860 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
861 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
862 <xs:attribute name="lineEnding" type="NLog.Targets.LineEndingMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
863 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
864 <xs:documentation>Line ending mode.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
865 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
866 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
867 <xs:attribute name="archiveAboveSize" type="xs:long">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
868 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
869 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
870 Size in bytes above which log files will be automatically archived.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
871 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
872 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
873 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
874 <xs:attribute name="maxArchiveFiles" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
875 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
876 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
877 Maximum number of archive files that should be kept.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
878 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
879 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
880 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
881 <xs:attribute name="archiveFileName" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
882 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
883 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
884 Name of the file to be used for an archive.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
885 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
886 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
887 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
888 <xs:attribute name="archiveNumbering" type="NLog.Targets.ArchiveNumberingMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
889 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
890 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
891 Way file archives are numbered.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
892 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
893 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
894 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
895 <xs:attribute name="archiveEvery" type="NLog.Targets.FileArchivePeriod">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
896 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
897 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
898 Indicates whether to automatically archive log files every time the specified time passes.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
899 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
900 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
901 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
902 <xs:attribute name="replaceFileContentsOnEachWrite" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
903 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
904 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
905 Indicates whether to replace file contents on each write instead of appending log message at the end.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
906 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
907 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
908 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
909 <xs:attribute name="fileAttributes" type="NLog.Targets.Win32FileAttributes">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
910 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
911 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
912 File attributes (Windows only).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
913 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
914 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
915 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
916 <xs:attribute name="fileName" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
917 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
918 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
919 Name of the file to write to.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
920 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
921 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
922 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
923 <xs:attribute name="deleteOldFileOnStartup" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
924 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
925 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
926 Indicates whether to delete old log file on startup.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
927 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
928 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
929 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
930 <xs:attribute name="enableFileDelete" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
931 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
932 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
933 Indicates whether to enable log file(s) to be deleted.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
934 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
935 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
936 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
937 <xs:attribute name="createDirs" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
938 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
939 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
940 Indicates whether to create directories if they don't exist.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
941 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
942 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
943 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
944 <xs:attribute name="concurrentWrites" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
945 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
946 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
947 Indicates whether concurrent writes to the log file by multiple processes on the same host.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
948 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
949 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
950 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
951 <xs:attribute name="openFileCacheTimeout" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
952 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
953 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
954 Maximum number of seconds that files are kept open. If this number is negative the files are not automatically closed after a period of inactivity.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
955 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
956 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
957 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
958 <xs:attribute name="openFileCacheSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
959 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
960 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
961 Number of files to be kept open. Setting this to a higher value may improve performance in a situation where a single File target is writing to many files (such as splitting by level or by logger).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
962 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
963 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
964 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
965 <xs:attribute name="networkWrites" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
966 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
967 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
968 Indicates whether concurrent writes to the log file by multiple processes on different network hosts.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
969 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
970 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
971 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
972 <xs:attribute name="concurrentWriteAttemptDelay" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
973 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
974 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
975 Delay in milliseconds to wait before attempting to write to the file again.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
976 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
977 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
978 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
979 <xs:attribute name="concurrentWriteAttempts" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
980 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
981 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
982 Number of times the write is appended on the file before NLog discards the log message.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
983 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
984 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
985 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
986 <xs:attribute name="bufferSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
987 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
988 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
989 Log file buffer size in bytes.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
990 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
991 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
992 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
993 <xs:attribute name="autoFlush" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
994 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
995 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
996 Indicates whether to automatically flush the file buffers after each log message.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
997 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
998 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
999 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1000 <xs:attribute name="keepFileOpen" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1001 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1002 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1003 Indicates whether to keep log file open instead of opening and closing it on each logging event.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1004 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1005 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1006 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1007 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1008 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1009 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1010 <xs:simpleType name="NLog.Targets.LineEndingMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1011 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1012 <xs:enumeration value="Default" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1013 <xs:enumeration value="CRLF" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1014 <xs:enumeration value="CR" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1015 <xs:enumeration value="LF" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1016 <xs:enumeration value="None" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1017 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1018 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1019 <xs:simpleType name="NLog.Targets.ArchiveNumberingMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1020 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1021 <xs:enumeration value="Sequence" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1022 <xs:enumeration value="Rolling" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1023 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1024 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1025 <xs:simpleType name="NLog.Targets.FileArchivePeriod">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1026 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1027 <xs:enumeration value="None" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1028 <xs:enumeration value="Year" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1029 <xs:enumeration value="Month" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1030 <xs:enumeration value="Day" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1031 <xs:enumeration value="Hour" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1032 <xs:enumeration value="Minute" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1033 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1034 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1035 <xs:simpleType name="NLog.Targets.Win32FileAttributes">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1036 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1037 <xs:enumeration value="Readonly" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1038 <xs:enumeration value="Hidden" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1039 <xs:enumeration value="System" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1040 <xs:enumeration value="Archive" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1041 <xs:enumeration value="Device" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1042 <xs:enumeration value="Normal" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1043 <xs:enumeration value="Temporary" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1044 <xs:enumeration value="SparseFile" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1045 <xs:enumeration value="ReparsePoint" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1046 <xs:enumeration value="Compressed" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1047 <xs:enumeration value="NotContentIndexed" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1048 <xs:enumeration value="Encrypted" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1049 <xs:enumeration value="WriteThrough" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1050 <xs:enumeration value="NoBuffering" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1051 <xs:enumeration value="DeleteOnClose" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1052 <xs:enumeration value="PosixSemantics" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1053 <xs:enumeration value="ReadOnly" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1054 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1055 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1056 <xs:complexType name="FilteringWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1057 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1058 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1059 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1060 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1061 <xs:element name="condition" minOccurs="0" maxOccurs="1" type="Condition" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1062 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1063 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1064 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1065 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1066 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1067 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1068 <xs:attribute name="condition" type="Condition">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1069 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1070 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1071 Condition expression. Log events who meet this condition will be forwarded to the wrapped target.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1072 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1073 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1074 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1075 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1076 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1077 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1078 <xs:complexType name="Memory">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1079 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1080 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1081 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1082 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1083 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1084 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1085 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1086 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1087 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1088 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1089 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1090 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1091 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1092 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1093 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1094 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1095 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1096 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1097 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1098 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1099 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1100 <xs:complexType name="MessageBox">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1101 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1102 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1103 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1104 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1105 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1106 <xs:element name="caption" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1107 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1108 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1109 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1110 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1111 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1112 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1113 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1114 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1115 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1116 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1117 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1118 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1119 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1120 <xs:attribute name="caption" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1121 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1122 <xs:documentation>Message box title.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1123 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1124 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1125 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1126 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1127 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1128 <xs:complexType name="MethodCall">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1129 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1130 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1131 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1132 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1133 <xs:element name="methodName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1134 <xs:element name="className" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1135 <xs:element name="parameter" minOccurs="0" maxOccurs="unbounded" type="NLog.Targets.MethodCallParameter" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1136 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1137 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1138 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1139 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1140 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1141 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1142 <xs:attribute name="methodName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1143 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1144 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1145 Method name. The method must be public and static.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1146 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1147 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1148 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1149 <xs:attribute name="className" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1150 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1151 <xs:documentation>Class name.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1152 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1153 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1154 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1155 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1156 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1157 <xs:complexType name="NLog.Targets.MethodCallParameter">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1158 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1159 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1160 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1161 <xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1162 </xs:choice>
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1163 <xs:attribute name="layout" type="SimpleLayoutAttribute">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1164 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1165 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1166 Layout that should be use to calcuate the value for the parameter.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1167 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1168 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1169 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1170 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1171 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1172 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1173 Name of the parameter.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1174 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1175 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1176 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1177 <xs:attribute name="type" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1178 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1179 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1180 Type of the parameter.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1181 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1182 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1183 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1184 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1185 <xs:complexType name="Network">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1186 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1187 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1188 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1189 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1190 <xs:element name="onOverflow" minOccurs="0" maxOccurs="1" type="NLog.Targets.NetworkTargetOverflowAction" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1191 <xs:element name="newLine" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1192 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1193 <xs:element name="maxMessageSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1194 <xs:element name="encoding" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1195 <xs:element name="connectionCacheSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1196 <xs:element name="keepConnection" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1197 <xs:element name="address" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1198 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1199 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1200 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1201 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1202 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1203 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1204 <xs:attribute name="onOverflow" type="NLog.Targets.NetworkTargetOverflowAction">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1205 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1206 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1207 Action that should be taken if the message is larger than maxMessageSize.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1208 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1209 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1210 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1211 <xs:attribute name="newLine" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1212 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1213 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1214 Indicates whether to append newline at the end of log message.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1215 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1216 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1217 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1218 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1219 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1220 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1221 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1222 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1223 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1224 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1225 <xs:attribute name="maxMessageSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1226 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1227 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1228 Maximum message size in bytes.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1229 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1230 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1231 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1232 <xs:attribute name="encoding" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1233 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1234 <xs:documentation>Encoding to be used.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1235 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1236 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1237 <xs:attribute name="connectionCacheSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1238 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1239 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1240 Size of the connection cache (number of connections which are kept alive).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1241 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1242 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1243 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1244 <xs:attribute name="keepConnection" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1245 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1246 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1247 Indicates whether to keep connection open whenever possible.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1248 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1249 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1250 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1251 <xs:attribute name="address" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1252 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1253 <xs:documentation>Network address.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1254 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1255 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1256 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1257 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1258 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1259 <xs:complexType name="NLogViewer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1260 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1261 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1262 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1263 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1264 <xs:element name="newLine" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1265 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1266 <xs:element name="onOverflow" minOccurs="0" maxOccurs="1" type="NLog.Targets.NetworkTargetOverflowAction" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1267 <xs:element name="maxMessageSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1268 <xs:element name="encoding" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1269 <xs:element name="connectionCacheSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1270 <xs:element name="address" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1271 <xs:element name="keepConnection" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1272 <xs:element name="includeSourceInfo" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1273 <xs:element name="includeCallSite" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1274 <xs:element name="appInfo" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1275 <xs:element name="ndcItemSeparator" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1276 <xs:element name="includeNdc" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1277 <xs:element name="includeNLogData" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1278 <xs:element name="parameter" minOccurs="0" maxOccurs="unbounded" type="NLog.Targets.NLogViewerParameterInfo" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1279 <xs:element name="includeMdc" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1280 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1281 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1282 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1283 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1284 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1285 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1286 <xs:attribute name="newLine" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1287 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1288 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1289 Indicates whether to append newline at the end of log message.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1290 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1291 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1292 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1293 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1294 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1295 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1296 Instance of that is used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1297 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1298 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1299 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1300 <xs:attribute name="onOverflow" type="NLog.Targets.NetworkTargetOverflowAction">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1301 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1302 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1303 Action that should be taken if the message is larger than maxMessageSize.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1304 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1305 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1306 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1307 <xs:attribute name="maxMessageSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1308 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1309 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1310 Maximum message size in bytes.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1311 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1312 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1313 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1314 <xs:attribute name="encoding" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1315 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1316 <xs:documentation>Encoding to be used.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1317 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1318 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1319 <xs:attribute name="connectionCacheSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1320 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1321 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1322 Size of the connection cache (number of connections which are kept alive).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1323 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1324 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1325 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1326 <xs:attribute name="address" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1327 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1328 <xs:documentation>Network address.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1329 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1330 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1331 <xs:attribute name="keepConnection" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1332 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1333 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1334 Indicates whether to keep connection open whenever possible.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1335 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1336 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1337 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1338 <xs:attribute name="includeSourceInfo" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1339 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1340 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1341 Indicates whether to include source info (file name and line number) in the information sent over the network.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1342 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1343 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1344 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1345 <xs:attribute name="includeCallSite" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1346 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1347 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1348 Indicates whether to include call site (class and method name) in the information sent over the network.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1349 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1350 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1351 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1352 <xs:attribute name="appInfo" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1353 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1354 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1355 AppInfo field. By default it's the friendly name of the current AppDomain.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1356 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1357 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1358 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1359 <xs:attribute name="ndcItemSeparator" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1360 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1361 <xs:documentation>NDC item separator.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1362 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1363 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1364 <xs:attribute name="includeNdc" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1365 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1366 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1367 Indicates whether to include stack contents.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1368 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1369 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1370 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1371 <xs:attribute name="includeNLogData" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1372 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1373 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1374 Indicates whether to include NLog-specific extensions to log4j schema.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1375 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1376 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1377 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1378 <xs:attribute name="includeMdc" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1379 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1380 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1381 Indicates whether to include dictionary contents.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1382 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1383 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1384 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1385 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1386 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1387 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1388 <xs:complexType name="Null">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1389 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1390 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1391 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1392 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1393 <xs:element name="formatMessage" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1394 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1395 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1396 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1397 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1398 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1399 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1400 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1401 <xs:attribute name="formatMessage" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1402 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1403 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1404 Indicates whether to perform layout calculation.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1405 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1406 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1407 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1408 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1409 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1410 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1411 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1412 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1413 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1414 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1415 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1416 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1417 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1418 <xs:complexType name="OutputDebugString">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1419 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1420 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1421 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1422 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1423 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1424 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1425 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1426 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1427 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1428 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1429 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1430 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1431 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1432 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1433 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1434 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1435 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1436 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1437 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1438 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1439 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1440 <xs:complexType name="PostFilteringWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1441 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1442 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1443 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1444 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1445 <xs:element name="defaultFilter" minOccurs="0" maxOccurs="1" type="Condition" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1446 <xs:element name="when" minOccurs="0" maxOccurs="unbounded" type="NLog.Targets.Wrappers.FilteringRule" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1447 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1448 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1449 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1450 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1451 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1452 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1453 <xs:attribute name="defaultFilter" type="Condition">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1454 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1455 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1456 Default filter to be applied when no specific rule matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1457 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1458 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1459 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1460 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1461 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1462 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1463 <xs:complexType name="NLog.Targets.Wrappers.FilteringRule">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1464 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1465 <xs:element name="exists" minOccurs="0" maxOccurs="1" type="Condition" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1466 <xs:element name="filter" minOccurs="0" maxOccurs="1" type="Condition" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1467 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1468 <xs:attribute name="exists" type="Condition">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1469 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1470 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1471 Condition to be tested.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1472 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1473 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1474 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1475 <xs:attribute name="filter" type="Condition">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1476 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1477 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1478 Resulting filter to be applied when the condition matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1479 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1480 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1481 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1482 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1483 <xs:complexType name="RandomizeGroup">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1484 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1485 <xs:extension base="CompoundTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1486 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1487 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1488 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1489 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1490 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1491 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1492 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1493 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1494 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1495 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1496 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1497 <xs:complexType name="RepeatingWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1498 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1499 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1500 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1501 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1502 <xs:element name="repeatCount" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1503 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1504 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1505 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1506 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1507 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1508 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1509 <xs:attribute name="repeatCount" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1510 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1511 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1512 Number of times to repeat each log message.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1513 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1514 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1515 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1516 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1517 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1518 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1519 <xs:complexType name="RetryingWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1520 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1521 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1522 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1523 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1524 <xs:element name="retryDelayMilliseconds" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1525 <xs:element name="retryCount" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1526 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1527 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1528 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1529 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1530 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1531 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1532 <xs:attribute name="retryDelayMilliseconds" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1533 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1534 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1535 Time to wait between retries in milliseconds.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1536 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1537 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1538 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1539 <xs:attribute name="retryCount" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1540 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1541 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1542 Number of retries that should be attempted on the wrapped target in case of a failure.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1543 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1544 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1545 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1546 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1547 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1548 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1549 <xs:complexType name="RoundRobinGroup">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1550 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1551 <xs:extension base="CompoundTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1552 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1553 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1554 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1555 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1556 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1557 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1558 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1559 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1560 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1561 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1562 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1563 <xs:complexType name="SplitGroup">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1564 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1565 <xs:extension base="CompoundTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1566 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1567 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1568 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1569 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1570 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1571 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1572 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1573 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1574 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1575 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1576 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1577 <xs:complexType name="WebService">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1578 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1579 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1580 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1581 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1582 <xs:element name="parameter" minOccurs="0" maxOccurs="unbounded" type="NLog.Targets.MethodCallParameter" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1583 <xs:element name="url" minOccurs="0" maxOccurs="1" type="xs:anyURI" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1584 <xs:element name="encoding" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1585 <xs:element name="protocol" minOccurs="0" maxOccurs="1" type="NLog.Targets.WebServiceProtocol" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1586 <xs:element name="namespace" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1587 <xs:element name="methodName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1588 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1589 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1590 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1591 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1592 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1593 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1594 <xs:attribute name="url" type="xs:anyURI">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1595 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1596 <xs:documentation>Web service URL.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1597 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1598 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1599 <xs:attribute name="encoding" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1600 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1601 <xs:documentation>Encoding.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1602 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1603 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1604 <xs:attribute name="protocol" type="NLog.Targets.WebServiceProtocol">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1605 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1606 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1607 Protocol to be used when calling web service.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1608 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1609 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1610 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1611 <xs:attribute name="namespace" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1612 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1613 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1614 Web service namespace.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1615 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1616 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1617 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1618 <xs:attribute name="methodName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1619 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1620 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1621 Web service method name.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1622 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1623 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1624 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1625 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1626 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1627 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1628 <xs:simpleType name="NLog.Targets.WebServiceProtocol">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1629 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1630 <xs:enumeration value="Soap11" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1631 <xs:enumeration value="Soap12" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1632 <xs:enumeration value="HttpPost" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1633 <xs:enumeration value="HttpGet" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1634 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1635 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1636 <xs:complexType name="CsvLayout">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1637 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1638 <xs:extension base="Layout">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1639 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1640 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1641 <xs:element name="footer" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1642 <xs:element name="header" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1643 <xs:element name="quoting" minOccurs="0" maxOccurs="1" type="NLog.Layouts.CsvQuotingMode" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1644 <xs:element name="quoteChar" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1645 <xs:element name="withHeader" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1646 <xs:element name="customColumnDelimiter" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1647 <xs:element name="delimiter" minOccurs="0" maxOccurs="1" type="NLog.Layouts.CsvColumnDelimiterMode" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1648 <xs:element name="column" minOccurs="0" maxOccurs="unbounded" type="NLog.Layouts.CsvColumn" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1649 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1650 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1651 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1652 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1653 Body layout (can be repeated multiple times).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1654 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1655 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1656 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1657 <xs:attribute name="footer" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1658 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1659 <xs:documentation>Footer layout.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1660 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1661 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1662 <xs:attribute name="header" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1663 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1664 <xs:documentation>Header layout.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1665 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1666 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1667 <xs:attribute name="quoting" type="NLog.Layouts.CsvQuotingMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1668 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1669 <xs:documentation>Quoting mode.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1670 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1671 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1672 <xs:attribute name="quoteChar" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1673 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1674 <xs:documentation>Quote Character.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1675 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1676 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1677 <xs:attribute name="withHeader" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1678 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1679 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1680 Indicates whether CVS should include header.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1681 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1682 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1683 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1684 <xs:attribute name="customColumnDelimiter" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1685 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1686 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1687 Custom column delimiter value (valid when ColumnDelimiter is set to 'Custom').
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1688 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1689 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1690 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1691 <xs:attribute name="delimiter" type="NLog.Layouts.CsvColumnDelimiterMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1692 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1693 <xs:documentation>Column delimiter.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1694 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1695 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1696 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1697 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1698 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1699 <xs:simpleType name="NLog.Layouts.CsvQuotingMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1700 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1701 <xs:enumeration value="All" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1702 <xs:enumeration value="Nothing" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1703 <xs:enumeration value="Auto" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1704 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1705 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1706 <xs:simpleType name="NLog.Layouts.CsvColumnDelimiterMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1707 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1708 <xs:enumeration value="Auto" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1709 <xs:enumeration value="Comma" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1710 <xs:enumeration value="Semicolon" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1711 <xs:enumeration value="Tab" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1712 <xs:enumeration value="Pipe" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1713 <xs:enumeration value="Space" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1714 <xs:enumeration value="Custom" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1715 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1716 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1717 <xs:complexType name="NLog.Layouts.CsvColumn">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1718 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1719 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1720 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1721 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1722 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1723 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1724 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1725 Layout of the column.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1726 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1727 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1728 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1729 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1730 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1731 <xs:documentation>Name of the column.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1732 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
1733 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1734 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1735 <xs:complexType name="SimpleLayout">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1736 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1737 <xs:extension base="Layout">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1738 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1739 <xs:element name="text" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1740 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1741 <xs:attribute name="text" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1742 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1743 <xs:documentation>Layout text.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1744 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1745 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1746 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1747 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1748 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1749 <xs:complexType name="LayoutWithHeaderAndFooter">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1750 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1751 <xs:extension base="Layout">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1752 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1753 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1754 <xs:element name="header" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1755 <xs:element name="footer" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1756 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1757 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1758 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1759 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1760 Body layout (can be repeated multiple times).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1761 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1762 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1763 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1764 <xs:attribute name="header" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1765 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1766 <xs:documentation>Header layout.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1767 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1768 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1769 <xs:attribute name="footer" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1770 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1771 <xs:documentation>Footer layout.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1772 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1773 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1774 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1775 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1776 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1777 <xs:complexType name="Log4JXmlEventLayout">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1778 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1779 <xs:extension base="Layout">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1780 <xs:choice minOccurs="0" maxOccurs="unbounded" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1781 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1782 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1783 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1784 <xs:complexType name="when">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1785 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1786 <xs:extension base="Filter">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1787 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1788 <xs:element name="condition" minOccurs="0" maxOccurs="1" type="Condition" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1789 <xs:element name="action" minOccurs="0" maxOccurs="1" type="FilterResult" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1790 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1791 <xs:attribute name="condition" type="Condition">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1792 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1793 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1794 Condition expression.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1795 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1796 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1797 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1798 <xs:attribute name="action" type="FilterResult">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1799 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1800 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1801 Action to be taken when filter matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1802 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1803 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1804 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1805 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1806 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1807 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1808 <xs:simpleType name="FilterResult">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1809 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1810 <xs:enumeration value="Neutral" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1811 <xs:enumeration value="Log" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1812 <xs:enumeration value="Ignore" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1813 <xs:enumeration value="LogFinal" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1814 <xs:enumeration value="IgnoreFinal" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1815 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1816 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1817 <xs:complexType name="whenContains">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1818 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1819 <xs:extension base="Filter">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1820 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1821 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1822 <xs:element name="substring" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1823 <xs:element name="action" minOccurs="0" maxOccurs="1" type="FilterResult" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1824 <xs:element name="ignoreCase" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1825 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1826 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1827 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1828 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1829 Layout to be used to filter log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1830 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1831 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1832 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1833 <xs:attribute name="substring" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1834 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1835 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1836 Substring to be matched.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1837 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1838 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1839 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1840 <xs:attribute name="action" type="FilterResult">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1841 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1842 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1843 Action to be taken when filter matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1844 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1845 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1846 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1847 <xs:attribute name="ignoreCase" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1848 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1849 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1850 Indicates whether to ignore case when comparing strings.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1851 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1852 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1853 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1854 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1855 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1856 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1857 <xs:complexType name="whenEqual">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1858 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1859 <xs:extension base="Filter">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1860 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1861 <xs:element name="ignoreCase" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1862 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1863 <xs:element name="action" minOccurs="0" maxOccurs="1" type="FilterResult" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1864 <xs:element name="compareTo" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1865 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1866 <xs:attribute name="ignoreCase" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1867 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1868 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1869 Indicates whether to ignore case when comparing strings.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1870 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1871 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1872 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1873 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1874 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1875 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1876 Layout to be used to filter log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1877 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1878 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1879 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1880 <xs:attribute name="action" type="FilterResult">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1881 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1882 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1883 Action to be taken when filter matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1884 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1885 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1886 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1887 <xs:attribute name="compareTo" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1888 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1889 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1890 String to compare the layout to.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1891 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1892 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1893 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1894 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1895 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1896 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1897 <xs:complexType name="whenNotContains">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1898 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1899 <xs:extension base="Filter">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1900 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1901 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1902 <xs:element name="substring" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1903 <xs:element name="action" minOccurs="0" maxOccurs="1" type="FilterResult" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1904 <xs:element name="ignoreCase" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1905 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1906 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1907 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1908 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1909 Layout to be used to filter log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1910 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1911 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1912 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1913 <xs:attribute name="substring" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1914 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1915 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1916 Substring to be matched.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1917 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1918 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1919 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1920 <xs:attribute name="action" type="FilterResult">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1921 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1922 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1923 Action to be taken when filter matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1924 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1925 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1926 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1927 <xs:attribute name="ignoreCase" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1928 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1929 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1930 Indicates whether to ignore case when comparing strings.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1931 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1932 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1933 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1934 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1935 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1936 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1937 <xs:complexType name="whenNotEqual">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1938 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1939 <xs:extension base="Filter">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1940 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1941 <xs:element name="ignoreCase" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1942 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1943 <xs:element name="action" minOccurs="0" maxOccurs="1" type="FilterResult" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1944 <xs:element name="compareTo" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1945 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1946 <xs:attribute name="ignoreCase" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1947 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1948 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1949 Indicates whether to ignore case when comparing strings.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1950 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1951 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1952 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1953 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1954 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1955 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1956 Layout to be used to filter log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1957 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1958 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1959 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1960 <xs:attribute name="action" type="FilterResult">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1961 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1962 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1963 Action to be taken when filter matches.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1964 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1965 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1966 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1967 <xs:attribute name="compareTo" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1968 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1969 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1970 String to compare the layout to.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1971 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1972 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1973 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1974 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1975 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1976 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1977 <xs:complexType name="MSMQ">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1978 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1979 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1980 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1981 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1982 <xs:element name="useXmlEncoding" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1983 <xs:element name="encoding" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1984 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1985 <xs:element name="recoverable" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1986 <xs:element name="createQueueIfNotExists" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1987 <xs:element name="label" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1988 <xs:element name="queue" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1989 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1990 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1991 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1992 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1993 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1994 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1995 <xs:attribute name="useXmlEncoding" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1996 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1997 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1998 Indicates whether to use the XML format when serializing message.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
1999 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2000 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2001 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2002 <xs:attribute name="encoding" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2003 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2004 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2005 Encoding to be used when writing text to the queue.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2006 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2007 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2008 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2009 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2010 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2011 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2012 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2013 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2014 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2015 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2016 <xs:attribute name="recoverable" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2017 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2018 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2019 Indicates whether to use recoverable messages (with guaranteed delivery).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2020 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2021 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2022 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2023 <xs:attribute name="createQueueIfNotExists" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2024 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2025 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2026 Indicates whether to create the queue if it doesn't exists.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2027 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2028 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2029 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2030 <xs:attribute name="label" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2031 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2032 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2033 Label to associate with each message.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2034 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2035 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2036 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2037 <xs:attribute name="queue" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2038 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2039 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2040 Name of the queue to write to.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2041 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2042 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2043 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2044 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2045 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2046 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2047 <xs:complexType name="AspNetBufferingWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2048 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2049 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2050 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2051 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2052 <xs:element name="bufferGrowLimit" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2053 <xs:element name="growBufferAsNeeded" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2054 <xs:element name="bufferSize" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2055 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2056 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2057 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2058 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2059 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2060 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2061 <xs:attribute name="bufferGrowLimit" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2062 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2063 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2064 Maximum number of log events that the buffer can keep.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2065 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2066 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2067 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2068 <xs:attribute name="growBufferAsNeeded" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2069 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2070 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2071 Indicates whether buffer should grow as needed.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2072 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2073 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2074 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2075 <xs:attribute name="bufferSize" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2076 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2077 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2078 Number of log events to be buffered.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2079 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2080 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2081 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2082 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2083 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2084 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2085 <xs:complexType name="AspNetTrace">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2086 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2087 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2088 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2089 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2090 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2091 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2092 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2093 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2094 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2095 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2096 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2097 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2098 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2099 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2100 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2101 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2102 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2103 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2104 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2105 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2106 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2107 <xs:complexType name="AspResponse">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2108 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2109 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2110 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2111 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2112 <xs:element name="addComments" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2113 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2114 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2115 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2116 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2117 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2118 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2119 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2120 <xs:attribute name="addComments" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2121 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2122 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2123 Indicates whether to add &lt;!-- --&gt; comments around all written texts.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2124 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2125 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2126 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2127 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2128 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2129 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2130 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2131 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2132 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2133 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2134 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2135 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2136 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2137 <xs:complexType name="ColoredConsole">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2138 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2139 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2140 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2141 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2142 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2143 <xs:element name="header" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2144 <xs:element name="footer" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2145 <xs:element name="useDefaultRowHighlightingRules" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2146 <xs:element name="highlight-row" minOccurs="0" maxOccurs="unbounded"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2147 type="NLog.Targets.ConsoleRowHighlightingRule" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2148 <xs:element name="highlight-word" minOccurs="0" maxOccurs="unbounded"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2149 type="NLog.Targets.ConsoleWordHighlightingRule" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2150 <xs:element name="errorStream" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2151 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2152 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2153 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2154 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2155 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2156 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2157 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2158 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2159 <xs:documentation>Text to be rendered.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2160 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2161 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2162 <xs:attribute name="header" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2163 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2164 <xs:documentation>Header.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2165 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2166 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2167 <xs:attribute name="footer" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2168 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2169 <xs:documentation>Footer.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2170 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2171 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2172 <xs:attribute name="useDefaultRowHighlightingRules" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2173 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2174 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2175 Indicates whether to use default row highlighting rules.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2176 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2177 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2178 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2179 <xs:attribute name="errorStream" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2180 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2181 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2182 Indicates whether the error stream (stderr) should be used instead of the output stream (stdout).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2183 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2184 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2185 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2186 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2187 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2188 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2189 <xs:simpleType name="NLog.Targets.ConsoleOutputColor">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2190 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2191 <xs:enumeration value="Black" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2192 <xs:enumeration value="DarkBlue" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2193 <xs:enumeration value="DarkGreen" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2194 <xs:enumeration value="DarkCyan" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2195 <xs:enumeration value="DarkRed" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2196 <xs:enumeration value="DarkMagenta" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2197 <xs:enumeration value="DarkYellow" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2198 <xs:enumeration value="Gray" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2199 <xs:enumeration value="DarkGray" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2200 <xs:enumeration value="Blue" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2201 <xs:enumeration value="Green" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2202 <xs:enumeration value="Cyan" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2203 <xs:enumeration value="Red" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2204 <xs:enumeration value="Magenta" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2205 <xs:enumeration value="Yellow" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2206 <xs:enumeration value="White" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2207 <xs:enumeration value="NoChange" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2208 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2209 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2210 <xs:complexType name="NLog.Targets.ConsoleRowHighlightingRule">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2211 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2212 <xs:element name="backgroundColor" minOccurs="0" maxOccurs="1" type="NLog.Targets.ConsoleOutputColor" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2213 <xs:element name="condition" minOccurs="0" maxOccurs="1" type="Condition" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2214 <xs:element name="foregroundColor" minOccurs="0" maxOccurs="1" type="NLog.Targets.ConsoleOutputColor" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2215 </xs:choice>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2216 <xs:attribute name="backgroundColor" type="NLog.Targets.ConsoleOutputColor">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2217 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2218 <xs:documentation>Background color.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2219 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2220 </xs:attribute>
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2221 <xs:attribute name="condition" type="Condition">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2222 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2223 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2224 Condition that must be met in order to set the specified foreground and background color.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2225 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2226 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2227 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2228 <xs:attribute name="foregroundColor" type="NLog.Targets.ConsoleOutputColor">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2229 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2230 <xs:documentation>Foreground color.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2231 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2232 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2233 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2234 <xs:complexType name="NLog.Targets.ConsoleWordHighlightingRule">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2235 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2236 <xs:element name="backgroundColor" minOccurs="0" maxOccurs="1" type="NLog.Targets.ConsoleOutputColor" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2237 <xs:element name="foregroundColor" minOccurs="0" maxOccurs="1" type="NLog.Targets.ConsoleOutputColor" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2238 <xs:element name="ignoreCase" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2239 <xs:element name="regex" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2240 <xs:element name="text" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2241 <xs:element name="wholeWords" minOccurs="0" maxOccurs="1" type="xs:boolean" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2242 </xs:choice>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2243 <xs:attribute name="backgroundColor" type="NLog.Targets.ConsoleOutputColor">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2244 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2245 <xs:documentation>Background color.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2246 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2247 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2248 <xs:attribute name="foregroundColor" type="NLog.Targets.ConsoleOutputColor">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2249 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2250 <xs:documentation>Foreground color.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2251 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2252 </xs:attribute>
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2253 <xs:attribute name="ignoreCase" type="xs:boolean">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2254 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2255 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2256 Indicates whether to ignore case when comparing texts.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2257 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2258 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2259 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2260 <xs:attribute name="regex" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2261 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2262 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2263 Regular expression to be matched. You must specify either text or regex.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2264 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2265 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2266 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2267 <xs:attribute name="text" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2268 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2269 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2270 Text to be matched. You must specify either text or regex.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2271 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2272 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2273 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2274 <xs:attribute name="wholeWords" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2275 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2276 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2277 Indicates whether to match whole words only.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2278 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2279 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2280 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2281 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2282 <xs:complexType name="Debugger">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2283 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2284 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2285 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2286 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2287 <xs:element name="footer" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2288 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2289 <xs:element name="header" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2290 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2291 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2292 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2293 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2294 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2295 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2296 <xs:attribute name="footer" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2297 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2298 <xs:documentation>Footer.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2299 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2300 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2301 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2302 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2303 <xs:documentation>Text to be rendered.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2304 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2305 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2306 <xs:attribute name="header" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2307 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2308 <xs:documentation>Header.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2309 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2310 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2311 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2312 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2313 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2314 <xs:complexType name="EventLog">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2315 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2316 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2317 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2318 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2319 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2320 <xs:element name="machineName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2321 <xs:element name="source" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2322 <xs:element name="category" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2323 <xs:element name="eventId" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2324 <xs:element name="log" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2325 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2326 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2327 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2328 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2329 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2330 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2331 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2332 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2333 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2334 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2335 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2336 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2337 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2338 <xs:attribute name="machineName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2339 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2340 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2341 Name of the machine on which Event Log service is running.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2342 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2343 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2344 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2345 <xs:attribute name="source" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2346 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2347 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2348 Value to be used as the event Source.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2349 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2350 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2351 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2352 <xs:attribute name="category" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2353 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2354 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2355 Layout that renders event Category.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2356 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2357 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2358 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2359 <xs:attribute name="eventId" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2360 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2361 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2362 Layout that renders event ID.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2363 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2364 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2365 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2366 <xs:attribute name="log" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2367 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2368 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2369 Name of the Event Log to write to. This can be System, Application or any user-defined name.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2370 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2371 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2372 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2373 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2374 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2375 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2376 <xs:complexType name="FormControl">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2377 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2378 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2379 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2380 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2381 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2382 <xs:element name="append" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2383 <xs:element name="controlName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2384 <xs:element name="formName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2385 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2386 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2387 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2388 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2389 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2390 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2391 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2392 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2393 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2394 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2395 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2396 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2397 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2398 <xs:attribute name="append" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2399 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2400 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2401 Indicates whether log text should be appended to the text of the control instead of overwriting it.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2402 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2403 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2404 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2405 <xs:attribute name="controlName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2406 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2407 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2408 Name of control to which NLog will log write log text.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2409 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2410 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2411 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2412 <xs:attribute name="formName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2413 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2414 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2415 Name of the Form on which the control is located.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2416 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2417 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2418 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2419 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2420 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2421 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2422 <xs:complexType name="ImpersonatingWrapper">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2423 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2424 <xs:extension base="WrapperTargetBase">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2425 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2426 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2427 <xs:element name="userName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2428 <xs:element name="password" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2429 <xs:element name="revertToSelf" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2430 <xs:element name="impersonationLevel" minOccurs="0" maxOccurs="1"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2431 type="NLog.Targets.Wrappers.SecurityImpersonationLevel" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2432 <xs:element name="domain" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2433 <xs:element name="logOnType" minOccurs="0" maxOccurs="1" type="NLog.Targets.Wrappers.SecurityLogOnType" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2434 <xs:element name="logOnProvider" minOccurs="0" maxOccurs="1" type="NLog.Targets.Wrappers.LogOnProviderType" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2435 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2436 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2437 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2438 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2439 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2440 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2441 <xs:attribute name="userName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2442 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2443 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2444 Username to change context to.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2445 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2446 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2447 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2448 <xs:attribute name="password" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2449 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2450 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2451 User account password.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2452 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2453 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2454 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2455 <xs:attribute name="revertToSelf" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2456 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2457 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2458 Indicates whether to revert to the credentials of the process instead of impersonating another user.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2459 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2460 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2461 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2462 <xs:attribute name="impersonationLevel" type="NLog.Targets.Wrappers.SecurityImpersonationLevel">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2463 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2464 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2465 Required impersonation level.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2466 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2467 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2468 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2469 <xs:attribute name="domain" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2470 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2471 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2472 Windows domain name to change context to.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2473 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2474 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2475 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2476 <xs:attribute name="logOnType" type="NLog.Targets.Wrappers.SecurityLogOnType">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2477 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2478 <xs:documentation>Logon Type.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2479 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2480 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2481 <xs:attribute name="logOnProvider" type="NLog.Targets.Wrappers.LogOnProviderType">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2482 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2483 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2484 Type of the logon provider.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2485 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2486 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2487 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2488 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2489 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2490 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2491 <xs:simpleType name="NLog.Targets.Wrappers.SecurityImpersonationLevel">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2492 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2493 <xs:enumeration value="Anonymous" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2494 <xs:enumeration value="Identification" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2495 <xs:enumeration value="Impersonation" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2496 <xs:enumeration value="Delegation" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2497 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2498 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2499 <xs:simpleType name="NLog.Targets.Wrappers.SecurityLogOnType">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2500 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2501 <xs:enumeration value="Interactive" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2502 <xs:enumeration value="Network" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2503 <xs:enumeration value="Batch" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2504 <xs:enumeration value="Service" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2505 <xs:enumeration value="NetworkClearText" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2506 <xs:enumeration value="NewCredentials" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2507 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2508 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2509 <xs:simpleType name="NLog.Targets.Wrappers.LogOnProviderType">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2510 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2511 <xs:enumeration value="Default" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2512 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2513 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2514 <xs:complexType name="Mail">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2515 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2516 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2517 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2518 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2519 <xs:element name="header" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2520 <xs:element name="footer" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2521 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2522 <xs:element name="html" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2523 <xs:element name="addNewLines" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2524 <xs:element name="encoding" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2525 <xs:element name="subject" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2526 <xs:element name="to" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2527 <xs:element name="bcc" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2528 <xs:element name="cc" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2529 <xs:element name="from" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2530 <xs:element name="body" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2531 <xs:element name="smtpUserName" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2532 <xs:element name="enableSsl" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2533 <xs:element name="smtpPassword" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2534 <xs:element name="smtpAuthentication" minOccurs="0" maxOccurs="1" type="NLog.Targets.SmtpAuthenticationMode" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2535 <xs:element name="smtpServer" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2536 <xs:element name="smtpPort" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2537 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2538 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2539 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2540 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2541 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2542 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2543 <xs:attribute name="header" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2544 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2545 <xs:documentation>Header.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2546 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2547 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2548 <xs:attribute name="footer" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2549 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2550 <xs:documentation>Footer.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2551 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2552 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2553 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2554 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2555 <xs:documentation>Text to be rendered.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2556 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2557 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2558 <xs:attribute name="html" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2559 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2560 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2561 Indicates whether to send message as HTML instead of plain text.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2562 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2563 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2564 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2565 <xs:attribute name="addNewLines" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2566 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2567 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2568 Indicates whether to add new lines between log entries.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2569 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2570 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2571 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2572 <xs:attribute name="encoding" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2573 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2574 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2575 Encoding to be used for sending e-mail.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2576 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2577 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2578 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2579 <xs:attribute name="subject" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2580 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2581 <xs:documentation>Mail subject.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2582 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2583 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2584 <xs:attribute name="to" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2585 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2586 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2587 Recipients' email addresses separated by semicolons (e.g. john@domain.com;jane@domain.com).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2588 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2589 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2590 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2591 <xs:attribute name="bcc" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2592 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2593 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2594 BCC email addresses separated by semicolons (e.g. john@domain.com;jane@domain.com).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2595 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2596 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2597 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2598 <xs:attribute name="cc" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2599 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2600 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2601 CC email addresses separated by semicolons (e.g. john@domain.com;jane@domain.com).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2602 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2603 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2604 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2605 <xs:attribute name="from" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2606 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2607 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2608 Sender's email address (e.g. joe@domain.com).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2609 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2610 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2611 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2612 <xs:attribute name="body" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2613 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2614 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2615 Mail message body (repeated for each log message send in one mail).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2616 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2617 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2618 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2619 <xs:attribute name="smtpUserName" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2620 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2621 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2622 Username used to connect to SMTP server (used when SmtpAuthentication is set to "basic").
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2623 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2624 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2625 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2626 <xs:attribute name="enableSsl" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2627 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2628 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2629 Indicates whether SSL (secure sockets layer) should be used when communicating with SMTP server.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2630 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2631 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2632 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2633 <xs:attribute name="smtpPassword" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2634 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2635 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2636 Password used to authenticate against SMTP server (used when SmtpAuthentication is set to "basic").
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2637 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2638 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2639 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2640 <xs:attribute name="smtpAuthentication" type="NLog.Targets.SmtpAuthenticationMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2641 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2642 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2643 SMTP Authentication mode.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2644 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2645 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2646 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2647 <xs:attribute name="smtpServer" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2648 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2649 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2650 SMTP Server to be used for sending.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2651 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2652 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2653 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2654 <xs:attribute name="smtpPort" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2655 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2656 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2657 Port number that SMTP Server is listening on.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2658 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2659 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2660 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2661 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2662 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2663 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2664 <xs:simpleType name="NLog.Targets.SmtpAuthenticationMode">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2665 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2666 <xs:enumeration value="None" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2667 <xs:enumeration value="Basic" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2668 <xs:enumeration value="Ntlm" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2669 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2670 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2671 <xs:complexType name="PerfCounter">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2672 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2673 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2674 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2675 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2676 <xs:element name="instanceName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2677 <xs:element name="counterHelp" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2678 <xs:element name="counterType" minOccurs="0" maxOccurs="1" type="System.Diagnostics.PerformanceCounterType" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2679 <xs:element name="autoCreate" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2680 <xs:element name="categoryName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2681 <xs:element name="counterName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2682 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2683 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2684 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2685 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2686 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2687 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2688 <xs:attribute name="instanceName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2689 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2690 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2691 Performance counter instance name.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2692 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2693 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2694 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2695 <xs:attribute name="counterHelp" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2696 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2697 <xs:documentation>Counter help text.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2698 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2699 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2700 <xs:attribute name="counterType" type="System.Diagnostics.PerformanceCounterType">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2701 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2702 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2703 Performance counter type.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2704 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2705 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2706 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2707 <xs:attribute name="autoCreate" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2708 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2709 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2710 Indicates whether performance counter should be automatically created.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2711 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2712 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2713 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2714 <xs:attribute name="categoryName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2715 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2716 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2717 Name of the performance counter category.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2718 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2719 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2720 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2721 <xs:attribute name="counterName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2722 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2723 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2724 Name of the performance counter.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2725 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2726 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2727 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2728 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2729 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2730 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2731 <xs:simpleType name="System.Diagnostics.PerformanceCounterType">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2732 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2733 <xs:enumeration value="NumberOfItems32" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2734 <xs:enumeration value="NumberOfItems64" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2735 <xs:enumeration value="NumberOfItemsHEX32" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2736 <xs:enumeration value="NumberOfItemsHEX64" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2737 <xs:enumeration value="RateOfCountsPerSecond32" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2738 <xs:enumeration value="RateOfCountsPerSecond64" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2739 <xs:enumeration value="CountPerTimeInterval32" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2740 <xs:enumeration value="CountPerTimeInterval64" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2741 <xs:enumeration value="RawFraction" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2742 <xs:enumeration value="RawBase" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2743 <xs:enumeration value="AverageTimer32" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2744 <xs:enumeration value="AverageBase" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2745 <xs:enumeration value="AverageCount64" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2746 <xs:enumeration value="SampleFraction" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2747 <xs:enumeration value="SampleCounter" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2748 <xs:enumeration value="SampleBase" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2749 <xs:enumeration value="CounterTimer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2750 <xs:enumeration value="CounterTimerInverse" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2751 <xs:enumeration value="Timer100Ns" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2752 <xs:enumeration value="Timer100NsInverse" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2753 <xs:enumeration value="ElapsedTime" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2754 <xs:enumeration value="CounterMultiTimer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2755 <xs:enumeration value="CounterMultiTimerInverse" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2756 <xs:enumeration value="CounterMultiTimer100Ns" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2757 <xs:enumeration value="CounterMultiTimer100NsInverse" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2758 <xs:enumeration value="CounterMultiBase" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2759 <xs:enumeration value="CounterDelta32" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2760 <xs:enumeration value="CounterDelta64" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2761 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2762 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2763 <xs:complexType name="RichTextBox">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2764 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2765 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2766 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2767 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2768 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2769 <xs:element name="height" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2770 <xs:element name="autoScroll" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2771 <xs:element name="maxLines" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2772 <xs:element name="showMinimized" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2773 <xs:element name="toolWindow" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2774 <xs:element name="controlName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2775 <xs:element name="formName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2776 <xs:element name="width" minOccurs="0" maxOccurs="1" type="xs:integer" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2777 <xs:element name="word-coloring" minOccurs="0" maxOccurs="unbounded"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2778 type="NLog.Targets.RichTextBoxWordColoringRule" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2779 <xs:element name="useDefaultRowColoringRules" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2780 <xs:element name="row-coloring" minOccurs="0" maxOccurs="unbounded"
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2781 type="NLog.Targets.RichTextBoxRowColoringRule" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2782 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2783 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2784 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2785 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2786 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2787 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2788 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2789 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2790 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2791 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2792 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2793 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2794 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2795 <xs:attribute name="height" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2796 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2797 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2798 Initial height of the form with rich text box.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2799 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2800 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2801 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2802 <xs:attribute name="autoScroll" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2803 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2804 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2805 Indicates whether scroll bar will be moved automatically to show most recent log entries.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2806 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2807 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2808 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2809 <xs:attribute name="maxLines" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2810 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2811 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2812 Maximum number of lines the rich text box will store (or 0 to disable this feature).
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2813 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2814 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2815 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2816 <xs:attribute name="showMinimized" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2817 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2818 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2819 Indicates whether the created form will be initially minimized.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2820 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2821 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2822 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2823 <xs:attribute name="toolWindow" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2824 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2825 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2826 Indicates whether the created window will be a tool window.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2827 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2828 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2829 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2830 <xs:attribute name="controlName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2831 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2832 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2833 Name of RichTextBox to which Nlog will write.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2834 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2835 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2836 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2837 <xs:attribute name="formName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2838 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2839 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2840 Name of the Form on which the control is located. If there is no open form of a specified name than NLog will create a new one.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2841 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2842 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2843 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2844 <xs:attribute name="width" type="xs:integer">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2845 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2846 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2847 Initial width of the form with rich text box.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2848 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2849 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2850 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2851 <xs:attribute name="useDefaultRowColoringRules" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2852 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2853 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2854 Indicates whether to use default coloring rules.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2855 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2856 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2857 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2858 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2859 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2860 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2861 <xs:simpleType name="System.Drawing.FontStyle">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2862 <xs:restriction base="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2863 <xs:enumeration value="Regular" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2864 <xs:enumeration value="Bold" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2865 <xs:enumeration value="Italic" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2866 <xs:enumeration value="Underline" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2867 <xs:enumeration value="Strikeout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2868 </xs:restriction>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2869 </xs:simpleType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2870 <xs:complexType name="NLog.Targets.RichTextBoxWordColoringRule">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2871 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2872 <xs:element name="backgroundColor" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2873 <xs:element name="fontColor" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2874 <xs:element name="ignoreCase" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2875 <xs:element name="regex" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2876 <xs:element name="style" minOccurs="0" maxOccurs="1" type="System.Drawing.FontStyle" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2877 <xs:element name="text" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2878 <xs:element name="wholeWords" minOccurs="0" maxOccurs="1" type="xs:boolean" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2879 </xs:choice>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2880 <xs:attribute name="backgroundColor" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2881 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2882 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2883 Background color. Names are identical with KnownColor enum extended with Empty value which means that background color won't be changed.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2884 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2885 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2886 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2887 <xs:attribute name="fontColor" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2888 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2889 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2890 Font color. Names are identical with KnownColor enum extended with Empty value which means that font color won't be changed.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2891 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2892 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2893 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2894 <xs:attribute name="ignoreCase" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2895 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2896 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2897 Indicates whether to ignore case when comparing texts.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2898 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2899 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2900 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2901 <xs:attribute name="regex" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2902 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2903 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2904 Regular expression to be matched. You must specify either text or regex.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2905 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2906 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2907 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2908 <xs:attribute name="style" type="System.Drawing.FontStyle">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2909 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2910 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2911 Font style of matched text. Possible values are the same as in FontStyle enum in System.Drawing.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2912 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2913 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2914 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2915 <xs:attribute name="text" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2916 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2917 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2918 Text to be matched. You must specify either text or regex.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2919 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2920 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2921 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2922 <xs:attribute name="wholeWords" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2923 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2924 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2925 Indicates whether to match whole words only.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2926 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2927 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2928 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2929 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2930 <xs:complexType name="NLog.Targets.RichTextBoxRowColoringRule">
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2931 <xs:choice minOccurs="0" maxOccurs="unbounded">
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2932 <xs:element name="backgroundColor" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2933 <xs:element name="condition" minOccurs="0" maxOccurs="1" type="Condition" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2934 <xs:element name="fontColor" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2935 <xs:element name="style" minOccurs="0" maxOccurs="1" type="System.Drawing.FontStyle" />
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2936 </xs:choice>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2937 <xs:attribute name="backgroundColor" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2938 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2939 <xs:documentation>Background color.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2940 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2941 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2942 <xs:attribute name="condition" type="Condition">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2943 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2944 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2945 Condition that must be met in order to set the specified font color.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2946 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2947 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2948 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2949 <xs:attribute name="fontColor" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2950 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2951 <xs:documentation>Font color.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2952 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2953 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2954 <xs:attribute name="style" type="System.Drawing.FontStyle">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2955 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2956 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2957 Font style of matched text.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2958 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2959 </xs:annotation>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
2960 </xs:attribute>
23
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2961 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2962 <xs:complexType name="Trace">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2963 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2964 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2965 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2966 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2967 <xs:element name="layout" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2968 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2969 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2970 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2971 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2972 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2973 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2974 <xs:attribute name="layout" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2975 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2976 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2977 Layout used to format log messages.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2978 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2979 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2980 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2981 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2982 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2983 </xs:complexType>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2984 <xs:complexType name="LogReceiverService">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2985 <xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2986 <xs:extension base="Target">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2987 <xs:choice minOccurs="0" maxOccurs="unbounded">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2988 <xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2989 <xs:element name="endpointConfigurationName" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2990 <xs:element name="endpointAddress" minOccurs="0" maxOccurs="1" type="xs:string" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2991 <xs:element name="useBinaryEncoding" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2992 <xs:element name="parameter" minOccurs="0" maxOccurs="unbounded" type="NLog.Targets.MethodCallParameter" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2993 <xs:element name="clientId" minOccurs="0" maxOccurs="1" type="Layout" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2994 <xs:element name="includeEventProperties" minOccurs="0" maxOccurs="1" type="xs:boolean" />
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2995 </xs:choice>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2996 <xs:attribute name="name" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2997 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2998 <xs:documentation>Name of the target.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
2999 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3000 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3001 <xs:attribute name="endpointConfigurationName" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3002 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3003 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3004 Name of the endpoint configuration in WCF configuration file.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3005 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3006 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3007 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3008 <xs:attribute name="endpointAddress" type="xs:string">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3009 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3010 <xs:documentation>Endpoint address.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3011 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3012 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3013 <xs:attribute name="useBinaryEncoding" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3014 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3015 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3016 Indicates whether to use binary message encoding.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3017 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3018 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3019 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3020 <xs:attribute name="clientId" type="SimpleLayoutAttribute">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3021 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3022 <xs:documentation>Client ID.</xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3023 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3024 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3025 <xs:attribute name="includeEventProperties" type="xs:boolean">
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3026 <xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3027 <xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3028 Indicates whether to include per-event properties in the payload sent to the server.
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3029 </xs:documentation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3030 </xs:annotation>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3031 </xs:attribute>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3032 </xs:extension>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3033 </xs:complexContent>
399398841fd0 Working version for Stocks (including loosely coupled components
adminsh@apollo
parents: 0
diff changeset
3034 </xs:complexType>
0
e5d46bb6cdb0 Initial commit
adminSH stevenhollidge@hotmail.com
parents:
diff changeset
3035 </xs:schema>