Help > Web Development > Object Reference > Object Reference > ISYSMetadataList
<a name="kanchor462"></a>ISYSMetadataList Object
Contains a list of metadata pertaining to the current document.
ISYSMetadataList Properties
CountIndicates the number of items in the list. Read-Only.
ItemAllows random access to individual items within the list.
KeyAllows random access to individual item keys within the list.
Remarks
Metadata is any information stored about the document, usually in name/value pairs. ISYS will automatically recognize metadata from HTML, PDF and Office documents and cache it in the index, allowing you to access it quickly for displaying in your result lists.

If your metadata is stored external to the documents, you can still index it using a "Metadata Provider". See ISYS:utilities Help for details.

Examples
[VBScript]
<% ' Get the document Set Document = Results(CLng(Request("doc"))) Set MetaList = Document.MetaData %>
See Also
ISYSDocument::MetaData