Click or drag to resize

DocumentDownloadingEventArgsDownloadData Property

Gets or sets a value representing the file data sent to the client browser for download of this document.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public byte[] DownloadData { get; set; }

Property Value

Type: Byte
Exceptions
ExceptionCondition
ArgumentNullExceptionThe data to be downloaded can not be null.
ArgumentOutOfRangeExceptionThe data to be downloaded must be at least 1 byte.
Remarks
This property can be used to replace the data the user is about to download. For example, if the PDF should be altered or signed with a third-party tool before the user downloads the PDF, those changes can be made here.
See Also