Class AllJobsResult
A paged collection of JobItem instances.
Inheritance
System.Object
AllJobsResult
Namespace: Dnn.ExportImport.Components.Dto.Jobs
Assembly: DotNetNuke.SiteExportImport.dll
Syntax
public class AllJobsResult : object
Properties
| Improve this Doc View SourceJobs
Gets or sets the jobs (or null
if there are no jobs).
Declaration
public IEnumerable<JobItem> Jobs { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<JobItem> |
LastExportTime
Gets or sets the last export time.
Declaration
public DateTime? LastExportTime { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<DateTime> |
LastExportTimeString
Gets the last export time as a string.
Declaration
public string LastExportTimeString { get; }
Property Value
Type | Description |
---|---|
System.String |
LastImportTime
Gets or sets the last import time.
Declaration
public DateTime? LastImportTime { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<DateTime> |
LastImportTimeString
Gets the last import time as a string.
Declaration
public string LastImportTimeString { get; }
Property Value
Type | Description |
---|---|
System.String |
PortalId
Gets or sets the portal ID.
Declaration
public int PortalId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PortalName
Gets or sets the portal name.
Declaration
public string PortalName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TotalJobs
Gets or sets the total number of jobs.
Declaration
public int TotalJobs { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
TotalJobsString
Gets the total job count as a string.
Declaration
public string TotalJobsString { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceConvertToLocal(UserInfo)
A paged collection of JobItem instances.
Declaration
public void ConvertToLocal(UserInfo userInfo)
Parameters
Type | Name | Description |
---|---|---|
UserInfo | userInfo |