aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/iis/WebProperty.xsd
blob: d2cb28d29192253f27f380ed84f3525a1c9b3d8d (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
<element name="WebProperty">
    <annotation>
      <appinfo>
        <parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
        <remarks>
          Here is an explanation of the acceptable values for each property and their meaning:
          <ul>
            <li>
              For the Ids IIs5IsolationMode and LogInUTF8, no value should be specified since
              the presence of this property indicates that the setting should be set.
            </li>
            <li>
              For the MaxGlobalBandwidth Id, the value should be specified in kilobytes.  The
              value should be a base 10 number.
            </li>
            <li>
              ETagChangeNumber sets the machine-specific portion of ETag as a number. This value,
              when synchronized across servers in a web farm, allows the web farm to return an
              identical ETag for a given resource regardless of the server that handled the
              request.  The value should be a base 10 number.
            </li>
          </ul>
        </remarks>
      </appinfo>
      <documentation>IIS Properties</documentation>
    </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">
        <simpleType>
          <restriction base="xs:string">
            <enumeration value="ETagChangeNumber" />
            <enumeration value="IIs5IsolationMode" />
            <enumeration value="MaxGlobalBandwidth" />
            <enumeration value="LogInUTF8" />
          </restriction>
        </simpleType>
      </attribute>
      <attribute name="Value" type="xs:string">
        <annotation>
          <documentation>
            The value to be used for the WebProperty specified in the Id attribute.  See
            the remarks section for information on acceptable values for each Id.
          </documentation>
        </annotation>
      </attribute>
      <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>