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

Gets the xml string of a single row of data. This call is valid for all the service types of the GetDataSet call (see GetDataByKey(Int32, Int32, String). 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 GetXmlDataByKey(
	int serviceType,
	int serviceSubType,
	string sids
)
Visual Basic (Declaration)
Public Function GetXmlDataByKey ( _
	serviceType As Integer, _
	serviceSubType As Integer, _
	sids As String _
) As String
Visual C++
public:
String^ GetXmlDataByKey(
	int serviceType, 
	int serviceSubType, 
	String^ sids
)

Parameters

serviceType
Type: System..::.Int32
see GetDataByKey(Int32, Int32, String)
serviceSubType
Type: System..::.Int32
see GetDataByKey(Int32, Int32, String)
sids
Type: System..::.String
see GetDataByKey(Int32, Int32, String)

Return Value

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

See Also