-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathManagedDeveloper.xsd
359 lines (359 loc) · 14.2 KB
/
ManagedDeveloper.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<?xml version="1.0" encoding="utf-8"?>
<schema targetNamespace="http://schemas.microsoft.com/maml/2004/4" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:maml="http://schemas.microsoft.com/maml/2004/4" xmlns:doc="http://schemas.microsoft.com/maml/internal" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all" xml:lang="en">
<!-- Schema documentation -->
<annotation>
<documentation>
This schema describes MAML, the Microsoft Assistance Markup Language.
MAML is intended for software documentation. In particular, it is
intended to accomodate the needs of Microsoft documentation.
</documentation>
<documentation>
The schema is broken into three main areas: end user, developer and
IT Pro. These areas adequaltely categorize Microsoft
documentation.
</documentation>
<documentation>
The namespace uri for this version of MAML is: http://schemas.microsoft.com/maml/2004/4.
Each backwards-incompatible revision to MAML will require that the date fields be appropriately
incremented in uri of the updated version of the MAML schema.
</documentation>
</annotation>
<annotation>
<documentation>
This portion of the schema was created by chains in July 2004.
</documentation>
<documentation>
This portion of the schema defines the page types for managed page types.
</documentation>
</annotation>
<include schemaLocation="conditionSet.xsd"/>
<include schemaLocation="ManagedDeveloperStructure.xsd"/>
<!-- <include schemaLocation="developerReference.xsd"/> -->
<!-- ************ Reference Content Type ************ -->
<element name="managedClass" type="maml:managedClassType">
<annotation>
<documentation>
This is the root element of a managed class document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedClassType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:implements"/> -->
<!-- <element ref="maml:members"/> -->
<!-- <element ref="maml:genericParameters"/> -->
<!-- <element ref="maml:genericConstraints"/> -->
<!-- <element ref="maml:security"/> -->
<!-- <element ref="maml:xamlAttributeUsage"/> -->
<!-- <element ref="maml:xamlElementUsage"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:derives"/> -->
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:threadSafety"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedMethod" type="maml:managedMethodType">
<annotation>
<documentation>
This is the root element of a managed method document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedMethodType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:parameters"/> -->
<!-- <element ref="maml:returnValue"/> -->
<!-- <element ref="maml:exceptions"/> -->
<!-- <element ref="maml:security"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:threadSafety"/> -->
<!-- <element ref="maml:appliesTo"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedEvent" type="maml:managedEventType">
<annotation>
<documentation>
This is the root element of a managed event document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedEventType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:eventData"/> -->
<!-- <element ref="maml:security"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:threadSafety"/> -->
<!-- <element ref="maml:appliesTo"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedProperty" type="maml:managedPropertyType">
<annotation>
<documentation>
This is the root element of a managed property document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedPropertyType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:implements"/> --> <!-- BUGBUG: This seems wrong -->
<!-- <element ref="maml:property"/> -->
<!-- <element ref="maml:exceptions"/> -->
<!-- <element ref="maml:security"/> -->
<!-- <element ref="maml:xamlAttributeValue"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:threadSafety"/> --> <!-- BUGBUG: This isn't in specification. Why not! -->
<!-- <element ref="maml:appliesTo"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedStructure" type="maml:managedStructureType">
<annotation>
<documentation>
This is the root element of a managed structure document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedStructureType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:members"/> -->
<!-- <element ref="maml:genericParameters"/> -->
<!-- <element ref="maml:genericConstraints"/> -->
<!-- <element ref="maml:security"/> -->
<!-- <element ref="maml:xamlAttributeUsage"/> -->
<!-- <element ref="maml:xamlElementUsage"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:threadSafety"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedNamespace" type="maml:managedNamespaceType">
<annotation>
<documentation>
This is the root element of a managed namespace document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedNamespaceType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:namespace"/> -->
<!-- <element ref="maml:classes"/> -->
<!-- <element ref="maml:interfaces"/> -->
<!-- <element ref="maml:delegates"/> -->
<!-- <element ref="maml:enumerations"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedEnumeration" type="maml:managedEnumerationType">
<annotation>
<documentation>
This is the root element of a managed enumeration document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedEnumerationType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:members"/> -->
<!-- <element ref="maml:xamlAttributeUsage"/> -->
<!-- <element ref="maml:xamlElementUsage"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedInterface" type="maml:managedInterfaceType">
<annotation>
<documentation>
This is the root element of a managed interface document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedInterfaceType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:implementedBy"/> -->
<!-- <element ref="maml:members"/> -->
<!-- <element ref="maml:genericParameters"/> -->
<!-- <element ref="maml:genericConstraints"/> -->
<!-- <element ref="maml:security"/> -->
<!-- <element ref="maml:xamlAttributeUsage"/> -->
<!-- <element ref="maml:xamlElementUsage"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:derives"/> --> <!-- BUGBUG: This isn't in the spec but I think this is needed too. -->
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedDelegate" type="maml:managedDelegateType">
<annotation>
<documentation>
This is the root element of a managed delegate document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedDelegateType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:parameters"/> -->
<!-- <element ref="maml:genericParameters"/> -->
<!-- <element ref="maml:genericConstraints"/> -->
<!-- <element ref="maml:security"/> --> <!-- BUGBUG: This isn't in the spec but I think this is needed too. -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedOperator" type="maml:managedOperatorType">
<annotation>
<documentation>
This is the root element of a managed operator document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedOperatorType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:parameters"/> -->
<!-- <element ref="maml:returnValue"/> -->
<!-- <element ref="maml:exceptions"/> --> <!-- BUGBUG: This isn't in the spec but I think this is needed too. -->
<!-- <element ref="maml:security"/> --> <!-- BUGBUG: This isn't in the spec but I think this is needed too. -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:threadSafety"/> --> <!-- BUGBUG: This isn't in the spec but I think this is needed too. -->
<!-- <element ref="maml:appliesTo"/> --> <!-- BUGBUG: This isn't in the spec but I think this is needed too. -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedField" type="maml:managedFieldType">
<annotation>
<documentation>
This is the root element of a managed field document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedFieldType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:datatype"/> --> <!-- BUGBUG: This isn't in spec, but we need something to indicate data type -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:threadSafety"/> --> <!-- BUGBUG: This isn't in specification. Why not! -->
<!-- <element ref="maml:appliesTo"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedOverload" type="maml:managedOverloadType">
<annotation>
<documentation>
This is the root element of a managed overload document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedOverloadType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:overloads"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
<element name="managedConstructor" type="maml:managedConstructorType">
<annotation>
<documentation>
This is the root element of a managed constructor document.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="managedConstructorType" mixed="false">
<sequence>
<element ref="maml:title"/>
<element ref="maml:introduction"/>
<!-- <element ref="maml:parameters"/> -->
<!-- <element ref="maml:returnValue"/> -->
<!-- <element ref="maml:exceptions"/> -->
<!-- <element ref="maml:security"/> -->
<element ref="maml:remarks" minOccurs="0" maxOccurs="unbounded"/>
<!-- <element ref="maml:examples"/> -->
<!-- <element ref="maml:threadSafety"/> -->
<!-- <element ref="maml:appliesTo"/> -->
<!-- <element ref="maml:requirements"/> -->
<!-- <element ref="maml:relatedTopics"/>-->
</sequence>
</complexType>
</schema>