blob: 6e033e3d1f37adf8d312851c08658044592b57e4 (
plain)
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
|
<element name="MessageQueue">
<annotation>
<documentation>Installs an MSMQ message queue.</documentation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</appinfo>
</annotation>
<complexType>
<choice minOccurs="0" maxOccurs="unbounded">
<element ref="MessageQueuePermission" />
<any namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
elements at this point in the schema.
</documentation>
</annotation>
</any>
</choice>
<attribute name="Id" type="xs:string">
<annotation>
<documentation>Identifier for the message queue. If the Id is not specified, one will be generated.</documentation>
</annotation>
</attribute>
<attribute name="Authenticate" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>The default value is "no".</documentation>
</annotation>
</attribute>
<attribute name="BasePriority" type="wxs:Integer">
<annotation>
<documentation>The base priority of the queue.</documentation>
</annotation>
</attribute>
<attribute name="Journal" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>The default value is "no".</documentation>
</annotation>
</attribute>
<attribute name="JournalQuota" type="wxs:Integer" />
<attribute name="Label" use="required" type="xs:string" />
<attribute name="MulticastAddress" type="xs:string" />
<attribute name="PathName" use="required" type="xs:string" />
<attribute name="PrivLevel">
<simpleType>
<restriction base="xs:NMTOKEN">
<enumeration value="none" />
<enumeration value="optional" />
<enumeration value="body" />
</restriction>
</simpleType>
</attribute>
<attribute name="Quota" type="wxs:Integer" />
<attribute name="Transactional" type="wxs:YesNoTypeUnion">
<annotation>
<documentation>The default value is "no".</documentation>
</annotation>
</attribute>
<attribute name="ServiceTypeGuid" type="xs:string" />
<anyAttribute namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
attributes at this point in the schema.
</documentation>
</annotation>
</anyAttribute>
</complexType>
</element>
|