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

Handles an arbitrary number of attribute value pairs

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

Syntax

C#
public static string Tag(
	string tag,
	string value,
	params Object[] attributeValuePairs
)
Visual Basic (Declaration)
Public Shared Function Tag ( _
	tag As String, _
	value As String, _
	ParamArray attributeValuePairs As Object() _
) As String
Visual C++
public:
static String^ Tag (
	String^ tag, 
	String^ value, 
	... array<Object^>^ attributeValuePairs
)

Parameters

tag
String
the XML element tag
value
String
the element value
attributeValuePairs
array<Object>[]()
an array of attribute value pairs

Return Value

an XML string resulting from the combined parameters

See Also