adTempus API
ArcanaDevelopment.adTempus.Client Namespace / ImportExportFacility Class / ExportData Method

In This Topic
    ExportData Method
    In This Topic
    Exports data to an XML document and returns the document.
    Syntax
    'Declaration
     
    
    Public Function ExportData( _
       ByVal options As ExportOptions, _
       ByRef exportedData As String _
    ) As Boolean
    public bool ExportData( 
       ExportOptions options,
       out string exportedData
    )

    Parameters

    options
    exportedData
    Remarks
    This method returns the entire export document in memory. For large amounts of data, use ExportDataToFile or ExportDataToStream instead. This method cannot be used if ExportOptions.CompressExport is true. Use ExportDataToFile or ExportDataToStream instead.
    See Also