File size: 12,299 Bytes
8c763fb | 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 | <?xml version="1.0" encoding="utf-8"?>
<schema targetNamespace="http://schemas.microsoft.com/maml/2004/10"
xmlns:doc="http://schemas.microsoft.com/maml/internal"
xmlns:maml="http://schemas.microsoft.com/maml/2004/10"
xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
attributeFormDefault="unqualified"
blockDefault="#all"
xml:lang="en">
<!-- Schema documentation -->
<annotation>
<documentation>This schema describes MAML (Microsoft Assistance Markup Language). MAML is intended for software documentation. In particular, MAML is intended to accommodate the needs of Microsoft documentation.</documentation>
<documentation>The schema is broken into three main areas: end user, developer and IT Pro. These areas represent the main categories of Microsoft documentation.</documentation>
<documentation>The namespace uri for this version of MAML is: http://schemas.microsoft.com/maml/2004/10.</documentation>
<documentation>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>
<include schemaLocation="baseConditional.xsd"/>
<include schemaLocation="inline.xsd"/>
<include schemaLocation="block.xsd"/>
<include schemaLocation="structure.xsd"/>
<include schemaLocation="developerStructure.xsd"/>
<!-- ************ Start of assembly ************ -->
<element name="assemblyName" type="token">
<annotation>
<documentation>Identifies the name of an assembly.</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="assemblyVersion" type="token">
<annotation>
<documentation>Identifies the version of an assembly.</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="assemblyCulture" type="token">
<annotation>
<documentation>Identifies the culture of an assembly.</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="assemblyPublicKey" type="token">
<annotation>
<documentation>Identifies the public key for an assembly.</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="assemblyHash" type="token">
<annotation>
<documentation>Identifies the hash for an assembly.</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="assemblyType" mixed="false">
<sequence>
<element ref="maml:assemblyName"/>
<element ref="maml:assemblyVersion" minOccurs="0"/>
<element ref="maml:assemblyCulture" minOccurs="0"/>
<element ref="maml:assemblyPublicKey" minOccurs="0"/>
<element ref="maml:assemblyHash" minOccurs="0"/>
</sequence>
</complexType>
<element name="assembly" type="maml:assemblyType">
<annotation>
<documentation>Describes a collection of information for an assembly.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<!-- ************ End of assembly ************ -->
<element name="internalOnly" type="maml:emptyType">
<annotation>
<documentation>Reserved for internal use.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="returnValue" type="maml:sectionContentType">
<annotation>
<documentation>Specifies the return value of a function or property.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="threadSafety" type="maml:sectionContentType">
<annotation>
<documentation>Contains a discussion of the thread safety characteristics of the current item.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="notesForImplementers" type="maml:sectionContentType">
<annotation>
<documentation>Contains information that is only relevant to implementers of the current item.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="notesForCallers" type="maml:sectionContentType">
<annotation>
<documentation>Contains information that is only relevant to callers of the current item.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="notesForInheritors" type="maml:sectionContentType">
<annotation>
<documentation>Contains information that is only relevant to inheritors of the current item.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="codeReferenceDescriptionType" mixed="false">
<sequence>
<element ref="maml:codeEntityReference"/>
<element ref="maml:content"/>
</sequence>
</complexType>
<element name="clsCompliantAlternative" type="maml:codeReferenceDescriptionType">
<annotation>
<documentation>Refers to another code entity that performs a function similar to that of the current code entity. Unlike the current entity, the target of the reference is CLS-compliant.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="equivalentCodeEntity" type="maml:codeReferenceDescriptionType">
<annotation>
<documentation>Refers to another code entity that performs the same function as the current code entity. It is typically used for mapping from an operator to the equivalent function (such as from op_Equality to Equals) or from an obsolete item to its replacement.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="genericParameter" type="maml:codeReferenceDescriptionType">
<annotation>
<documentation>Contains a description of a generic or template parameter.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="genericParametersType" mixed="false">
<sequence>
<element ref="maml:genericParameter" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
<element name="genericParameters" type="maml:genericParametersType">
<annotation>
<documentation>Contains a collection of genericParameter elements.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="parameter" type="maml:codeReferenceDescriptionType">
<annotation>
<documentation>Contains a description of a functional parameter.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="parametersType" mixed="false">
<sequence>
<element ref="maml:parameter" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
<element name="parameters" type="maml:parametersType">
<annotation>
<documentation>Describes a collection of parameter elements.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="exception" type="maml:codeReferenceDescriptionType">
<annotation>
<documentation>Contains a description of one type of exception.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="exceptionsType" mixed="false">
<sequence>
<element ref="maml:exception" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
<element name="exceptions" type="maml:exceptionsType">
<annotation>
<documentation>Contains a collection of exception elements.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<element name="permission" type="maml:codeReferenceDescriptionType">
<annotation>
<documentation>Contains a discussion of a particular permission required to use the current code element.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="permissionsType" mixed="false">
<sequence>
<element ref="maml:permission" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
<element name="permissions" type="maml:permissionsType">
<annotation>
<documentation>Contains a collection of permission elements.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="platformNoteType" mixed="false">
<sequence>
<element ref="maml:platforms"/>
<element ref="maml:content"/>
</sequence>
</complexType>
<element name="platformNote" type="maml:platformNoteType">
<annotation>
<documentation>Contains a collection of platforms along with a discussion of the behavior of the current code entity on those platforms.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="platformNotesType" mixed="false">
<sequence>
<element ref="maml:platformNote" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
<element name="platformNotes" type="maml:platformNotesType">
<annotation>
<documentation>Contains a collection of platformNote elements.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="codeEntityType" mixed="false">
<sequence>
<element ref="maml:codeEntityReference"/>
<element ref="maml:internalOnly" minOccurs="0"/>
<element ref="maml:clsCompliantAlternative" minOccurs="0"/>
<element ref="maml:equivalentCodeEntity" minOccurs="0"/>
<element ref="maml:introduction" minOccurs="0"/>
<element ref="maml:genericParameters" minOccurs="0"/>
<element ref="maml:parameters" minOccurs="0"/>
<element ref="maml:returnValue" minOccurs="0"/>
<element ref="maml:exceptions" minOccurs="0"/>
<element ref="maml:threadSafety" minOccurs="0"/>
<element ref="maml:remarks" minOccurs="0"/>
<element ref="maml:notesForImplementers" minOccurs="0"/>
<element ref="maml:notesForCallers" minOccurs="0"/>
<element ref="maml:notesForInheritors" minOccurs="0"/>
<element ref="maml:platformNotes" minOccurs="0"/>
<element ref="maml:codeExamples" minOccurs="0"/>
<element ref="maml:permissions" minOccurs="0"/>
<element ref="maml:relatedLinks" minOccurs="0"/>
</sequence>
</complexType>
<element name="codeEntity" type="maml:codeEntityType">
<annotation>
<documentation>Contains the documentation for a single code entity. A code entity is a type, member, or overload-set. The code entity is identified by a single codeEntityReference element, that is a child of this element.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
<complexType name="codeEntitiesType" mixed="false">
<sequence>
<element ref="maml:codeEntity" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
<element name="codeEntities" type="maml:codeEntitiesType">
<annotation>
<documentation>Contains a simple collection of codeEntity elements.</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
</appinfo>
</annotation>
</element>
</schema>
|