JAMS Developer Guide
Find(String,Server) Method


MVPSI.JAMS Namespace > Folder Class > Find Method : Find(String,Server) Method
The fully qualified name of the starting folder.
The JAMS Server to search.
Creates a collection of a folder and all of the descendants.

Note that the Folder objects in this collection are not fully formed, the Properties, Elements and Parameters ate not loaded. This collection is intended to be use to navigate a hierarchy of folders. If you want to know the details of a Folder, you need to use the Load method to load a fully formed object.

Syntax
'Declaration
 
Public Overloads Shared Function Find( _
   ByVal queryPath As System.String, _
   ByVal js As Server _
) As System.Collections.Generic.ICollection(Of Folder)
'Usage
 
Dim queryPath As System.String
Dim js As Server
Dim value As System.Collections.Generic.ICollection(Of Folder)
 
value = Folder.Find(queryPath, js)
public static System.Collections.Generic.ICollection<Folder> Find( 
   System.string queryPath,
   Server js
)

Parameters

queryPath
The fully qualified name of the starting folder.
js
The JAMS Server to search.

Return Value

The new FolderList.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Folder Class
Folder Members
Overload List