Response.DataXml Property
NOTE: This API is now obsolete.
Gets or sets the XML data of the response.
Namespace: Microsoft.SharePoint.Dsp
Assembly: Microsoft.SharePoint.Dsp (in Microsoft.SharePoint.Dsp.dll)
Syntax
'Declaration
<ObsoleteAttribute("Use the Lists web service instead.")> _
Public Property DataXml As String
Get
Set
'Usage
Dim instance As Response
Dim value As String
value = instance.DataXml
instance.DataXml = value
[ObsoleteAttribute("Use the Lists web service instead.")]
public string DataXml { get; set; }
Property Value
Type: System.String
A string that contains the XML data in the following form: If the schema was requested in the ResultContent property, the first top-level element is the XML schema (XSD), starting with the <schema> element.
If the data was requested in the ResultContent property, the next top-level element is the data.
The final top-level element is the pagingInfo element, which corresponds to the PagingInfo block. The XML string can then be set to the startPosition property to get the next page of data.