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