Retrieves the input stream from the request to read the export data from. This implementation uses the form parameter that was specified in the constructor to retrieve the export data string. If no parameter name has been specified the InputStream is returned.

Namespace: yWorks.yFiles.Graph.Web
Assembly: yFilesServer (in yFilesServer.dll) Version: 1.8.0.0 (1.8)

Syntax

C#
protected virtual Stream getExportDataStream(
	HttpContext context
)
Visual Basic
Protected Overridable Function getExportDataStream ( _
	context As HttpContext _
) As Stream

Parameters

context
Type: System.Web..::..HttpContext
The current context

Return Value

A Stream view of the export data.

Remarks

The export data string is converted from base64 first.

See Also