[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

A static method for quickly retrieving items from a list based on a query string.

Namespace: JohnHolliday.Caml.Net
Assembly:  JohnHolliday.Caml.Net (in JohnHolliday.Caml.Net.dll)

Syntax

C#
public static IList<SPListItem> Fetch(
	SPList list,
	string queryXml
)
Visual Basic (Declaration)
Public Shared Function Fetch ( _
	list As SPList, _
	queryXml As String _
) As IList(Of SPListItem)
Visual C++
public:
static IList<SPListItem^>^ Fetch (
	SPList^ list, 
	String^ queryXml
)

Parameters

list
SPList
the list containing the items
queryXml
String
the query xml

Return Value

the collection of matching items

See Also