blob: 1a7e6eab9d3bc68aed62da18f8b9128c1afd1de6 (
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
|
<element name="ComPlusSubscription">
<annotation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</appinfo>
<documentation>
Defines an event subscription for a COM+ component.
</documentation>
</annotation>
<complexType>
<attribute name="Id" use="required" type="xs:string">
<annotation><documentation>
Identifier for the element.
</documentation></annotation>
</attribute>
<attribute name="Component" use="optional" type="xs:string">
<annotation><documentation>
If the element is not a child of a ComPlusComponent
element, this attribute should be provided with the id of a ComPlusComponent
element representing the component the subscription is to be created for.
</documentation></annotation>
</attribute>
<attribute name="SubscriptionId" use="optional" type="xs:string">
<annotation><documentation>
Id of the subscription. If a value is not provided for
this attribute, an id will be generated during installation.
</documentation></annotation>
</attribute>
<attribute name="Name" use="required" type="xs:string">
<annotation><documentation>
Name of the subscription.
</documentation></annotation>
</attribute>
<attribute name="EventCLSID" use="optional" type="xs:string">
<annotation><documentation>
CLSID of the event class for the subscription. If a value
for this attribute is not provided, a value for the PublisherID attribute
must be provided.
</documentation></annotation>
</attribute>
<attribute name="PublisherID" use="optional" type="xs:string">
<annotation><documentation>
Publisher id for the subscription. If a value for this
attribute is not provided, a value for the EventCLSID attribute must be
provided.
</documentation></annotation>
</attribute>
<attribute name="Description" use="optional" type="xs:string" />
<attribute name="Enabled" use="optional" type="wxs:YesNoTypeUnion" />
<attribute name="EventClassPartitionID" use="optional" type="xs:string" />
<attribute name="FilterCriteria" use="optional" type="xs:string" />
<attribute name="InterfaceID" use="optional" type="xs:string" />
<attribute name="MachineName" use="optional" type="xs:string" />
<attribute name="MethodName" use="optional" type="xs:string" />
<attribute name="PerUser" use="optional" type="wxs:YesNoTypeUnion" />
<attribute name="Queued" use="optional" type="wxs:YesNoTypeUnion" />
<attribute name="SubscriberMoniker" use="optional" type="xs:string" />
<attribute name="UserName" use="optional" type="xs:string" />
</complexType>
</element>
|