instance
Specifies an output that contains the requested information about an entry.
The <instance> element is an output that is sent with the status command as a reply to a query command.
An <instance> element is returned for each entry that matches the search filter of the query.
<!ELEMENT instance (association?, parent?, attr*)>
<!ATTLIST instance
src-dn CDATA #IMPLIED
src-entry-id CDATA #IMPLIED
class-name CDATA #REQUIRED
event-id CDATA #IMPLIED>
When the DirXML driver returns an <instance> element, the element must contain an <association> element.
When the DirXML engine returns an <instance> element, the element contains an <association> element if one has been formed for the entry.
The following example illustrates an <instance> element.
<instance class-name="User" src-dn="\Users\Samuel">
<association>1012</association>
<attr attr-name="Surname">
<value>Jones</value>
</attr>
<attr attr-name="cn">
<value>Samuel</value>
</attr>
<attr attr-name="Given Name">
<value>Samuel</value>
</attr>
<attr attr-name="Telephone Number">
<value>555-1212</value>
<value>555-1764</value>
</attr>
</instance>