adTempus API
ArcanaDevelopment.adTempus.Client Namespace / ImportExportFacility Class / ExportData Method
Options controlling the export behavior
Returns the export data, or a null reference (Nothing in Visual Basic) if an error occurs


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
    )
    public:
    bool ExportData( 
       ExportOptions^ options,
       [Out] String^ exportedData
    ) 

    Parameters

    options
    Options controlling the export behavior
    exportedData
    Returns the export data, or a null reference (Nothing in Visual Basic) if an error occurs
    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