blob: ecb875f98fabe28cca0e21736fec0980c8096ff4 (
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
|
<element name="MessageQueuePermission">
<annotation><documentation>
</documentation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</appinfo>
</annotation>
<complexType>
<choice minOccurs="0" maxOccurs="unbounded">
<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" use="required" type="xs:string">
<annotation>
<documentation>Identifier for the message queue permission. If the Id is not specified, one will be generated.</documentation>
</annotation>
</attribute>
<attribute name="MessageQueue" type="xs:string">
<annotation>
<documentation>Message queue to set permissions on. Must be specified when under a Component element. Cannot be specified when under a MessageQueue element.</documentation>
</annotation>
</attribute>
<attribute name="User" type="xs:string">
<annotation>
<documentation></documentation>
</annotation>
</attribute>
<attribute name="Group" type="xs:string">
<annotation>
<documentation></documentation>
</annotation>
</attribute>
<attribute name="DeleteMessage" type="wxs:YesNoTypeUnion" />
<attribute name="PeekMessage" type="wxs:YesNoTypeUnion" />
<attribute name="WriteMessage" type="wxs:YesNoTypeUnion" />
<attribute name="DeleteJournalMessage" type="wxs:YesNoTypeUnion" />
<attribute name="SetQueueProperties" type="wxs:YesNoTypeUnion" />
<attribute name="GetQueueProperties" type="wxs:YesNoTypeUnion" />
<attribute name="DeleteQueue" type="wxs:YesNoTypeUnion" />
<attribute name="GetQueuePermissions" type="wxs:YesNoTypeUnion" />
<attribute name="ChangeQueuePermissions" type="wxs:YesNoTypeUnion" />
<attribute name="TakeQueueOwnership" type="wxs:YesNoTypeUnion" />
<attribute name="ReceiveMessage" type="wxs:YesNoTypeUnion" />
<attribute name="ReceiveJournalMessage" type="wxs:YesNoTypeUnion" />
<attribute name="QueueGenericRead" type="wxs:YesNoTypeUnion" />
<attribute name="QueueGenericWrite" type="wxs:YesNoTypeUnion" />
<attribute name="QueueGenericExecute" type="wxs:YesNoTypeUnion" />
<attribute name="QueueGenericAll" type="wxs:YesNoTypeUnion" />
<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>
|