GetDocumentEventArgs
Class
Provides data for the GetDocument API call modification.
Definition
Namespace:Telerik.Reporting.Services
Assembly:Telerik.Reporting.dll
Syntax:
C#
public sealed class GetDocumentEventArgs : EventArgs
Inheritance: objectEventArgsGetDocumentEventArgs
Constructors
Internal use only
C#
public GetDocumentEventArgs(byte[] bytes, string documentName, string extension, bool hasError, string errorMessage)
Properties
Bytes
byte[]
The document bytes
C#
public byte[] Bytes { get; set; }
DocumentName
string
The document name
C#
public string DocumentName { get; set; }
ErrorMessage
string
The error message if error occurred
C#
public string ErrorMessage { get; }
Extension
string
The document extension
C#
public string Extension { get; }
HasError
bool
If an error occurred while generating the document
C#
public bool HasError { get; }