Share via


DetailGroup Element

Specifies the detail information about the health status of a security component.

<xs:element maxOccurs="unbounded" name="DetailGroup">
  <xs:complexType>
    <xs:sequence>
      <xs:element minOccurs="0" name="Assembly" type="xs:string" />
      <xs:element minOccurs="0" name="Class" type="xs:string" />
      <xs:element minOccurs="0" name="InitializationScript" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="unbounded" name="Detail">...</xs:element>
    </xs:sequence>
    <xs:attribute name="Type" type="xs:string" use="required" />
  </xs:complexType>
</xs:element>

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute Description

Type

Required string attribute.

Specifies how the detail information about a health check will be provided for a security component. The detail information can be provided with a user-defined object by using the Binary type or with a PowerShell script by using the PowerShell type.

Child Elements

Element Description

Assembly Element

Specifies the .dll file that contains the user-defined class for performing a health check or for providing detail information about the results of a health check.

Class Element

Specifies the user-defined class to use for performing a health check or for providing detail information about the results of a health check.

InitializationScript Element

Specifies the PowerShell script to use for providing detail information about the results of a health check.

Detail Element

Specifies the title and value of the detail information.

Parent Elements

Element Description

DetailGroups Element

Provides the detail information about the health status for a security component.

Remarks

The XML file that uses this element is not validated against an .xsd file, it is used by internal classes to add security component data to the Windows SBS Console.

See Also

Concepts

Security Add-in XML Schema Reference
Walkthrough: Creating a Security Add-in Using XML and PowerShell
Walkthrough: Creating a Security Add-in Using XML and C#