Class ScheduledDocument
Scheduled task and data alert document model.
Inheritance
Inherited Members
Namespace: Telerik.ReportServer.Services.Models
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class ScheduledDocument
Constructors
ScheduledDocument()
Declaration
public ScheduledDocument()
Properties
Data
Document binary data.
Declaration
public byte[] Data { get; set; }
Property Value
System.Byte[]
|
DateCreated
The DateTime created value in the server local timezone.
Declaration
[Obsolete("Use instead DateCreatedUtc, that accepts and returns DateTime in UTC.")]
public DateTime DateCreated { get; set; }
Property Value
System.DateTime
|
DateCreatedUtc
The DateTime created value in the UTC.
Declaration
public DateTime DateCreatedUtc { get; set; }
Property Value
System.DateTime
|
DocumentFormat
Document format.
Declaration
public string DocumentFormat { get; set; }
Property Value
System.String
|
DocumentName
Document name.
Declaration
public string DocumentName { get; set; }
Property Value
System.String
|
Error
Contains any errors which might occur during document creation.
Declaration
public string Error { get; set; }
Property Value
System.String
|
Id
Scheduled document ID.
Declaration
public string Id { get; set; }
Property Value
System.String
|
MimeType
File type.
Declaration
public string MimeType { get; set; }
Property Value
System.String
|
ReportId
Report ID.
Declaration
public string ReportId { get; set; }
Property Value
System.String
|
TaskId
Scheduled task or data alert ID.
Declaration
public string TaskId { get; set; }
Property Value
System.String
|