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

Extended constructor that accepts the CAML query string along with a variable length list of field references.

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

Syntax

C#
public CamlQuery(
	string query,
	params string[] viewFields
)
Visual Basic (Declaration)
Public Sub New ( _
	query As String, _
	ParamArray viewFields As String() _
)
Visual C++
public:
CamlQuery (
	String^ query, 
	... array<String^>^ viewFields
)

Parameters

query
String
the CAML query string
viewFields
array<String>[]()
a list of FieldRef clauses that specify which fields to include in the result set

See Also