FsrmReportManagerClass.EnumReportJobs Method (_FsrmEnumOptions)
Enumerates the report jobs.
Namespace: Microsoft.Storage
Assembly: srmlib (in srmlib.dll)
Syntax
public virtual IFsrmCollection EnumReportJobs(
_FsrmEnumOptions options = _FsrmEnumOptions.FsrmEnumOptions_None
)
public:
virtual IFsrmCollection^ EnumReportJobs(
_FsrmEnumOptions options = _FsrmEnumOptions::FsrmEnumOptions_None
)
abstract EnumReportJobs :
options:_FsrmEnumOptions = _FsrmEnumOptions.FsrmEnumOptions_None -> IFsrmCollection
override EnumReportJobs :
options:_FsrmEnumOptions = _FsrmEnumOptions.FsrmEnumOptions_None -> IFsrmCollection
Public Overridable Function EnumReportJobs (
options As _FsrmEnumOptions
) As IFsrmCollection
Parameters
options
Type: Microsoft.Storage._FsrmEnumOptionsThe options to use when enumerating the report jobs. For possible values, see the _FsrmEnumOptions enumeration. The FsrmEnumOptions_Asynchronous option is not supported for this method.
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..
Implements
IFsrmReportManager.EnumReportJobs(_FsrmEnumOptions)
See Also
FsrmReportManager
FsrmReportManagerClass Class
Microsoft.Storage Namespace
Return to top