ICreateStreamProvider.GetStream

GetStream(string, string)

Provides a stream for rendering.

public Stream GetStream(string name, string extension)
ParameterTypeDescription
nameStringThe name of the stream.
extensionStringThe file name extension to use if a file stream is being created.

Return Value

A Stream object that is used for writing data during the rendering operations.

See Also


GetStream(string, string, int)

Provides a stream for rendering.

public Stream GetStream(string name, string extension, int page)
ParameterTypeDescription
nameStringThe name of the stream.
extensionStringThe file name extension to use if a file stream is being created.
pageInt32The page number of the document.

Return Value

A Stream object that is used for writing data during the rendering operations.

See Also