Class ReportInfo
Provides information about a report.
Inheritance
Inherited Members
Namespace: Telerik.ReportServer.Services.Models
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class ReportInfo
Constructors
ReportInfo()
Declaration
public ReportInfo()
Properties
CanEdit
Determines whether the report can be edited by the logged user.
Declaration
public bool CanEdit { get; set; }
Property Value
System.Boolean
|
CanView
Determines whether the report can be viewed by the logged user.
Declaration
public bool CanView { get; set; }
Property Value
System.Boolean
|
CategoryId
Specifies the ID of the category which the report is assigned to.
Declaration
public string CategoryId { get; set; }
Property Value
System.String
|
CreatedBy
Specifies the ID of the user who has created the report.
Declaration
public string CreatedBy { get; set; }
Property Value
System.String
|
CreatedByName
Provides the full name of the user who has created the report.
Declaration
public string CreatedByName { get; set; }
Property Value
System.String
|
Description
Specifies the report description.
Declaration
public string Description { get; set; }
Property Value
System.String
|
Extension
Specifies the format of the report contents (.trdx or .trdp)
Declaration
public string Extension { get; set; }
Property Value
System.String
|
Id
Specifies the report identifier.
Declaration
public string Id { get; set; }
Property Value
System.String
|
IsDraft
Specifies whether the report is a draft.
Declaration
public bool IsDraft { get; set; }
Property Value
System.Boolean
|
IsFavorite
Specifies whether the report is favorite for the currently logged user.
Declaration
public bool IsFavorite { get; set; }
Property Value
System.Boolean
|
LastModifiedDate
Gets the DateTime string value in the local timezone on when the report was last modified.
Declaration
[Obsolete("Use instead LastModifiedDateUtc, that accepts and returns date value in UTC.")]
public string LastModifiedDate { get; }
Property Value
System.String
|
LastModifiedDateUtc
Gets or sets the DateTime in UTC on when the report was last modified.
Declaration
public DateTime LastModifiedDateUtc { get; set; }
Property Value
System.DateTime
|
LastRevisionId
Specifies the ID of the last report revision.
Declaration
public string LastRevisionId { get; set; }
Property Value
System.String
|
LockedBy
Specifies the ID of the user who has locked the report.
Declaration
public string LockedBy { get; set; }
Property Value
System.String
|
LockedByName
Provides the full name of the user who has locked the report.
Declaration
public string LockedByName { get; set; }
Property Value
System.String
|
Name
Specifies the report name.
Declaration
public string Name { get; set; }
Property Value
System.String
|
Methods
Equals(Object)
Compares the specified ReportInfo instance with the current instance.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The other ReportInfo instance |
Returns
System.Boolean
|
Overrides
GetHashCode()
Calculates the specific hash code for the instance.
Declaration
public override int GetHashCode()
Returns
System.Int32
|