ActiveReports Developer 7
CreateSecondaryStream Method
See Also 
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.Rendering.IO Namespace > MemoryStreamProvider Class : CreateSecondaryStream Method

relativeName
A string value in the name for the secondary stream. The relative name is appended to the MemoryStreamProvider name prefix
mimeType
A string value indicating the mime type for the primary stream.
suggestedFileExtension
A string value indicating the file extension to use for the secondary stream.

Glossary Item Box

Creates a secondary stream in the stream provider.

Syntax

Visual Basic (Declaration) 
Public Overrides Function CreateSecondaryStream( _
   ByVal relativeName As System.String, _
   ByVal mimeType As System.String, _
   ByVal suggestedFileExtension As System.String _
) As StreamInfo
C# 
public override StreamInfo CreateSecondaryStream( 
   System.string relativeName,
   System.string mimeType,
   System.string suggestedFileExtension
)

Parameters

relativeName
A string value in the name for the secondary stream. The relative name is appended to the MemoryStreamProvider name prefix
mimeType
A string value indicating the mime type for the primary stream.
suggestedFileExtension
A string value indicating the file extension to use for the secondary stream.

Return Value

a GrapeCity.ActiveReports.Extensibility.Rendering.IO.StreamInfo for the secondary stream.

See Also