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

Retrieves matching list items from within a specific query scope.

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

Syntax

C#
IList<SPListItem> Fetch(
	SPWeb web,
	CAML.CAML..::QueryScope scope
)
Visual Basic (Declaration)
Function Fetch ( _
	web As SPWeb, _
	scope As CAML..::QueryScope _
) As IList(Of SPListItem)
Visual C++
IList<SPListItem^>^ Fetch (
	SPWeb^ web, 
	CAML..::QueryScope scope
)

Parameters

web
SPWeb
The web to which the query will be applied.
scope
CAML..::QueryScope
The query scope.

Return Value

a list of SPListItem objects

See Also