IFsrmReportManager.EnumReportJobs Method (_FsrmEnumOptions)

 

Enumerates the report jobs.

Namespace:   Microsoft.Storage
Assembly:  srmlib (in srmlib.dll)

Syntax

IFsrmCollection EnumReportJobs(
    _FsrmEnumOptions options = _FsrmEnumOptions.FsrmEnumOptions_None
)
IFsrmCollection^ EnumReportJobs(
    _FsrmEnumOptions options = _FsrmEnumOptions::FsrmEnumOptions_None
)
abstract EnumReportJobs : 
        options:_FsrmEnumOptions = _FsrmEnumOptions.FsrmEnumOptions_None -> IFsrmCollection
Function EnumReportJobs (
    options As _FsrmEnumOptions
) As IFsrmCollection

Parameters

Return Value

Type: Microsoft.Storage.IFsrmCollection

Returns a IFsrmCollection interface that contains a collection of the report jobs. The collection is empty if no report jobs.Each item of the collection is a VARIANT of type VT_DISPATCH. Query the pdispVal member to get the IFsrmReportJob interface.

The collection can contain committed and uncommitted report jobs. For an uncommitted report job to be included in the collection, the running status of the job must be FsrmReportRunningStatus_Queued or FsrmReportRunningStatus_Running.

See Also

FsrmReportManager
IFsrmReportManager Interface
Microsoft.Storage Namespace

Return to top