Help > Web Development > Object Reference > Object Reference > ISYSResultList > RemoveUnauthorized Method
<a name="kanchor515"></a>ISYSResultList:RemoveUnauthorized Method
Scans the result list and removes documents that the current NT user does not have permission to view.

Note: This method is provided for compatibility with ISYS 6. Applications should use the ISYSSearch object with Attribute("SECURITY") = True.

Syntax
[VBScript]
sub ISYSResultList.RemoveUnauthorized
[C#]
void IISYSResultList.RemoveUnauthorized();
[ColdFusion/Java]
void IISYSResultList.RemoveUnauthorized() throws ComException;
Examples
[VBScript]
<% ' This sample demonstrates removing unauthorized documents from a result list ' Execute a pre-configured search Set Results = ISYSSearch.Execute Results.RemoveUnauthorized %>
See Also