Facet Complex Type Complex Type

Facet Complex Type

Defines an element that holds the name of a facet of a setting (a subsetting used to read a value from or write a value to a setting). Facets hold values inside a setting.

<xs:complexType name="Facet"> <xs:attribute name="Name" type="SimpleName" use="required" />

  • Name
    The name of the facet in a setting.

</xs:complexType>

  • Facet
    Defines an element that holds the name of a facet of a setting (a subsetting used to read a value from or write a value to a setting).

Attributes

Name Type Description
Name SimpleName

The name of the facet in a setting.

Remarks

In the following setting declaration, a setting declaration named Auth is declared with three subsettings: Resultant, Current, and Parent.

<SettingDeclaration Name="Auth" Definition="String" 
        DefaultRead="Resultant" DefaultWrite="Current">
    <Facet Name="Resultant"/>
    <Facet Name="Current"/>
    <Facet Name="Parent"/>
</SettingDeclaration>

A setting value in the same scope can then be declared:

<SettingValue Path="Auth">4</SettingValue>

See Also

SystemDefinitionModel Schema Complex Types

Send comments about this topic to Microsoft

Build date: 10/2/2007