ActiveReports Developer 7
FileStreamProvider Constructor
See Also 
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.Rendering.IO Namespace > FileStreamProvider Class : FileStreamProvider Constructor

baseOutputDirectory
a System.IO.DirectoryInfo to save the file streams to.
outputFileNamePrefix
a string value indicating the name to place at the beginning of the files created.

Glossary Item Box

Initializes a new instance of the FileStreamProvider class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal baseOutputDirectory As System.IO.DirectoryInfo, _
   ByVal outputFileNamePrefix As System.String _
)
C# 
public FileStreamProvider( 
   System.IO.DirectoryInfo baseOutputDirectory,
   System.string outputFileNamePrefix
)

Parameters

baseOutputDirectory
a System.IO.DirectoryInfo to save the file streams to.
outputFileNamePrefix
a string value indicating the name to place at the beginning of the files created.

Exceptions

ExceptionDescription
System.ArgumentNullExceptionThrown if the base output directory argument is null.

See Also