[This is preliminary documentation and is subject to change.]

Returns the Xml for the requested service type. This call is valid for all the service types of the GetDataSet call (see GetDataSet(Int32, Int32, String, String, String, Int32). The output is just an xml string instead of the dataset.

Namespace:OfficeClip.Service.Web
Assembly: �OfficeClip.Service (in OfficeClip.Service)
Version: 8.1.1.0

Syntax

C#
public string GetXmlData(
	int serviceType,
	int serviceSubType,
	string columnNumbers,
	string filterName,
	string sortClause,
	int option
)
Visual Basic (Declaration)
Public Function GetXmlData ( _
	serviceType As Integer, _
	serviceSubType As Integer, _
	columnNumbers As String, _
	filterName As String, _
	sortClause As String, _
	option As Integer _
) As String
Visual C++
public:
String^ GetXmlData(
	int serviceType, 
	int serviceSubType, 
	String^ columnNumbers, 
	String^ filterName, 
	String^ sortClause, 
	int option
)

Parameters

serviceType
Type: System..::.Int32
see GetDataSet(Int32, Int32, String, String, String, Int32)
serviceSubType
Type: System..::.Int32
see GetDataSet(Int32, Int32, String, String, String, Int32)
columnNumbers
Type: System..::.String
see GetDataSet(Int32, Int32, String, String, String, Int32)
filterName
Type: System..::.String
see GetDataSet(Int32, Int32, String, String, String, Int32)
sortClause
Type: System..::.String
see GetDataSet(Int32, Int32, String, String, String, Int32)
option
Type: System..::.Int32
see GetDataSet(Int32, Int32, String, String, String, Int32)

Return Value

The Xml for the data requested. This is the serialized string for the first table of the dataset containing the requested data.

See Also