Retrieves the input stream from the request to read the graphml from. This implementation uses the form parameter that was specified in the constructor to retrieve the GraphML 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 GetGraphStream(
	HttpContext context
)
Visual Basic
Protected Overridable Function GetGraphStream ( _
	context As HttpContext _
) As Stream

Parameters

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

Return Value

A Stream view of the graph string.

Remarks

This implementation also uses the "graphEncoding" form parameter to decode the graph if necessary.

See Also