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

Builds an XML string with or without attributes and attribute values.

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

Syntax

C#
public static string Tag(
	string tag,
	string attribute,
	string attributeValue,
	string value
)
Visual Basic (Declaration)
Public Shared Function Tag ( _
	tag As String, _
	attribute As String, _
	attributeValue As String, _
	value As String _
) As String
Visual C++
public:
static String^ Tag (
	String^ tag, 
	String^ attribute, 
	String^ attributeValue, 
	String^ value
)

Parameters

tag
String
the XML element tag
attribute
String
the attribute name (can be null)
attributeValue
String
the attribute value (can be null)
value
String
the element value (can be null)

Return Value

an XML string resulting from the combined parameters

See Also

CAML Class
JohnHolliday.Caml.Net Namespace