In Configuration Manager, the DigestType complex type is a structural type that is used for defining the digest document. This is the type definition for the DesiredConfigurationDigest element, which is the root element for a DCM digest.

<xs:complexType name="DigestType">
	<xs:sequence>
		<xs:choice>
			<xs:element
				ref="ConfigurationItem"
			 />
			<xs:element
				ref="ConfigurationItemWithContents"
			 />
		</xs:choice>
		<xs:any
			processContents="skip"
			minOccurs="0"
			maxOccurs="unbounded"
			namespace="##other"
		 />
	</xs:sequence>
	<xs:attribute name="IsComplete"
		type="boolean"
		use="optional"
	 />
	<xs:attribute name="MinVersion"
		type="FunctionalVersion"
		use="optional"
	 />
	<xs:attribute name="AuthoringVersion"
		type="FunctionalVersion"
		use="optional"
	 />
</xs:complexType>

Attributes

Name Type Description

AuthoringVersion

FunctionalVersion

The authoring version specifies which version of SML runtime the configuration is authored against.

IsComplete

Boolean

Reserved for internal use by Configuration Manager 2007.

MinVersion

FunctionalVersion

The minimum version specifies the minimum version of the SML runtime needed to process the configuration item.

See Also


Send comments about this topic to Microsoft.