PdfLiteStorageProviderGetDataStream Method |
Namespace:
RadPdf.Lite
Assembly:
RadPdf (in RadPdf.dll) Version: 3.48.0.0 (3.48.0.0)
Syntax public virtual Stream GetDataStream(
PdfLiteSession session,
int subtype
)
Public Overridable Function GetDataStream (
session As PdfLiteSession,
subtype As Integer
) As Stream
Parameters
- session
- Type: RadPdf.LitePdfLiteSession
PdfLiteSession associated with the data requested. - subtype
- Type: SystemInt32
The sub type of data requested. Implementations should allow any Int32 value and store data separately.
Return Value
Type:
Stream
The requested data stream if found in the storage provider; otherwise null.
When overriding this method, the returned Stream must be readable (CanRead is true) and seekable (CanSeek is true).
Remarks See Also